diff --git a/README.md b/README.md index 9967ad6..6a33fcd 100644 --- a/README.md +++ b/README.md @@ -29,6 +29,7 @@ General Features: Optional Features: - Strict break for those who are addicted to computer +- Postpone break - Skip or take break based on active windows (Regardless of full-screen-mode) - Customize individual break time - Define your own custom exercise @@ -36,6 +37,7 @@ Optional Features: - Turn on/off audible alert for individual breaks - Customize disable time period - Lock screen after long breaks +- Add images to breaks - Plug-in support to extend Safe Eyes For more details: [SafeEyes Features](http://slgobinath.github.io/SafeEyes/#features) @@ -50,6 +52,7 @@ For more details: [SafeEyes Features](http://slgobinath.github.io/SafeEyes/#feat * [हिंदी](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/hi.json) * [Magyar](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/hu.json) * [Bahasa Indonesia](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/id.json) + * [Polski](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/pl.json) * [Português](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/pt.json) * [Русский](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/ru.json) * [Slovenský](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/config/lang/sk.json) diff --git a/debian/changelog b/debian/changelog index 20fe9a1..2befb86 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,6 @@ -safeeyes (1.2.0a9-1) xenial; urgency=low +safeeyes (1.2.0a10-1) xenial; urgency=low + + * Handle configuration update efficiently * Move to Python 3 diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index 456f72a..c15f7f8 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -40,7 +40,7 @@ about_dialog_glade = os.path.join(Utility.bin_directory, "glade/about_dialog.gla is_active = True -SAFE_EYES_VERSION = "1.2.0a9" +SAFE_EYES_VERSION = "1.2.0a10" """ Listen to tray icon Settings action and send the signal to Settings dialog. diff --git a/setup.py b/setup.py index a17b272..96825f5 100644 --- a/setup.py +++ b/setup.py @@ -23,13 +23,13 @@ def _data_files(path): setuptools.setup( name="safeeyes", - version="1.2.0a9", + version="1.2.0a10", 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.0a9.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a10.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': ['config/*.json', 'config/style/*.css',