update to latest version
This commit is contained in:
parent
f12471a144
commit
ab243a1946
5 changed files with 10 additions and 6 deletions
|
|
@ -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 = {
|
||||
|
|
|
|||
|
|
@ -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);
|
||||
|
|
|
|||
|
|
@ -1,3 +1,6 @@
|
|||
-0.6.0
|
||||
Initial pre-release of the simplified webide
|
||||
|
||||
-0.3.12
|
||||
Add missing cookie package
|
||||
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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) ****"
|
||||
|
|
|
|||
Loading…
Reference in a new issue