Skip to content
This repository was archived by the owner on Dec 31, 2019. It is now read-only.

Commit f98aa5a

Browse files
committed
0.17.1
1 parent 5a8f974 commit f98aa5a

File tree

5 files changed

+19
-10
lines changed

5 files changed

+19
-10
lines changed

CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
v0.17.1
2+
* Marking as stable
3+
* Ready for new upgrade v1.x.x
4+
15
v0.17.0
26
* Fix calculate issues
37
* Add suport for latest signal k versions

openplotter.conf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[GENERAL]
2-
version = 0.17.0
3-
state = beta
2+
version = 0.17.1
3+
state = stable
44
repository = openplotter
55
lang = en
66
# openplotter installation path relative to home

update/default_openplotter_desk.sh

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,5 @@ echo
2929
echo "DISABLING SCREENSAVER..."
3030
echo
3131
sudo bash -c 'echo -e "\n@xset s 0 0\n@xset s noblank\n@xset s noexpose\n@xset dpms 0 0 0\n" >> /home/pi/.config/lxsession/LXDE-pi/autostart'
32-
shutdown -r +1
33-
echo
34-
read -p "FINISHED, SYSTEM WILL REBOOT IN 1 MIN, PRESS ENTER TO REBOOT NOW."
32+
read -p "FINISHED, PRESS ENTER TO REBOOT SYSTEM."
3533
shutdown -r now

update/update_OpenPlotter.sh

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,7 @@ echo
5757
rm -rf openplotter
5858
rm -rf $DIRDATE
5959
mv openplotter_tmp openplotter
60-
shutdown -r +1
6160
echo
62-
read -p "FINISHED, SYSTEM WILL REBOOT IN 1 MIN, PRESS ENTER TO REBOOT NOW."
61+
read -p "FINISHED, PRESS ENTER TO REBOOT SYSTEM."
6362
shutdown -r now
6463

update/update_dependencies.sh

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,21 @@
11
#!/bin/bash
2-
repository=$4
2+
status=$3
33
op_folder=$(crudini --get ~/.openplotter/openplotter.conf GENERAL op_folder)
4-
if [ -z $repository ]; then
5-
repository="openplotter"
4+
5+
if [ -z $status ]; then
6+
status="stable"
67
fi
8+
79
if [ -z $op_folder ]; then
810
op_folder="/.config"
911
fi
1012

13+
if [ $status = "stable" ]; then
14+
repository="openplotter"
15+
else
16+
repository="sailoog"
17+
fi
18+
1119
cd $HOME$op_folder
1220

1321
echo

0 commit comments

Comments
 (0)