Release v2.0.6

This commit is contained in:
Gobinath 2018-06-26 13:37:57 -04:00
parent 9a1c11f11b
commit b3212a25f0
5 changed files with 8 additions and 7 deletions

View File

@ -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

3
debian/changelog vendored
View File

@ -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

View File

@ -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):

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="margin_top">10</property>
<property name="margin_bottom">10</property>
<property name="label" translatable="yes">Safe Eyes 2.0.5</property>
<property name="label" translatable="yes">Safe Eyes 2.0.6</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -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,