Release 2.0.3

This commit is contained in:
Gobinath 2018-02-09 09:33:21 -05:00
parent b6628673c0
commit c5f44f6a8f
4 changed files with 10 additions and 6 deletions

8
debian/changelog vendored
View File

@ -1,10 +1,14 @@
safeeyes (2.0.2-3) artful; urgency=high
safeeyes (2.0.3-3) artful; urgency=high
* Fix issues with locales
* Add new command line option: --status
* Fix multi-display issue
* Fix hard coded time in notification
* Completely rededesigned architecture and user interface
* Completely redesigned architecture and user interface
* Show next break time in tray icon in supported environments

View File

@ -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.2"
SAFE_EYES_VERSION = "2.0.3"
class SafeEyes(object):

View File

@ -71,7 +71,7 @@ along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.</pro
<property name="valign">center</property>
<property name="margin_top">10</property>
<property name="margin_bottom">10</property>
<property name="label" translatable="yes">Safe Eyes 2.0.2</property>
<property name="label" translatable="yes">Safe Eyes 2.0.3</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -70,13 +70,13 @@ __data_files = list(_data_files('share'))
setuptools.setup(
name="safeeyes",
version="2.0.2.1",
version="2.0.3",
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.2.1.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.3.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files,