diff options
author | Rael <rael.gc@gmail.com> | 2015-09-30 13:13:06 -0300 |
---|---|---|
committer | Rael <rael.gc@gmail.com> | 2015-09-30 13:13:06 -0300 |
commit | 773942430fa8fd342d8aa6eb27d5a1b76e27b9f2 (patch) | |
tree | 77b9f73b3e03b400869651172745752e8a50ff76 | |
parent | 1fad8ec704426fd8f287fd8249c0f7b1d78cb720 (diff) | |
download | scudcloud-773942430fa8fd342d8aa6eb27d5a1b76e27b9f2.zip scudcloud-773942430fa8fd342d8aa6eb27d5a1b76e27b9f2.tar.gz scudcloud-773942430fa8fd342d8aa6eb27d5a1b76e27b9f2.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.72.tar.gz -tar -xvf v1.0.72.tar.gz -cd scudcloud-1.0.72 +wget https://github.com/raelgc/scudcloud/archive/v1.0.73.tar.gz +tar -xvf v1.0.73.tar.gz +cd scudcloud-1.0.73 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 5ac5bec..77a6d11 100644 --- a/scudcloud-1.0/debian/changelog +++ b/scudcloud-1.0/debian/changelog @@ -1,3 +1,9 @@ +scudcloud (1.0-73) trusty; urgency=medium + + * Make sure value returned by Speller.suggest is str (#244) + + -- Rael Gugelmin Cunha <rael.gc@gmail.com> Wed, 30 Sep 2015 13:10:35 -0300 + scudcloud (1.0-72) trusty; urgency=medium * Listening for resume event diff --git a/scudcloud-1.0/scudcloud b/scudcloud-1.0/scudcloud index 7fe14b7..c696339 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.72' +VERSION = '1.0.73' def main(): global win; |