From 843c7c363bff8789758faf5035afd8b4a9925f90 Mon Sep 17 00:00:00 2001 From: deltragon Date: Wed, 25 Dec 2024 12:36:17 +0100 Subject: [PATCH 1/2] translations --- safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po b/safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po index 5704ab1d..37e7b70e 100644 --- a/safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po +++ b/safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po @@ -110,6 +110,10 @@ msgstr "অনুমতিপত্র" msgid "List of Contributors" msgstr "" +# About dialog +msgid "Help us translate this app" +msgstr "" + # Break screen msgid "Skip" msgstr "" From b9245212944eba41a11217dd185c2a6af360834a Mon Sep 17 00:00:00 2001 From: deltragon Date: Wed, 25 Dec 2024 12:55:33 +0100 Subject: [PATCH 2/2] v2.2.3 --- README.md | 4 ++-- debian/changelog | 21 +++++++++++++++++++ safeeyes/glade/about_dialog.glade | 2 +- ...io.github.slgobinath.SafeEyes.metainfo.xml | 1 + safeeyes/safeeyes.py | 2 +- setup.py | 4 ++-- 6 files changed, 28 insertions(+), 6 deletions(-) diff --git a/README.md b/README.md index 6f8ca15a..84e5871b 100644 --- a/README.md +++ b/README.md @@ -200,8 +200,8 @@ To ensure the new strings are well-formed, you can use `python validate_po.py -- 1. Checkout the latest commits from the `master` branch 2. Run `python3 -m safeeyes` to make sure nothing is broken 3. Update the Safe Eyes version in the following places (Open the project in VSCode and search for the current version): - - [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L83) - - [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L90) + - [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L82) + - [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L89) - [safeeyes.py](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/safeeyes.py#L42) - [io.github.slgobinath.SafeEyes.metainfo.xml](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml#L56) - [about_dialog.glade](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/glade/about_dialog.glade#L74) diff --git a/debian/changelog b/debian/changelog index e3691908..fadf0d8f 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,24 @@ +safeeyes (2.2.3) jammy; urgency=medium + + * Translations + + * Make config and stylesheet files non-executable + + * Retry loading trayicon plugin to fix races on startup + + * Fix "Show next break time in tray icon" for desktops support tray icons + with labels + + * Fix next break time in tray icon when disabling SafeEyes + + * Make SafeEyes compatible with Python 3.6 again + + * Add 'hyprland' to the list of recognized desktop sessions + + * Remove hard dependency on X11 + + -- Mel Dafert Wed, 25 Dec 2024 11:46:00 +0000 + safeeyes (2.2.2) jammy; urgency=medium * Fixed translations diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 055b18aa..fc6ab89f 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.2.2 + Safe Eyes 2.2.3 center diff --git a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml index ad599ffc..408001c9 100644 --- a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml +++ b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml @@ -53,6 +53,7 @@ https://slgobinath.github.io/SafeEyes/ + diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 0fb9a9b2..bf94c9cc 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -39,7 +39,7 @@ gi.require_version('Gtk', '3.0') from gi.repository import Gtk, Gio, GLib -SAFE_EYES_VERSION = "2.2.2" +SAFE_EYES_VERSION = "2.2.3" class SafeEyes(Gtk.Application): diff --git a/setup.py b/setup.py index 480c3ab4..8e31844e 100644 --- a/setup.py +++ b/setup.py @@ -79,14 +79,14 @@ def __package_data(): setuptools.setup( name="safeeyes", - version="2.2.2", + version="2.2.3", 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.2.2.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.3.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files(),