Skip to content
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
6 changes: 3 additions & 3 deletions .github/workflows/build-deb.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
name: Build Debian Package

on:
push:
branches: [ release ]
release:
types: [published]
workflow_dispatch:

jobs:
Expand Down Expand Up @@ -37,4 +37,4 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: deb-package
path: "*.deb"
path: "*.deb"
6 changes: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
safeeyes (3.0.0b6) noble; urgency=medium

* Re-release due to broken github action

-- Mel Dafert <[email protected]> Sun, 24 Aug 2025 10:30:00 +0000

safeeyes (3.0.0b5) noble; urgency=medium

* Re-release due to broken github action
Expand Down
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "safeeyes"
version = "3.0.0b5"
version = "3.0.0b6"
description = "Protect your eyes from eye strain using this continuous breaks reminder."
keywords = ["linux utility health eye-strain safe-eyes"]
readme = "README.md"
Expand Down Expand Up @@ -31,7 +31,7 @@ requires-python = ">=3.10"

[project.urls]
Homepage = "https://github.com/slgobinath/SafeEyes"
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v3.0.0b5.tar.gz"
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v3.0.0b6.tar.gz"

[project.scripts]
safeeyes = "safeeyes.__main__:main"
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 @@ -64,7 +64,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 3.0.0b5</property>
<property name="label">Safe Eyes 3.0.0b6</property>
<property name="justify">center</property>
<property name="hexpand">1</property>
<property name="vexpand">1</property>
Expand Down
7 changes: 4 additions & 3 deletions safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml
Original file line number Diff line number Diff line change
Expand Up @@ -38,21 +38,22 @@
<screenshots>
<screenshot type="default">
<caption>Safe Eyes short break screen.</caption>
<image>https://slgobinath.github.io/SafeEyes/assets/screenshots/safeeyes_1.png</image>
<image>https://slgobinath.github.io/SafeEyes/images/safeeyes_1.png</image>
</screenshot>
<screenshot>
<caption>Safe Eyes long break screen.</caption>
<image>https://slgobinath.github.io/SafeEyes/assets/screenshots/safeeyes_3.png</image>
<image>https://slgobinath.github.io/SafeEyes/images/safeeyes_3.png</image>
</screenshot>
<screenshot>
<caption>Safe Eyes settings window.</caption>
<image>https://slgobinath.github.io/SafeEyes/assets/screenshots/safeeyes_6.png</image>
<image>https://slgobinath.github.io/SafeEyes/images/safeeyes_6.png</image>
</screenshot>
</screenshots>

<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>

<releases>
<release version="3.0.0b6" date="2025-08-24" />
<release version="3.0.0b5" date="2025-08-22" />
<release version="3.0.0b4" date="2025-08-22" />
<release version="3.0.0b3" date="2025-05-05" />
Expand Down
2 changes: 1 addition & 1 deletion safeeyes/plugins/donotdisturb/dependency_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ def validate(plugin_config, plugin_settings):
return None
command = "wlrctl"
else:
command = "xprop"
return None
if not utility.command_exist(command):
return _("Please install the command-line tool '%s'") % command
else:
Expand Down
13 changes: 0 additions & 13 deletions safeeyes/plugins/trayicon/dependency_checker.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.

from safeeyes import utility
from safeeyes.model import PluginDependency
from safeeyes.translations import translate as _

Expand Down Expand Up @@ -48,15 +47,3 @@ def validate(plugin_config, plugin_settings):
link="https://github.com/slgobinath/SafeEyes/wiki/How-to-install-backend-for-Safe-Eyes-tray-icon",
retryable=True,
)

command = None
if utility.IS_WAYLAND:
if utility.DESKTOP_ENVIRONMENT == "gnome":
return None
command = "wlrctl"
else:
command = "xprop"
if not utility.command_exist(command):
return _("Please install the command-line tool '%s'") % command
else:
return None