-
Notifications
You must be signed in to change notification settings - Fork 164
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
28 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -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(), | ||
|