Skip to content

Commit

Permalink
[GULP] Bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
Unsongheroes committed Feb 19, 2021
1 parent 7b3eb5d commit 666a4db
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion bower.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "into-cps-app",
"productName": "INTO-CPS APP",
"version": "4.0.2-rc",
"version": "4.0.2",
"description": "User interface for the INTO-CPS Toolchain",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "into-cps-app",
"productName": "INTO-CPS APP",
"version": "4.0.2-rc",
"version": "4.0.2",
"description": "User interface for the INTO-CPS Toolchain",
"license": "MIT",
"repository": {
Expand Down
4 changes: 3 additions & 1 deletion src/downloadManager/DownloadManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,6 @@ function fetchList() {
let settings = IntoCpsApp.getInstance().getSettings();
console.log(settings);
var url = settings.getValue(SettingKeys.UPDATE_SITE);

if (url == null || url == undefined) {
url = "https://raw.githubusercontent.com/into-cps/release-site/master/download/";
settings.setValue(SettingKeys.UPDATE_SITE, url);
Expand Down Expand Up @@ -158,8 +157,11 @@ function fetchList() {
divStatus.className = "alert alert-info";

divStatus.innerHTML = version;/// +" - "data[version];
console.log('here: ');
console.log(data[version]);
divStatus.onclick = function (e) {
downloader.fetchVersion(url + data[version]).then(dataVersion => {

showVersion(version, dataVersion);
});
};
Expand Down

0 comments on commit 666a4db

Please sign in to comment.