Skip to content

Commit

Permalink
v2.2.2
Browse files Browse the repository at this point in the history
  • Loading branch information
archisman-panigrahi committed Aug 6, 2024
1 parent cddee2a commit 6203904
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ Thirdparty plugins are available at another GitHub repository: [safeeyes-plugins
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)
- [safeeyes.py](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/safeeyes.py#L43)
- [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)
4. Update the [changelog](https://github.com/slgobinath/SafeEyes/blob/master/debian/changelog) (for Ubuntu PPA release)
Expand Down
14 changes: 14 additions & 0 deletions debian/changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,17 @@
safeeyes (2.2.2) jammy; urgency=medium

* Fixed translations

* Fixed GTK startup error

* Fixed frozen break screen if safeeyes is closed right before a break

* Fixed safeeyes not working if stylesheet is missing

* Replaced "tightly close your eyes" with "gently close your eyes"

-- Archisman Panigrahi <apandada1@gmail.com> Mon, 5 Aug 2024 18:04:23 -0400

safeeyes (2.2.1) jammy; urgency=medium

* Make limit consecutive skips to default
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.1</property>
<property name="label">Safe Eyes 2.2.2</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.2" date="2024-08-05" />
<release version="2.2.1" date="2024-07-14" />
<release version="2.2.0" date="2024-07-14" />
<release version="2.1.9" date="2024-06-19" />
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

SAFE_EYES_VERSION = "2.2.1"
SAFE_EYES_VERSION = "2.2.2"


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.1",
version="2.2.2",
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="slgobinath@gmail.com",
url="https://github.com/slgobinath/SafeEyes",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.1.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.2.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files(),
Expand Down

0 comments on commit 6203904

Please sign in to comment.