Skip to content

Commit

Permalink
update to latest version
Browse files Browse the repository at this point in the history
  • Loading branch information
jwcooper committed Mar 6, 2018
1 parent f12471a commit ab243a1
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 6 deletions.
4 changes: 2 additions & 2 deletions config/config.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
//Change github in /config.
exports.editor = {
"port": 3000,
"version": "0.5.0",
"version_url": "https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/beta/release/version.txt"
"version": "0.6.0",
"version_url": "https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/rework/release/version.txt"
};

exports.adafruit = {
Expand Down
3 changes: 2 additions & 1 deletion controllers/editor.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ exports.editor = function(ws, req) {
});
break;
case 'editor-check-updates':
updater.check_for_updates(ws);
// TODO: Explore adding auto-updater again
// updater.check_for_updates(ws);
break;
case 'editor-update':
updater.update(ws);
Expand Down
3 changes: 3 additions & 0 deletions release/changelog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
-0.6.0
Initial pre-release of the simplified webide

-0.3.12
Add missing cookie package

Expand Down
4 changes: 2 additions & 2 deletions release/version.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
0.3.12
https://adafruit-download.s3.amazonaws.com/webide-0.3.12-update.tar.gz
0.6.0
https://github.com/adafruit/Adafruit-WebIDE/archive/0.6.tar.gz
https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/changelog.txt
2 changes: 1 addition & 1 deletion scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ mkdir -p "$WEBIDE_HOME/tmp"
cd "$WEBIDE_ROOT"

echo "**** Downloading the latest version of the WebIDE ****"
curl -L https://github.com/adafruit/Adafruit-WebIDE/archive/0.5.tar.gz | tar xzf - --strip-components=1
curl -L https://github.com/adafruit/Adafruit-WebIDE/archive/0.6.tar.gz | tar xzf - --strip-components=1

echo "**** Installing required libraries ****"
echo "**** (nodejs-legacy npm git libcap2-bin i2c-tools python-smbus ntp libkrb5-dev) ****"
Expand Down

0 comments on commit ab243a1

Please sign in to comment.