diff --git a/README.md b/README.md
index c7430cd2..5f659c3f 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ Manual installation is not tested in any systems. I will update this page as soo
* Fedora 24: `libappindicator-gtk3`, `python-xlib`, `python-gobject`, `xorg-x11-utils`, `python-dbus`, `xprintidle` and `mpg123`
-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 /`
+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 /`
If you have any issues in installing Safe Eyes, please report them [here](https://github.com/slgobinath/SafeEyes/issues)
@@ -105,12 +105,13 @@ For more details, have a look at existing language files: [lang](https://github.
### Currently available translations
* [Čeština](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/cz.json)
- * [English](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/en.json)
* [Deutsch](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/de.json)
+ * [English](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/en.json)
* [Español](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/es.json)
* [Français](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/fr.json)
* [Magyar](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/hu.json)
* [Português](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/pt.json)
+ * [Русский](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/ru.json)
* [Slovenský](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/sk.json)
* [தமிழ்](https://github.com/slgobinath/SafeEyes/tree/master/safeeyes/safeeyes/config/lang/ta.json)
@@ -118,6 +119,14 @@ For more details, have a look at existing language files: [lang](https://github.
## History
+Version 1.1.3:
+ * Optional audible alert after breaks
+ * Pause Safe Eyes if the system is idle for a given time. (Resume when user is active)
+ * Bug fix for no break after fullscreen apps found
+
+Version 1.1.2:
+ * Bug fix for no break
+
Version 1.1.1:
* About dialog
* UI control to select the language
diff --git a/safeeyes/debian/changelog b/safeeyes/debian/changelog
index 4c49152b..c1b03c4f 100644
--- a/safeeyes/debian/changelog
+++ b/safeeyes/debian/changelog
@@ -1,4 +1,6 @@
-safeeyes (1.1.2-1) xenial; urgency=medium
+safeeyes (1.1.3-1) xenial; urgency=medium
+
+ * Optional audible alert and pause Safe Eyes if system is idle
* Bug fix for no breaks after 1st one
diff --git a/safeeyes/safeeyes/config/lang/de.json b/safeeyes/safeeyes/config/lang/de.json
index 45a93108..e6211f58 100644
--- a/safeeyes/safeeyes/config/lang/de.json
+++ b/safeeyes/safeeyes/config/lang/de.json
@@ -32,10 +32,11 @@
"interval_between_two_breaks": "Intervall zwischen zwei Pausen",
"no_of_short_breaks_between_two_long_breaks": "Anzahl von kleinen Pausen zwischen zwei langen Pausen",
"time_to_prepare_for_break": "Zeit zur Vorbereitung für die Pause (in Sekunden)",
+ "idle_time": "Minimum idle time to pause (in minutes)",
"strict_break": "Strikte Pause (Überspringen nicht möglich)",
"audible_alert": "Akustisches Signal am Ende der Pause",
"language": "Sprache",
- "enable": "Safe Eyes Aktivieren/Deaktivieren",
+ "enable": "Safe Eyes Aktivieren",
"settings": "Einstellungen",
"about": "About",
"quit": "Schließen",
diff --git a/safeeyes/safeeyes/config/lang/ru.json b/safeeyes/safeeyes/config/lang/ru.json
index f4a7d5f1..19d17a68 100644
--- a/safeeyes/safeeyes/config/lang/ru.json
+++ b/safeeyes/safeeyes/config/lang/ru.json
@@ -14,6 +14,7 @@
"Поводите глазами по кругу по часовой стрелке",
"Поводите глазами по кругу против часовой стрелки",
"Поморгайте",
+ "Сфокусируйте взгляд на далёком объекте",
"Выпейте воды"
]
},
diff --git a/safeeyes/safeeyes/glade/settings_dialog.glade b/safeeyes/safeeyes/glade/settings_dialog.glade
index 02f1044e..c1c2ae34 100644
--- a/safeeyes/safeeyes/glade/settings_dialog.glade
+++ b/safeeyes/safeeyes/glade/settings_dialog.glade
@@ -160,7 +160,7 @@
False
start
center
- Minimum idle time to pause Safe Eyes (in minutes)
+ Minimum idle time to pause (in minutes)
0
diff --git a/safeeyes/safeeyes/safeeyes b/safeeyes/safeeyes/safeeyes
index b8cfb20b..c73e5769 100755
--- a/safeeyes/safeeyes/safeeyes
+++ b/safeeyes/safeeyes/safeeyes
@@ -44,7 +44,7 @@ system_language_directory = os.path.join(bin_directory, "config/lang")
is_active = True
CONFIGURATION_VERSION = 2
-SAFE_EYES_VERSION = "1.1.2"
+SAFE_EYES_VERSION = "1.1.3"
"""
Listen to tray icon Settings action and send the signal to Settings dialog.
diff --git a/safeeyes/share/applications/safeeyes.desktop b/safeeyes/share/applications/safeeyes.desktop
index 8e808afc..2777a20c 100755
--- a/safeeyes/share/applications/safeeyes.desktop
+++ b/safeeyes/share/applications/safeeyes.desktop
@@ -8,7 +8,7 @@ Comment[fr]=Protégez vos yeux de la fatigue
Comment[ta]=உங்கள் கண்களை சோர்வடையாது பாதுகாத்திடுங்கள்
Exec=/opt/safeeyes/safeeyes
Icon=safeeyes
-Version=1.1.2
+Version=1.1.3
Terminal=false
Type=Application
Categories=Utility;