This commit is contained in:
Archisman Panigrahi 2024-07-14 16:16:16 -04:00
parent ed64041354
commit eadd6f532c
5 changed files with 13 additions and 4 deletions

8
debian/changelog vendored
View File

@ -1,3 +1,11 @@
safeeyes (2.2.1) jammy; urgency=medium
* Make limit consecutive skips to default
* Add list of contributors to About page
-- Archisman Panigrahi <apandada1@gmail.com> Sun, 14 Jul 2024 16:15:54 -0400
safeeyes (2.2.0) jammy; urgency=medium
* Limit consecutive skips

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" translatable="yes">Safe Eyes 2.2.0</property>
<property name="label" translatable="yes">Safe Eyes 2.2.1</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.1" date="2024-07-14" />
<release version="2.2.0" date="2024-07-14" />
<release version="2.1.9" date="2024-06-19" />
<release version="2.1.8" date="2024-06-08" />

View File

@ -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.2.0"
SAFE_EYES_VERSION = "2.2.1"
class SafeEyes(Gtk.Application):

View File

@ -80,14 +80,14 @@ def __package_data():
setuptools.setup(
name="safeeyes",
version="2.2.0",
version="2.2.1",
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.0.tar.gz",
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.2.1.tar.gz",
packages=setuptools.find_packages(),
package_data={'safeeyes': __package_data()},
data_files=__data_files(),