v2.2.1
This commit is contained in:
parent
ed64041354
commit
eadd6f532c
|
@ -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
|
safeeyes (2.2.0) jammy; urgency=medium
|
||||||
|
|
||||||
* Limit consecutive skips
|
* Limit consecutive skips
|
||||||
|
|
|
@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.</pr
|
||||||
<property name="valign">center</property>
|
<property name="valign">center</property>
|
||||||
<property name="margin-top">10</property>
|
<property name="margin-top">10</property>
|
||||||
<property name="margin-bottom">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>
|
<property name="justify">center</property>
|
||||||
<attributes>
|
<attributes>
|
||||||
<attribute name="style" value="normal"/>
|
<attribute name="style" value="normal"/>
|
||||||
|
|
|
@ -53,6 +53,7 @@
|
||||||
<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>
|
<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>
|
||||||
|
|
||||||
<releases>
|
<releases>
|
||||||
|
<release version="2.2.1" date="2024-07-14" />
|
||||||
<release version="2.2.0" 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.9" date="2024-06-19" />
|
||||||
<release version="2.1.8" date="2024-06-08" />
|
<release version="2.1.8" date="2024-06-08" />
|
||||||
|
|
|
@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog
|
||||||
gi.require_version('Gtk', '3.0')
|
gi.require_version('Gtk', '3.0')
|
||||||
from gi.repository import Gtk, Gio
|
from gi.repository import Gtk, Gio
|
||||||
|
|
||||||
SAFE_EYES_VERSION = "2.2.0"
|
SAFE_EYES_VERSION = "2.2.1"
|
||||||
|
|
||||||
|
|
||||||
class SafeEyes(Gtk.Application):
|
class SafeEyes(Gtk.Application):
|
||||||
|
|
4
setup.py
4
setup.py
|
@ -80,14 +80,14 @@ def __package_data():
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
name="safeeyes",
|
name="safeeyes",
|
||||||
version="2.2.0",
|
version="2.2.1",
|
||||||
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
long_description_content_type="text/markdown",
|
long_description_content_type="text/markdown",
|
||||||
author="Gobinath Loganathan",
|
author="Gobinath Loganathan",
|
||||||
author_email="slgobinath@gmail.com",
|
author_email="slgobinath@gmail.com",
|
||||||
url="https://github.com/slgobinath/SafeEyes",
|
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(),
|
packages=setuptools.find_packages(),
|
||||||
package_data={'safeeyes': __package_data()},
|
package_data={'safeeyes': __package_data()},
|
||||||
data_files=__data_files(),
|
data_files=__data_files(),
|
||||||
|
|
Loading…
Reference in New Issue