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: 6 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
safeeyes (3.2.0) noble; urgency=medium

* Fixed XFCE multi-screen bug (thanks to @deltragon)

-- Archisman Panigrahi <apandada1@gmail.com> Thu, 02 Oct 2025 02:25:38 +0000

safeeyes (3.1.0) noble; urgency=medium

* Ensure compatibility with older Wayland
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.1.0"
version = "3.2.0"
description = "Protect your eyes from eye strain using this continuous breaks reminder."
license = {text = "GPL-3.0-or-later"}
keywords = ["linux utility health eye-strain safe-eyes"]
Expand Down Expand Up @@ -30,7 +30,7 @@ requires-python = ">=3.10"

[project.urls]
Homepage = "https://github.com/slgobinath/SafeEyes"
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v3.1.0.tar.gz"
Downloads = "https://github.com/slgobinath/SafeEyes/archive/v3.2.0.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.1.0</property>
<property name="label">Safe Eyes 3.2.0</property>
<property name="justify">center</property>
<property name="hexpand">1</property>
<property name="vexpand">1</property>
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="3.2.0" date="2025-10-02" />
<release version="3.1.0" date="2025-09-21" />
<release version="3.0.1" date="2025-09-11" />
<release version="3.0.0" date="2025-08-24" />
Expand Down
7 changes: 6 additions & 1 deletion safeeyes/ui/break_screen.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,9 +201,14 @@ def __show_break_screen(
# Fix flickering screen in KDE by setting opacity to 1
window.set_opacity(0.9)

window.fullscreen_on_monitor(monitor)
window.present()

# Apparently this needs to run after present() (as of GTK 4.20)
# On Wayland, either work seems to work fine
# On X11, calling this before present() always fullscreens only on the
# focused monitor regardless
window.fullscreen_on_monitor(monitor)

# this ensures that none of the buttons is in focus immediately
# otherwise, pressing space presses that button instead of triggering the
# shortcut
Expand Down