diff --git a/debian/changelog b/debian/changelog index d02724f..304c5e1 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (2.0.9-1) xenial; urgency=high +safeeyes (2.1.0-1) xenial; urgency=high + * Add Python 3.8 and 3.9 support + * Redesigned settings dialog * Add tray action buttons to the break screen diff --git a/debian/control b/debian/control index 609e15a..ce1f4eb 100644 --- a/debian/control +++ b/debian/control @@ -4,12 +4,12 @@ Priority: optional Maintainer: Gobinath Loganathan Build-Depends: debhelper (>= 9), python3, python3-setuptools Standards-Version: 3.9.6 -X-Python3-Version: >= 3.4 +X-Python3-Version: >= 3.5 Homepage: https://github.com/slgobinath/SafeEyes/ Package: safeeyes Architecture: all -Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.4.0), python3-xlib, python3-dbus, gir1.2-notify-0.7, python3-babel, x11-utils, xprintidle, alsa-utils, python3-psutil +Depends: ${misc:Depends}, ${python3:Depends}, gir1.2-appindicator3-0.1, python3 (>= 3.5.0), python3-xlib, python3-dbus, gir1.2-notify-0.7, python3-babel, x11-utils, xprintidle, alsa-utils, python3-psutil Description: Safe Eyes Safe Eyes is a simple tool to remind you to take periodic breaks for your eyes. This is essential for anyone spending more time on the computer to avoid eye strain and other physical problems. . diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 6ede4a2..425ed77 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.9 + Safe Eyes 2.1.0 center diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 2caa17a..785b5d8 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.0.9" +SAFE_EYES_VERSION = "2.1.0" class SafeEyes: diff --git a/setup.py b/setup.py index ca9b234..8a63a5c 100644 --- a/setup.py +++ b/setup.py @@ -71,14 +71,14 @@ __data_files = list(_data_files('share')) setuptools.setup( name="safeeyes", - version="2.0.9", + version="2.1.0", 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.0.9.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.0.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files, @@ -91,5 +91,5 @@ setuptools.setup( "Development Status :: 5 - Production/Stable", "Environment :: X11 Applications :: GTK", "Intended Audience :: End Users/Desktop", - "Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.4 3.5 3.6 3.7'.split()] + "Topic :: Utilities"] + [('Programming Language :: Python :: %s' % x) for x in '3 3.5 3.6 3.7 3.8 3.9'.split()] )