Skip to content

Commit

Permalink
v2.2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
deltragon committed Dec 25, 2024
1 parent 843c7c3 commit b924521
Show file tree
Hide file tree
Showing 6 changed files with 28 additions and 6 deletions.
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
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

0 comments on commit b924521

Please sign in to comment.