Skip to content

Commit 9929838

Browse files
committed
bump version to 0.3.11
1 parent 4d61650 commit 9929838

File tree

6 files changed

+18
-14
lines changed

6 files changed

+18
-14
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,11 @@ On the Raspberry PI or BeagleBone Black (after expanding the file system):
1111

1212
Alternatively, you can install using the .deb file:
1313

14-
curl -O http://adafruit-download.s3.amazonaws.com/adafruitwebide-0.3.8-Linux.deb
15-
sudo dpkg -i adafruitwebide-0.3.8-Linux.deb
14+
curl -O http://adafruit-download.s3.amazonaws.com/adafruitwebide-0.3.11-Linux.deb
15+
sudo dpkg -i adafruitwebide-0.3.11-Linux.deb
1616
sudo apt-get -f install
1717

18-
Note: As part of the installation process, the 'webide' user is given access to sudo and sudoers,
18+
Note: As part of the installation process, the 'webide' user is given access to sudo and sudoers,
1919
similar to the 'pi' user. This is needed in order to easily access GPIO pins from the Editor.
2020
If you don't need these features, feel free to manually install the editor below.
2121

@@ -90,7 +90,7 @@ Restart the Editor
9090
============
9191

9292
If for any reason you need to restart the editor, you can execute the following commands in order
93-
93+
9494
sudo service adafruit-webide.sh stop
9595
sudo service adafruit-webide.sh start
9696

config/config.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
//Change github in /config.
55
exports.editor = {
66
"port": 80,
7-
"version": "0.3.8",
7+
"version": "0.3.11",
88
"version_url": "https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/version.txt",
99
"offline": false,
1010
"github": false
@@ -53,4 +53,4 @@ exports.term = {
5353
"#eeeeec"
5454
]
5555
}
56-
};
56+
};

release/changelog.txt

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
-0.3.11
2+
Fixes for installation errors
3+
Fix some deprecated messages
4+
15
-0.3.10
26
Fix for settings being undefined in offline mode
37

@@ -15,7 +19,7 @@ Handle file rename errors, including detecting renames with same name.
1519
-0.3.7
1620
Github support.
1721
- Ability to enable with --github as the default
18-
- Advanced setting.
22+
- Advanced setting.
1923
- Requires manual ssh key setup as of yet.
2024
- Most commands are treated as manual mode for now (manual commits, etc).
2125
New Offline mode
@@ -220,4 +224,4 @@ Show update notes in editor while updating
220224
Fix for path issues with new editor file structure.
221225

222226
-0.0.5
223-
Add login page styling
227+
Add login page styling

release/version.txt

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
0.3.8
2-
http://adafruit-download.s3.amazonaws.com/webide-0.3.8-update.tar.gz
3-
https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/changelog.txt
1+
0.3.11
2+
http://adafruit-download.s3.amazonaws.com/webide-0.3.11-update.tar.gz
3+
https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/release/changelog.txt

scripts/install-angstrom.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ echo "Attempting to force reload date and time from ntp server"
6868
/usr/bin/ntpdate -b -s -u pool.ntp.org
6969

7070
echo "**** Downloading the latest version of the WebIDE ****"
71-
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.8.tar.gz | tar xzf -
71+
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.11.tar.gz | tar xzf -
7272

7373
echo "**** Installing required libraries ****"
7474
echo "**** (redis-server git avahi-daemon i2c-tools python-smbus openssh-keygen) ****"
@@ -87,7 +87,7 @@ then
8787
curl -k https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/scripts/redis/redis_6379 > /etc/init.d/redis_6379
8888
curl -k https://raw.githubusercontent.com/adafruit/Adafruit-WebIDE/alpha/scripts/redis/redis.conf > /etc/redis/6379.conf
8989
mkdir -p /var/redis/6379
90-
chmod +x /etc/init.d/redis_6379
90+
chmod +x /etc/init.d/redis_6379
9191
update-rc.d redis_6379 defaults
9292
/etc/init.d/redis_6379 start
9393
cd "$WEBIDE_ROOT"

scripts/install.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ mkdir -p "$WEBIDE_HOME"
6565
cd "$WEBIDE_ROOT"
6666

6767
echo "**** Downloading the latest version of the WebIDE ****"
68-
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.8.tar.gz | tar xzf -
68+
curl -L http://adafruit-download.s3.amazonaws.com/webide-0.3.11.tar.gz | tar xzf -
6969

7070
echo "**** Installing required libraries ****"
7171
echo "**** (redis-server git restartd libcap2-bin avahi-daemon i2c-tools python-smbus) ****"

0 commit comments

Comments
 (0)