diff options
author | Rael <rael.gc@gmail.com> | 2015-09-29 06:29:35 -0300 |
---|---|---|
committer | Rael <rael.gc@gmail.com> | 2015-09-29 06:29:35 -0300 |
commit | c4ce0374efe4ea4b311289116a68ea8d0e1c4195 (patch) | |
tree | fe2bfbd260d91359b437615eeff665f45ada2d7a | |
parent | 467f1ee9bf3ec2df34feba51c350cc21cbe54873 (diff) | |
download | scudcloud-c4ce0374efe4ea4b311289116a68ea8d0e1c4195.zip scudcloud-c4ce0374efe4ea4b311289116a68ea8d0e1c4195.tar.gz scudcloud-c4ce0374efe4ea4b311289116a68ea8d0e1c4195.tar.bz2 |
New package release
-rw-r--r-- | README.md | 6 | ||||
-rw-r--r-- | scudcloud-1.0/debian/changelog | 6 | ||||
-rwxr-xr-x | scudcloud-1.0/scudcloud | 2 |
3 files changed, 10 insertions, 4 deletions
@@ -76,9 +76,9 @@ First, you'll need to install at least packages for `python3`, `python-qt4` (`qt Then run the below script: it'll download the code and install it: ```bash -wget https://github.com/raelgc/scudcloud/archive/v1.0.70.tar.gz -tar -xvf v1.0.70.tar.gz -cd scudcloud-1.0.70 +wget https://github.com/raelgc/scudcloud/archive/v1.0.71.tar.gz +tar -xvf v1.0.71.tar.gz +cd scudcloud-1.0.71 SOURCE="scudcloud-1.0" INSTALL="/opt/scudcloud" sudo mkdir -p $INSTALL/lib diff --git a/scudcloud-1.0/debian/changelog b/scudcloud-1.0/debian/changelog index 92987dd..11b12d4 100644 --- a/scudcloud-1.0/debian/changelog +++ b/scudcloud-1.0/debian/changelog @@ -1,3 +1,9 @@ +scudcloud (1.0-71) trusty; urgency=medium + + * Fixing dictionary path checking (#241) + + -- Rael Gugelmin Cunha <rael.gc@gmail.com> Tue, 29 Sep 2015 06:27:04 -0300 + scudcloud (1.0-70) trusty; urgency=medium * Adding a timer to check server side reloads diff --git a/scudcloud-1.0/scudcloud b/scudcloud-1.0/scudcloud index b663203..15bf087 100755 --- a/scudcloud-1.0/scudcloud +++ b/scudcloud-1.0/scudcloud @@ -14,7 +14,7 @@ from qsingleapplication import QSingleApplication # The ScudCloud QMainWindow win = None -VERSION = '1.0.70' +VERSION = '1.0.71' def main(): global win; |