Release v1.2.2

This commit is contained in:
Gobinath 2017-07-31 15:08:35 -04:00
parent 9698517177
commit 8ea2c85c9a
4 changed files with 15 additions and 5 deletions

12
debian/changelog vendored
View File

@ -1,4 +1,14 @@
safeeyes (1.2.1-1) xenial; urgency=low
safeeyes (1.2.2-1) xenial; urgency=low
* Show next break time in tray icon in supported environments
* Enable keyboard shortcuts
* Fix screen flickering in KDE
* Show the break type in the notification
* Make pyaudio optional
* Support postponing the break

View File

@ -38,7 +38,7 @@ settings_dialog_glade = os.path.join(Utility.bin_directory, "glade/settings_dial
about_dialog_glade = os.path.join(Utility.bin_directory, "glade/about_dialog.glade")
is_active = True
SAFE_EYES_VERSION = "1.2.1"
SAFE_EYES_VERSION = "1.2.2"
def show_settings():

View File

@ -1,6 +1,6 @@
{
"meta": {
"config_version": "5.0.2"
"config_version": "5.0.1"
},
"allow_postpone": false,
"break_interval": 15,

View File

@ -27,13 +27,13 @@ def _data_files(path):
setuptools.setup(
name="safeeyes",
version="1.2.1",
version="1.2.2",
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.1.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v{}.tar.gz".format(version),
packages=setuptools.find_packages(),
package_data={'safeeyes': ['config/*.json',
'config/style/*.css',