Bump to v1.1.3.

assets/shell/bump-version.sh: updated.
This commit is contained in:
Lucio Andrés Illanes Albornoz 2019-08-28 10:31:44 +02:00
parent c15a5b7a21
commit 80df97f972
5 changed files with 8 additions and 8 deletions

2
MiRCART-nw/package-lock.json generated vendored
View File

@ -1,5 +1,5 @@
{ {
"name": "MiRCART", "name": "MiRCART",
"version": "1.1.2", "version": "1.1.3",
"lockfileVersion": 1 "lockfileVersion": 1
} }

View File

@ -18,7 +18,7 @@
"scripts": { "scripts": {
"test": "echo \"Error: no test specified\" && exit 1" "test": "echo \"Error: no test specified\" && exit 1"
}, },
"version": "1.1.2", "version": "1.1.3",
"window": { "window": {
"title": "MiRCART (standalone NW app)", "title": "MiRCART (standalone NW app)",
"toolbar": true, "toolbar": true,

View File

@ -7,7 +7,7 @@
<link charset="utf-8" href="../css/fonts.css" rel="stylesheet" type="text/css" /> <link charset="utf-8" href="../css/fonts.css" rel="stylesheet" type="text/css" />
<link charset="utf-8" href="../css/help.css" rel="stylesheet" type="text/css" /> <link charset="utf-8" href="../css/help.css" rel="stylesheet" type="text/css" />
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<title>MiRCART v1.1.2 documentation</title> <title>MiRCART v1.1.3 documentation</title>
</head> </head>
<!-- }}} --> <!-- }}} -->
<!-- {{{ BODY --> <!-- {{{ BODY -->

View File

@ -9,7 +9,7 @@
<link charset="utf-8" href="assets/css/sally.css" rel="stylesheet" type="text/css" /> <link charset="utf-8" href="assets/css/sally.css" rel="stylesheet" type="text/css" />
<meta content="text/html; charset=UTF-8" http-equiv="Content-Type" /> <meta content="text/html; charset=UTF-8" http-equiv="Content-Type" />
<meta content="width=device-width, maximum-scale=1.0, user-scalable=yes" name="viewport" /> <meta content="width=device-width, maximum-scale=1.0, user-scalable=yes" name="viewport" />
<title>MiRCART v1.1.2</title> <title>MiRCART v1.1.3</title>
</head> </head>
<!-- }}} --> <!-- }}} -->
<!-- {{{ BODY --> <!-- {{{ BODY -->

View File

@ -36,11 +36,11 @@ main() {
exit 1; exit 1;
fi; fi;
done; done;
rc sed -i"" '/"version":/s/\("version":\s*\)"'"${_version_old}"'"/\1"'"${_version_new}"'"/' \ rc sed -i"" '/"version":/s/\("version":\s*\)"'"${_version_old}"'"/\1"'"${_version_new}"'"/' \
MiRCART-nw/package.json \ MiRCART-nw/package.json \
MiRCART-nw/package-lock.json; MiRCART-nw/package-lock.json;
rc sed -i"" '/<title>[^<]\+ v/s/\(<title>[^<]\+ v\)'"${_version_old}"'\(.*<\)/\1'"${_version_new}"'\2/' \ rc sed -i"" '/<title>[^<]\+ v/s/\(<title>[^<]\+ v\)'"${_version_old}"'\(.*<\)/\1'"${_version_new}"'\2/' \
index.html assets/html/help.html; assets/html/help.html assets/html/index.html;
rc git commit -avm "Bump to v${_version_new}."; rc git commit -avm "Bump to v${_version_new}.";
}; };