1
0
mirror of https://github.com/slgobinath/SafeEyes.git synced 2024-12-24 23:50:46 +01:00

Update version: 2.2.0

This commit is contained in:
Archisman Panigrahi 2024-07-14 09:32:21 -04:00
parent 6477d1c824
commit dfd471d568
6 changed files with 15 additions and 8 deletions

View File

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

6
debian/changelog vendored
View File

@ -1,3 +1,9 @@
safeeyes (2.2.0) jammy; urgency=medium
* Limit consecutive skips
-- Archisman Panigrahi <apandada1@gmail.com> Sun, 14 Jul 2024 09:30:12 -0400
safeeyes (2.1.9) noble; urgency=medium
* Fix crash in smartpause

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.1.9</property>
<property name="label" translatable="yes">Safe Eyes 2.2.0</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.0" date="2024-07-14" />
<release version="2.1.9" date="2024-06-19" />
<release version="2.1.8" date="2024-06-08" />
<release version="2.1.7" date="2024-06-08" />
@ -63,4 +64,4 @@
<content_rating type="oars-1.1" />
</component>
</component>

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.1.9"
SAFE_EYES_VERSION = "2.2.0"
class SafeEyes(Gtk.Application):

View File

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