diff --git a/README.md b/README.md index 6a33fcd..eb0a88d 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,5 @@ # Safe Eyes -Protect your eyes from eye strain using this continuous breaks reminder. A Free and Open Source Linux alternative to EyeLeo; a sexy and customizable alternative to Workrave. +Protect your eyes from eye strain using this simple and beautiful, yet extensible break reminder. A Free and Open Source Linux alternative to EyeLeo. Visit to the official site: http://slgobinath.github.io/SafeEyes/ for more details. diff --git a/debian/changelog b/debian/changelog index 2befb86..3b18b3e 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (1.2.0a10-1) xenial; urgency=low +safeeyes (1.2.0-1) xenial; urgency=low + + * Support postponing the break * Handle configuration update efficiently @@ -8,7 +10,7 @@ safeeyes (1.2.0a10-1) xenial; urgency=low * Add custom breaks - * Add break image + * Add optional break image feature * Add lock screen support diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index 8f8b4ee..a89d61c 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -39,7 +39,7 @@ about_dialog_glade = os.path.join(Utility.bin_directory, "glade/about_dialog.gla is_active = True -SAFE_EYES_VERSION = "1.2.0a10" +SAFE_EYES_VERSION = "1.2.0" """ Listen to tray icon Settings action and send the signal to Settings dialog. diff --git a/safeeyes/config/lang/fr.json b/safeeyes/config/lang/fr.json index a0d4f43..7664896 100644 --- a/safeeyes/config/lang/fr.json +++ b/safeeyes/config/lang/fr.json @@ -38,7 +38,7 @@ "idle_time": "Durée minimale d'une pause (en minutes)", "interval_between_two_breaks": "Intervalle entre deux pauses (en minutes)", "language": "Langue", - "license": "licence", + "license": "Licence", "long_break_duration": "Durée d'une pause longue (en secondes)", "no_of_short_breaks_between_two_long_breaks": "Nombre de pauses courtes entre deux pauses longues", "postpone": "Reporter", diff --git a/setup.py b/setup.py index 96825f5..ebc9bf2 100644 --- a/setup.py +++ b/setup.py @@ -23,13 +23,13 @@ def _data_files(path): setuptools.setup( name="safeeyes", - version="1.2.0a10", + version="1.2.0", 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/v1.2.0a10.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': ['config/*.json', 'config/style/*.css',