From 41464e4ebc53c10625c7c2cca37b442e6868d1bc Mon Sep 17 00:00:00 2001 From: Gobinath Date: Fri, 25 Dec 2020 19:28:38 -0500 Subject: [PATCH] Release v2.1.1 --- debian/changelog | 4 +++- safeeyes/__main__.py | 1 + safeeyes/glade/about_dialog.glade | 2 +- safeeyes/safeeyes.py | 2 +- setup.py | 4 ++-- 5 files changed, 8 insertions(+), 5 deletions(-) diff --git a/debian/changelog b/debian/changelog index 304c5e1..c8c218f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (2.1.0-1) xenial; urgency=high +safeeyes (2.1.1-1) xenial; urgency=high + * Create desktop entries from the code + * Add Python 3.8 and 3.9 support * Redesigned settings dialog diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index bc89dd7..212631f 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -109,6 +109,7 @@ def main(): # Initialize the logging utility.intialize_logging(args.debug) + utility.initialize_platform() config = Config() if __running(): diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 425ed77..cd32ae6 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.1.0 + Safe Eyes 2.1.1 center diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 785b5d8..1f76071 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog gi.require_version('Gtk', '3.0') from gi.repository import Gtk -SAFE_EYES_VERSION = "2.1.0" +SAFE_EYES_VERSION = "2.1.1" class SafeEyes: diff --git a/setup.py b/setup.py index 07dfc74..a7f7f2c 100644 --- a/setup.py +++ b/setup.py @@ -74,14 +74,14 @@ __data_files = list() setuptools.setup( name="safeeyes", - version="2.1.0", + version="2.1.1", description="Protect your eyes from eye strain using this continuous breaks reminder.", long_description=long_description, long_description_content_type="text/markdown", author="Gobinath Loganathan", author_email="slgobinath@gmail.com", url="https://github.com/slgobinath/SafeEyes", - download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.0.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.1.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files,