Skip to content

Commit ab243a1

Browse files
committed
update to latest version
1 parent f12471a commit ab243a1

File tree

5 files changed

+10
-6
lines changed

5 files changed

+10
-6
lines changed

Diff for: config/config.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
//Change github in /config.
55
exports.editor = {
66
"port": 3000,
7-
"version": "0.5.0",
8-
"version_url": "https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/beta/release/version.txt"
7+
"version": "0.6.0",
8+
"version_url": "https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/rework/release/version.txt"
99
};
1010

1111
exports.adafruit = {

Diff for: controllers/editor.js

+2-1
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,8 @@ exports.editor = function(ws, req) {
8787
});
8888
break;
8989
case 'editor-check-updates':
90-
updater.check_for_updates(ws);
90+
// TODO: Explore adding auto-updater again
91+
// updater.check_for_updates(ws);
9192
break;
9293
case 'editor-update':
9394
updater.update(ws);

Diff for: release/changelog.txt

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
-0.6.0
2+
Initial pre-release of the simplified webide
3+
14
-0.3.12
25
Add missing cookie package
36

Diff for: release/version.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
0.3.12
2-
https://adafruit-download.s3.amazonaws.com/webide-0.3.12-update.tar.gz
1+
0.6.0
2+
https://github.com/adafruit/Adafruit-WebIDE/archive/0.6.tar.gz
33
https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/changelog.txt

Diff for: scripts/install.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ mkdir -p "$WEBIDE_HOME/tmp"
5858
cd "$WEBIDE_ROOT"
5959

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

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

0 commit comments

Comments
 (0)