diff --git a/README.md b/README.md index 9e6f175..f0791e3 100644 --- a/README.md +++ b/README.md @@ -184,10 +184,10 @@ Thirdparty plugins are available at another GitHub repository: [safeeyes-plugins 1. Checkout the latest commits from the `master` branch 2. Run `python3 -m safeeyes` to make sure nothing is broken 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#L81) - - [setup.py](https://github.com/slgobinath/SafeEyes/blob/master/setup.py#L88) + - [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) - - [io.github.slgobinath.SafeEyes.metainfo.xml](https://github.com/slgobinath/SafeEyes/blob/master/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml#L50) + - [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 release) 5. Commit the changes to `master` diff --git a/debian/changelog b/debian/changelog index f656523..d9fe482 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +safeeyes (2.2.0) jammy; urgency=medium + + * Limit consecutive skips + + -- Archisman Panigrahi Sun, 14 Jul 2024 09:30:12 -0400 + safeeyes (2.1.9) noble; urgency=medium * Fix crash in smartpause diff --git a/safeeyes/glade/about_dialog.glade b/safeeyes/glade/about_dialog.glade index 9ebb8e5..6178a06 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.1.9 + Safe Eyes 2.2.0 center diff --git a/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml b/safeeyes/platform/io.github.slgobinath.SafeEyes.metainfo.xml index de01116..4555ba8 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/ + @@ -63,4 +64,4 @@ - \ No newline at end of file + diff --git a/safeeyes/safeeyes.py b/safeeyes/safeeyes.py index 144181b..37a50f8 100644 --- a/safeeyes/safeeyes.py +++ b/safeeyes/safeeyes.py @@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog gi.require_version('Gtk', '3.0') from gi.repository import Gtk, Gio -SAFE_EYES_VERSION = "2.1.9" +SAFE_EYES_VERSION = "2.2.0" class SafeEyes(Gtk.Application): diff --git a/setup.py b/setup.py index dc89916..c06c2a6 100644 --- a/setup.py +++ b/setup.py @@ -80,14 +80,14 @@ def __package_data(): setuptools.setup( name="safeeyes", - version="2.1.9", + version="2.2.0", 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.1.9.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.0.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': __package_data()}, data_files=__data_files(),