diff --git a/README.md b/README.md index f4c3b87..68603b6 100644 --- a/README.md +++ b/README.md @@ -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) diff --git a/debian/changelog b/debian/changelog index 9615fcf..e369190 100644 --- a/debian/changelog +++ b/debian/changelog @@ -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 Mon, 5 Aug 2024 18:04:23 -0400 + safeeyes (2.2.1) jammy; urgency=medium * Make limit consecutive skips to default diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index cad666f..8ee6875 100644 --- a/safeeyes/glade/about_dialog.glade +++ b/safeeyes/glade/about_dialog.glade @@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.center 10 10 - Safe Eyes 2.2.1 + Safe Eyes 2.2.2 center diff --git a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml index 27d2efb..ad599ff 100644 --- a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml +++ b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml @@ -53,6 +53,7 @@ https://slgobinath.github.io/SafeEyes/ + diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 77c4fb1..3188ec0 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -39,7 +39,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog 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): diff --git a/setup.py b/setup.py index 3e3f069..480c3ab 100644 --- a/setup.py +++ b/setup.py @@ -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(),