Increment version to beta

This commit is contained in:
Rico Tiongson 2019-03-02 19:10:09 +08:00
parent 88ee00f0ee
commit 17458661d5
2 changed files with 4 additions and 8 deletions

View File

@ -15,7 +15,7 @@ __URL__ = 'https://github.com/Hikari9/comfortable-swipe-ubuntu'
NAME = 'comfortable-swipe'
PYTHON_NAME = NAME.replace('-', '_')
VERSION = '1.1.0'
VERSION = '1.1.0-beta'
PROGRAM = os.path.join(__BIN__, NAME)
CONFIG = os.path.join(
_SHARE_
@ -109,6 +109,9 @@ try:
# toggle autostart
os.chdir(os.getenv('HOME'))
from comfortable_swipe import service
service.autostart()
service.autostart()
finally:
# move working directory back to where it was before

View File

@ -1,7 +0,0 @@
#!/bin/bash
echo "Uninstalling..."
rm ${XDG_CONFIG_HOME:-$HOME/.config}/autostart/comfortable-swipe.desktop 2> /dev/null
comfortable-swipe stop 2> /dev/null
rm $HOME/.local/bin/comfortable-swipe 2> /dev/null # compat
sudo rm /usr/local/bin/comfortable-swipe 2> /dev/null
echo "Successfully uninstalled comfortable-swipe"