diff --git a/README.md b/README.md index 140d921..272530c 100644 --- a/README.md +++ b/README.md @@ -57,12 +57,12 @@ sudo emerge -av x11-misc/safeeyes ### Debian ```bash -sudo apt-get install gir1.2-appindicator3-0.1 gir1.2-notify-0.7 python3-psutil python3-xlib xprintidle +sudo apt-get install gir1.2-appindicator3-0.1 gir1.2-notify-0.7 python3-psutil python3-xlib xprintidle python3-pip sudo pip3 install safeeyes sudo update-icon-caches /usr/share/icons/hicolor ``` -People using unstable/testing Debian can install Safe Eyes froms the official repository using the following command: +People using unstable/testing Debian can install Safe Eyes from the official repository using the following command: ```bash sudo apt-get install safeeyes diff --git a/debian/changelog b/debian/changelog index 66f139e..66f8109 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,5 @@ -safeeyes (2.0.5-2) xenial; urgency=medium +safeeyes (2.0.6-1) xenial; urgency=medium + * Audible alert break before and DND while on battery * Fix no long breaks diff --git a/safeeyes/SafeEyes.py b/safeeyes/SafeEyes.py index 83ade4a..a5eaa70 100644 --- a/safeeyes/SafeEyes.py +++ b/safeeyes/SafeEyes.py @@ -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.5" +SAFE_EYES_VERSION = "2.0.6" class SafeEyes(object): diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index dce9665..bf491c1 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <http://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.0.5 + Safe Eyes 2.0.6 center diff --git a/setup.py b/setup.py index 718efb5..9fdf4a3 100644 --- a/setup.py +++ b/setup.py @@ -71,14 +71,14 @@ __data_files = list(_data_files('share')) setuptools.setup( name="safeeyes", - version="2.0.5", + version="2.0.6", description="Protect your eyes from eye strain using this continuous breaks reminder.", long_description=long_description, long_description_content_type="text/markdown", author="Gobinath Loganathan", author_email="slgobinath@gmail.com", url="https://github.com/slgobinath/SafeEyes", - download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.5.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.0.6.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files,