Skip to content
This repository has been archived by the owner on Apr 23, 2021. It is now read-only.

Commit

Permalink
Propose Version 0.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bajoja committed May 15, 2017
1 parent 57625ec commit 0ce08e9
Show file tree
Hide file tree
Showing 9 changed files with 48 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
2 changes: 2 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
12 changes: 12 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> 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
Expand Down
5 changes: 0 additions & 5 deletions rpm/_aggregate

This file was deleted.

8 changes: 5 additions & 3 deletions rpm/_servicedata
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
<servicedata>
<service name="tar_scm">
<param name="url">https://github.com/Bajoja/indicator-kdeconnect.git</param>
<param name="changesrevision">c694300619d2346d3c0950c966ddba4f7fe3562d</param></service></servicedata>
<service name="tar_scm">
<param name="url">https://github.com/Bajoja/indicator-kdeconnect.git</param>
<param name="changesrevision">c694300619d2346d3c0950c966ddba4f7fe3562d</param>
</service>
</servicedata>
12 changes: 12 additions & 0 deletions rpm/indicator-kdeconnect.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
-------------------------------------------------------------------
Mon May 16 00:00:00 UTC 2017 - <[email protected]>
- 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 - <[email protected]>
- Update to version 0.8.2:
Expand Down
15 changes: 12 additions & 3 deletions rpm/indicator-kdeconnect.spec
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
# along with this program. If not, see <http://www.gnu.org/licenses/>.

Name: indicator-kdeconnect
Version: 0.8.2
Version: 0.9.0
Release: 0%{?dist}
Summary: App Indicator for KDE Connect
Group: Applications/System
Expand All @@ -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
Expand Down Expand Up @@ -122,6 +121,16 @@ cd build


%changelog
* Mon May 16 2017 00:00 Bajoja <[email protected]> 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 <[email protected]> 0.8.2
- Fix bug #64 - SMS only getting 100 contacts
- Added support for sending same SMS to multiple numbers
Expand Down
5 changes: 3 additions & 2 deletions src/DeviceIndicator.vala
Original file line number Diff line number Diff line change
Expand Up @@ -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);
}
Expand Down

0 comments on commit 0ce08e9

Please sign in to comment.