Release 2.0.5

This commit is contained in:
Gobinath 2018-03-19 12:22:54 -04:00
parent 207e375dce
commit e4a287c848
4 changed files with 7 additions and 5 deletions

4
debian/changelog vendored
View File

@ -1,4 +1,6 @@
safeeyes (2.0.4-1) xenial; urgency=high safeeyes (2.0.5-1) xenial; urgency=high
* Fix no long breaks
* Fix issues with locales * Fix issues with locales

View File

@ -39,7 +39,7 @@ from safeeyes.settings import SettingsDialog
gi.require_version('Gtk', '3.0') gi.require_version('Gtk', '3.0')
from gi.repository import Gtk from gi.repository import Gtk
SAFE_EYES_VERSION = "2.0.4" SAFE_EYES_VERSION = "2.0.5"
class SafeEyes(object): 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="valign">center</property>
<property name="margin_top">10</property> <property name="margin_top">10</property>
<property name="margin_bottom">10</property> <property name="margin_bottom">10</property>
<property name="label" translatable="yes">Safe Eyes 2.0.4</property> <property name="label" translatable="yes">Safe Eyes 2.0.5</property>
<property name="justify">center</property> <property name="justify">center</property>
<attributes> <attributes>
<attribute name="style" value="normal"/> <attribute name="style" value="normal"/>

View File

@ -70,13 +70,13 @@ __data_files = list(_data_files('share'))
setuptools.setup( setuptools.setup(
name="safeeyes", name="safeeyes",
version="2.0.4", version="2.0.5",
description="Protect your eyes from eye strain using this continuous breaks reminder.", description="Protect your eyes from eye strain using this continuous breaks reminder.",
long_description=long_description, long_description=long_description,
author="Gobinath Loganathan", author="Gobinath Loganathan",
author_email="slgobinath@gmail.com", author_email="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes", url="https://github.com/slgobinath/SafeEyes",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.3.tar.gz", download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.5.tar.gz",
packages=setuptools.find_packages(), packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()}, package_data={'safeeyes': __package_data()},
data_files=__data_files, data_files=__data_files,