Skip to content

Commit b924521

Browse files
committed
v2.2.3
1 parent 843c7c3 commit b924521

File tree

6 files changed

+28
-6
lines changed

6 files changed

+28
-6
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -200,8 +200,8 @@ To ensure the new strings are well-formed, you can use `python validate_po.py --
200200
1. Checkout the latest commits from the `master` branch
201201
2. Run `python3 -m safeeyes` to make sure nothing is broken
202202
3. Update the Safe Eyes version in the following places (Open the project in VSCode and search for the current version):
203-
- [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L83)
204-
- [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L90)
203+
- [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L82)
204+
- [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L89)
205205
- [safeeyes.py](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/safeeyes.py#L42)
206206
- [io.github.slgobinath.SafeEyes.metainfo.xml](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml#L56)
207207
- [about_dialog.glade](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/glade/about_dialog.glade#L74)

debian/changelog

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,24 @@
1+
safeeyes (2.2.3) jammy; urgency=medium
2+
3+
* Translations
4+
5+
* Make config and stylesheet files non-executable
6+
7+
* Retry loading trayicon plugin to fix races on startup
8+
9+
* Fix "Show next break time in tray icon" for desktops support tray icons
10+
with labels
11+
12+
* Fix next break time in tray icon when disabling SafeEyes
13+
14+
* Make SafeEyes compatible with Python 3.6 again
15+
16+
* Add 'hyprland' to the list of recognized desktop sessions
17+
18+
* Remove hard dependency on X11
19+
20+
-- Mel Dafert <[email protected]> Wed, 25 Dec 2024 11:46:00 +0000
21+
122
safeeyes (2.2.2) jammy; urgency=medium
223

324
* Fixed translations

safeeyes/glade/about_dialog.glade

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ along with this program. If not, see &lt;https://www.gnu.org/licenses/&gt;.</pr
7171
<property name="valign">center</property>
7272
<property name="margin-top">10</property>
7373
<property name="margin-bottom">10</property>
74-
<property name="label">Safe Eyes 2.2.2</property>
74+
<property name="label">Safe Eyes 2.2.3</property>
7575
<property name="justify">center</property>
7676
<attributes>
7777
<attribute name="style" value="normal"/>

safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@
5353
<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>
5454

5555
<releases>
56+
<release version="2.2.3" date="2024-12-25" />
5657
<release version="2.2.2" date="2024-08-05" />
5758
<release version="2.2.1" date="2024-07-14" />
5859
<release version="2.2.0" date="2024-07-14" />

safeeyes/safeeyes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
gi.require_version('Gtk', '3.0')
4040
from gi.repository import Gtk, Gio, GLib
4141

42-
SAFE_EYES_VERSION = "2.2.2"
42+
SAFE_EYES_VERSION = "2.2.3"
4343

4444

4545
class SafeEyes(Gtk.Application):

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -79,14 +79,14 @@ def __package_data():
7979

8080
setuptools.setup(
8181
name="safeeyes",
82-
version="2.2.2",
82+
version="2.2.3",
8383
description="Protect your eyes from eye strain using this continuous breaks reminder.",
8484
long_description=long_description,
8585
long_description_content_type="text/markdown",
8686
author="Gobinath Loganathan",
8787
author_email="[email protected]",
8888
url="https://github.com/slgobinath/SafeEyes",
89-
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.2.tar.gz",
89+
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.3.tar.gz",
9090
packages=setuptools.find_packages(),
9191
package_data={'safeeyes': __package_data()},
9292
data_files=__data_files(),

0 commit comments

Comments
 (0)