Merge pull request #624 from archisman-panigrahi/master

v2.2.2
This commit is contained in:
Archisman Panigrahi 2024-08-06 00:09:13 +00:00 committed by GitHub
commit c9fedf6b1b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
6 changed files with 20 additions and 5 deletions

View File

@ -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)

14
debian/changelog vendored
View File

@ -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

View File

@ -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"/>

View File

@ -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" />

View File

@ -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):

View File

@ -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(),