Skip to content

Commit 63bc7d6

Browse files
committed
Release v1.1.3
1 parent f86ce4a commit 63bc7d6

File tree

7 files changed

+20
-7
lines changed

7 files changed

+20
-7
lines changed

README.md

+11-2
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ Manual installation is not tested in any systems. I will update this page as soo
2929

3030
* Fedora 24: `libappindicator-gtk3`, `python-xlib`, `python-gobject`, `xorg-x11-utils`, `python-dbus`, `xprintidle` and `mpg123`
3131

32-
2: Download and extract [safeeyes.tar.gz](https://github.com/slgobinath/SafeEyes/releases/download/v1.1.2/safeeyes.tar.gz) into `/`: `sudo tar -xzvf safeeyes.tar.gz -C /`
32+
2: Download and extract [safeeyes.tar.gz](https://github.com/slgobinath/SafeEyes/releases/download/v1.1.3/safeeyes.tar.gz) into `/`: `sudo tar -xzvf safeeyes.tar.gz -C /`
3333

3434
If you have any issues in installing Safe Eyes, please report them [here](https://github.com/slgobinath/SafeEyes/issues)
3535

@@ -105,19 +105,28 @@ For more details, have a look at existing language files: [lang](https://github.
105105

106106
### Currently available translations
107107
* [Čeština](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/cz.json)
108-
* [English](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/en.json)
109108
* [Deutsch](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/de.json)
109+
* [English](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/en.json)
110110
* [Español](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/es.json)
111111
* [Français](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/fr.json)
112112
* [Magyar](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/hu.json)
113113
* [Português](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/pt.json)
114+
* [Русский](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/ru.json)
114115
* [Slovenský](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/sk.json)
115116
* [தமிழ்](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/ta.json)
116117

117118

118119

119120

120121
## History
122+
Version 1.1.3:
123+
* Optional audible alert after breaks
124+
* Pause Safe Eyes if the system is idle for a given time. (Resume when user is active)
125+
* Bug fix for no break after fullscreen apps found
126+
127+
Version 1.1.2:
128+
* Bug fix for no break
129+
121130
Version 1.1.1:
122131
* About dialog
123132
* UI control to select the language

safeeyes/debian/changelog

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
safeeyes (1.1.2-1) xenial; urgency=medium
1+
safeeyes (1.1.3-1) xenial; urgency=medium
2+
3+
* Optional audible alert and pause Safe Eyes if system is idle
24

35
* Bug fix for no breaks after 1st one
46

safeeyes/safeeyes/config/lang/de.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -32,10 +32,11 @@
3232
"interval_between_two_breaks": "Intervall zwischen zwei Pausen",
3333
"no_of_short_breaks_between_two_long_breaks": "Anzahl von kleinen Pausen zwischen zwei langen Pausen",
3434
"time_to_prepare_for_break": "Zeit zur Vorbereitung für die Pause (in Sekunden)",
35+
"idle_time": "Minimum idle time to pause (in minutes)",
3536
"strict_break": "Strikte Pause (Überspringen nicht möglich)",
3637
"audible_alert": "Akustisches Signal am Ende der Pause",
3738
"language": "Sprache",
38-
"enable": "Safe Eyes Aktivieren/Deaktivieren",
39+
"enable": "Safe Eyes Aktivieren",
3940
"settings": "Einstellungen",
4041
"about": "About",
4142
"quit": "Schließen",

safeeyes/safeeyes/config/lang/ru.json

+1
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@
1414
"Поводите глазами по кругу по часовой стрелке",
1515
"Поводите глазами по кругу против часовой стрелки",
1616
"Поморгайте",
17+
"Сфокусируйте взгляд на далёком объекте",
1718
"Выпейте воды"
1819
]
1920
},

safeeyes/safeeyes/glade/settings_dialog.glade

+1-1
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@
160160
<property name="can_focus">False</property>
161161
<property name="halign">start</property>
162162
<property name="valign">center</property>
163-
<property name="label" translatable="yes">Minimum idle time to pause Safe Eyes (in minutes)</property>
163+
<property name="label" translatable="yes">Minimum idle time to pause (in minutes)</property>
164164
</object>
165165
<packing>
166166
<property name="left_attach">0</property>

safeeyes/safeeyes/safeeyes

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ system_language_directory = os.path.join(bin_directory, "config/lang")
4444

4545
is_active = True
4646
CONFIGURATION_VERSION = 2
47-
SAFE_EYES_VERSION = "1.1.2"
47+
SAFE_EYES_VERSION = "1.1.3"
4848

4949
"""
5050
Listen to tray icon Settings action and send the signal to Settings dialog.

safeeyes/share/applications/safeeyes.desktop

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ Comment[fr]=Protégez vos yeux de la fatigue
88
Comment[ta]=உங்கள் கண்களை சோர்வடையாது பாதுகாத்திடுங்கள்
99
Exec=/opt/safeeyes/safeeyes
1010
Icon=safeeyes
11-
Version=1.1.2
11+
Version=1.1.3
1212
Terminal=false
1313
Type=Application
1414
Categories=Utility;

0 commit comments

Comments
 (0)