From 1c4966ab6570b844e0729ab5c55bb3c7b3e82467 Mon Sep 17 00:00:00 2001 From: Gobinath Date: Wed, 3 Jan 2018 09:25:37 -0500 Subject: [PATCH] Release v2.0.1 --- debian/changelog | 6 +++++- safeeyes/SafeEyes.py | 2 +- safeeyes/glade/about_dialog.glade | 2 +- setup.py | 4 ++-- 4 files changed, 9 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 1f4fff9..159ab5e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,5 +1,9 @@ -safeeyes (2.0.0-1) xenial; urgency=low +safeeyes (2.0.1-1) xenial; urgency=low + * Fix multi-display issue + + * Fix hard coded time in notification + * Completely rededesigned architecture and user interface * Show next break time in tray icon in supported environments diff --git a/safeeyes/SafeEyes.py b/safeeyes/SafeEyes.py index ed268d2..18860c0 100644 --- a/safeeyes/SafeEyes.py +++ b/safeeyes/SafeEyes.py @@ -39,7 +39,7 @@ from safeeyes.settings import SettingsDialog gi.require_version('Gtk', '3.0') from gi.repository import Gtk -SAFE_EYES_VERSION = "2.0.0" +SAFE_EYES_VERSION = "2.0.1" class SafeEyes(object): diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index b3f43d3..1349a71 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.0.0 + Safe Eyes 2.0.1 center diff --git a/setup.py b/setup.py index 34d2136..e6e4ef1 100644 --- a/setup.py +++ b/setup.py @@ -71,13 +71,13 @@ __data_files = list(_data_files('share')) setuptools.setup( name="safeeyes", - version="2.0.0", + version="2.0.1", 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/v2.0.0.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.1.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files,