diff --git a/.travis.yml b/.travis.yml index 6d406c5..c79d299 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,7 +7,7 @@ cache: before_install: - sudo add-apt-repository ppa:vala-team -y - sudo apt -qq update - - sudo apt install -y cmake valac libgtk-3-dev libappindicator3-dev gettext python3-requests-oauthlib + - sudo apt install -y cmake valac libgtk-3-dev libappindicator3-dev gettext before_script: - sleep 3 script: diff --git a/CHANGES.md b/CHANGES.md index d92a334..b1c3987 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -1,7 +1,9 @@ # Version 0.9.0 * Add support to send files to multiple devices * Add settings panel + * Users can open settings panel from battery menu item * Now users can hidde untrusted devices to save space on menu bar + * Users can delete Google Contacts from settings panel * Fix Elementary OS not show monochrome icons * Fix bugs on SMS contacts sync * Add Language: Serbian diff --git a/CMakeLists.txt b/CMakeLists.txt index 91c5b1c..3d88c4a 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -11,7 +11,7 @@ set (LOCALEDIR ${CMAKE_INSTALL_PREFIX}/share/locale) set (PKGDATADIR "${DATADIR}/indicator-kdeconnect") set (RELEASE_NAME "beta") set (VERSION_INFO "Indicator for KDE Connect daemon") -set (VERSION "0.8.2") +set (VERSION "0.9.0") # set gettexttranslate set (GettextTranslate_GMO_BINARY TRUE) diff --git a/debian/changelog b/debian/changelog index cd49268..e81f9d2 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,15 @@ +indicator-kdeconnect (0.9.0) precise; urgency=low + * Add support to send files to multiple devices + * Add settings panel + * Users can open settings panel from battery menu item + * Now users can hidde untrusted devices to save space on menu bar + * Users can delete Google Contacts from settings panel + * Fix Elementary OS not show monochrome icons + * Fix bugs on SMS contacts sync + * Add Language: Serbian + + -- Bajoja Mon, 16 May 2017 00:00 -0000 + indicator-kdeconnect (0.8.2) precise; urgency=low * Fix bug #64 - SMS only getting 100 contacts * Added support for sending same SMS to multiple numbers diff --git a/rpm/_aggregate b/rpm/_aggregate deleted file mode 100644 index 5f4c805..0000000 --- a/rpm/_aggregate +++ /dev/null @@ -1,5 +0,0 @@ - - - python3-requests-oauthlib - - diff --git a/rpm/_servicedata b/rpm/_servicedata index 79246bf..7a46e9f 100644 --- a/rpm/_servicedata +++ b/rpm/_servicedata @@ -1,4 +1,6 @@ - - https://github.com/Bajoja/indicator-kdeconnect.git - c694300619d2346d3c0950c966ddba4f7fe3562d + + https://github.com/Bajoja/indicator-kdeconnect.git + c694300619d2346d3c0950c966ddba4f7fe3562d + + diff --git a/rpm/indicator-kdeconnect.changes b/rpm/indicator-kdeconnect.changes index 052ee4b..7cfad04 100644 --- a/rpm/indicator-kdeconnect.changes +++ b/rpm/indicator-kdeconnect.changes @@ -1,3 +1,15 @@ +------------------------------------------------------------------- +Mon May 16 00:00:00 UTC 2017 - +- Update to version 0.9.0: + * Add support to send files to multiple devices + * Add settings panel + * Users can open settings panel from battery menu item + * Now users can hidde untrusted devices to save space on menu bar + * Users can delete Google Contacts from settings panel + * Fix Elementary OS not show monochrome icons + * Fix bugs on SMS contacts sync + * Add Language: Serbian + ------------------------------------------------------------------- Thu May 04 00:00:00 UTC 2017 - - Update to version 0.8.2: diff --git a/rpm/indicator-kdeconnect.spec b/rpm/indicator-kdeconnect.spec index 9740962..a3007f4 100644 --- a/rpm/indicator-kdeconnect.spec +++ b/rpm/indicator-kdeconnect.spec @@ -20,7 +20,7 @@ # along with this program. If not, see . Name: indicator-kdeconnect -Version: 0.8.2 +Version: 0.9.0 Release: 0%{?dist} Summary: App Indicator for KDE Connect Group: Applications/System @@ -46,18 +46,17 @@ BuildRequires: gtk3-devel BuildRequires: vala BuildRequires: vala-devel BuildRequires: pkgconfig(gtk+-3.0) +Requires: python3-requests-oauthlib %if 0%{?fedora} || 0%{?rhel_version} || 0%{?centos_version} BuildRequires: libappindicator-gtk3-devel Requires: kde-connect-libs -Requires: python3-requests-oauthlib %endif %if 0%{?suse_version} BuildRequires: update-desktop-files BuildRequires: libappindicator3-devel Requires: kdeconnect-kde -Requires: python3-requests-oauthlib %endif %description @@ -122,6 +121,16 @@ cd build %changelog +* Mon May 16 2017 00:00 Bajoja 0.9.0 + - Add support to send files to multiple devices + - Add settings panel + - Users can open settings panel from battery menu item + - Now users can hidde untrusted devices to save space on menu bar + - Users can delete Google Contacts from settings panel + - Fix Elementary OS not show monochrome icons + - Fix bugs on SMS contacts sync + - Add Language: Serbian + * Thu May 04 2017 00:00 Bajoja 0.8.2 - Fix bug #64 - SMS only getting 100 contacts - Added support for sending same SMS to multiple numbers diff --git a/src/DeviceIndicator.vala b/src/DeviceIndicator.vala index 5cd97fb..17f2698 100644 --- a/src/DeviceIndicator.vala +++ b/src/DeviceIndicator.vala @@ -132,14 +132,15 @@ namespace KDEConnectIndicator { sms_item.activate.connect (() => { try{ - Process.spawn_sync (null, + Process.spawn_async (null, new string[]{ "/usr/share/indicator-kdeconnect/Sms.py", "-d", device.id}, null, SpawnFlags.SEARCH_PATH, - null, null, null, null); + null, + null); } catch (Error e) { message (e.message); }