Skip to content

Commit

Permalink
Propose version 0.8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Bajoja committed Apr 22, 2017
1 parent 870ea45 commit 08087ab
Show file tree
Hide file tree
Showing 7 changed files with 30 additions and 9 deletions.
4 changes: 4 additions & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# Version 0.8.0
* Fix bug #51 - Nemo and Caja only show the first device
* Send SMS is now stable and support autocomplete from Google Contacts

# Version 0.7.1
* Fix bug #51 - Nemo and Caja extensions not working
* Add Language: Lithuanian Language
Expand Down
8 changes: 4 additions & 4 deletions 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.7.1")
set (VERSION "0.8.0")

# set gettexttranslate
set (GettextTranslate_GMO_BINARY TRUE)
Expand All @@ -36,9 +36,9 @@ ensure_vala_version("0.20" MINIMUM)
include(ValaPrecompile)
# make sure we use GettextTranslate
include(GettextTranslate)
#
include(FindPythonModule)
find_python_module(requests_oauthlib)
# ensure python dependencies are satisfied
#include(FindPythonModule)
#find_python_module(requests_oauthlib)


#indicator
Expand Down
2 changes: 1 addition & 1 deletion data/extensions/kdeconnect-send-caja.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def get_file_items(self, window, files):
menu.set_submenu(sub_menu)

for device in devices:
item = Caja.MenuItem(name='KDEConnectSendExtension::SendFileTo'+device["id"]
item = Caja.MenuItem(name='KDEConnectSendExtension::SendFileTo'+device["id"],
label=device["name"])
item.connect('activate', self.menu_activate_cb, files, device["id"], device["name"])
sub_menu.append_item(item)
Expand Down
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
indicator-kdeconnect (0.8.0) precise; urgency=low
* Fix bug #51 - Nemo and Caja only show the first device
* Send SMS is now stable and support autocomplete from Google Contacts

-- Bajoja <[email protected]> Sat, 20 Apr 2017 00:00 -0000

indicator-kdeconnect (0.7.1) precise; urgency=low
* Fix bug #51 - Nemo and Caja extensions not working
* Add Language: Lithuanian Language
Expand Down
2 changes: 1 addition & 1 deletion rpm/_service
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@
<param name="file">*.tar</param>
<param name="compression">xz</param>
</service>
<service name="set_version" mode="localonly"/>
<service name="set_version"/>
</services>
7 changes: 7 additions & 0 deletions rpm/indicator-kdeconnect.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
--- -- -- --:--:-- UTC 2017 - [email protected]

- Update to version 0.8.0:
* Fix bug #51 - Nemo and Caja only show the first device
* Send SMS is now stable and support autocomplete from Google Contacts

-------------------------------------------------------------------
Wed Apr 19 21:59:11 UTC 2017 - [email protected]

Expand Down
10 changes: 7 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 <https://www.gnu.org/licenses/>.

Name: indicator-kdeconnect
Version: 0.7.1
Version: 0.8.0
Release: 0%{?dist}
Summary: App Indicator for KDE Connect
Group: Applications/System
Expand All @@ -46,11 +46,11 @@ 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}
Expand Down Expand Up @@ -121,9 +121,13 @@ cd build


%changelog
* Sat Apr 22 2017 00:00 Bajoja <[email protected]> 0.8.0
- Fix bug #51 - Nemo and Caja only show the first device
- Send SMS is now stable and support autocomplete from Google Contacts

* Sat Apr 08 2017 21:30 Bajoja <[email protected]> 0.7.1
- Fix bug #51 - Nemo and Caja extensions not working
- Add Language: Lituan
- Add Language: Lithuanian

* Thu Mar 23 2017 2300 Bajoja <[email protected]> 0.7
- Fix bug #46 - Nautilus freeze on copy/paste - URGENT
Expand Down

0 comments on commit 08087ab

Please sign in to comment.