Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[pull] master from slgobinath:master #133

Merged
merged 3 commits into from
Dec 25, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
21 changes: 21 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -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 <[email protected]> Wed, 25 Dec 2024 11:46:00 +0000

safeeyes (2.2.2) jammy; urgency=medium

* Fixed translations
Expand Down
4 changes: 4 additions & 0 deletions safeeyes/config/locale/bn/LC_MESSAGES/safeeyes.po
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,10 @@ msgstr "অনুমতিপত্র"
msgid "List of Contributors"
msgstr ""

# About dialog
msgid "Help us translate this app"
msgstr ""

# Break screen
msgid "Skip"
msgstr ""
Expand Down
2 changes: 1 addition & 1 deletion safeeyes/glade/about_dialog.glade
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</pr
<property name="valign">center</property>
<property name="margin-top">10</property>
<property name="margin-bottom">10</property>
<property name="label">Safe Eyes 2.2.2</property>
<property name="label">Safe Eyes 2.2.3</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@
<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>

<releases>
<release version="2.2.3" date="2024-12-25" />
<release version="2.2.2" date="2024-08-05" />
<release version="2.2.1" date="2024-07-14" />
<release version="2.2.0" date="2024-07-14" />
Expand Down
2 changes: 1 addition & 1 deletion safeeyes/safeeyes.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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="[email protected]",
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(),
Expand Down
Loading