From 8ea2c85c9a4700e4a73e7bc6de7c513604c086e0 Mon Sep 17 00:00:00 2001 From: Gobinath Date: Mon, 31 Jul 2017 15:08:35 -0400 Subject: [PATCH] Release v1.2.2 --- debian/changelog | 12 +++++++++++- safeeyes/__main__.py | 2 +- safeeyes/config/safeeyes.json | 2 +- setup.py | 4 ++-- 4 files changed, 15 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 373213e..0fe0e9a 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,14 @@ -safeeyes (1.2.1-1) xenial; urgency=low +safeeyes (1.2.2-1) xenial; urgency=low + + * Show next break time in tray icon in supported environments + + * Enable keyboard shortcuts + + * Fix screen flickering in KDE + + * Show the break type in the notification + + * Make pyaudio optional * Support postponing the break diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index 7cb0ef7..1d4f8bb 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -38,7 +38,7 @@ settings_dialog_glade = os.path.join(Utility.bin_directory, "glade/settings_dial about_dialog_glade = os.path.join(Utility.bin_directory, "glade/about_dialog.glade") is_active = True -SAFE_EYES_VERSION = "1.2.1" +SAFE_EYES_VERSION = "1.2.2" def show_settings(): diff --git a/safeeyes/config/safeeyes.json b/safeeyes/config/safeeyes.json index 0a7b9f2..8cc7603 100644 --- a/safeeyes/config/safeeyes.json +++ b/safeeyes/config/safeeyes.json @@ -1,6 +1,6 @@ { "meta": { - "config_version": "5.0.2" + "config_version": "5.0.1" }, "allow_postpone": false, "break_interval": 15, diff --git a/setup.py b/setup.py index 13f821f..45bbc7f 100644 --- a/setup.py +++ b/setup.py @@ -27,13 +27,13 @@ def _data_files(path): setuptools.setup( name="safeeyes", - version="1.2.1", + version="1.2.2", description="Protect your eyes from eye strain using this continuous breaks reminder.", long_description=long_description, author="Gobinath Loganathan", author_email="slgobinath@gmail.com", url="https://github.com/slgobinath/SafeEyes", - download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.1.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v{}.tar.gz".format(version), packages=setuptools.find_packages(), package_data={'safeeyes': ['config/*.json', 'config/style/*.css',