commit
5cd9b8a428
|
@ -33,7 +33,7 @@ jobs:
|
|||
- name: Create Tag
|
||||
uses: mathieudutour/github-tag-action@v6.1
|
||||
with:
|
||||
custom_tag: "v${{steps.get_current_version.outputs.project_version}}"
|
||||
custom_tag: "${{steps.get_current_version.outputs.project_version}}"
|
||||
github_token: ${{ secrets.GH_API_SECRET }}
|
||||
|
||||
- name: Build Changelog
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
safeeyes (2.1.7) noble; urgency=medium
|
||||
safeeyes (2.1.8) noble; urgency=medium
|
||||
|
||||
* Support Python 3.12
|
||||
|
||||
|
|
|
@ -71,7 +71,7 @@ along with this program. If not, see <https://www.gnu.org/licenses/>.</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.7</property>
|
||||
<property name="label" translatable="yes">Safe Eyes 2.1.8</property>
|
||||
<property name="justify">center</property>
|
||||
<attributes>
|
||||
<attribute name="style" value="normal"/>
|
||||
|
|
|
@ -47,7 +47,7 @@
|
|||
<url type="homepage">https://slgobinath.github.io/SafeEyes/</url>
|
||||
|
||||
<releases>
|
||||
<release version="2.1.7" date="2023-06-04" />
|
||||
<release version="2.1.8" date="2023-06-04" />
|
||||
</releases>
|
||||
|
||||
<content_rating type="oars-1.1" />
|
||||
|
|
|
@ -40,7 +40,7 @@ from safeeyes.ui.settings_dialog import SettingsDialog
|
|||
gi.require_version('Gtk', '3.0')
|
||||
from gi.repository import Gtk
|
||||
|
||||
SAFE_EYES_VERSION = "2.1.7"
|
||||
SAFE_EYES_VERSION = "2.1.8"
|
||||
|
||||
|
||||
class SafeEyes:
|
||||
|
|
4
setup.py
4
setup.py
|
@ -78,14 +78,14 @@ def __package_data():
|
|||
|
||||
setuptools.setup(
|
||||
name="safeeyes",
|
||||
version="2.1.7",
|
||||
version="2.1.8",
|
||||
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.7.tar.gz",
|
||||
download_url="https://github.com/slgobinath/SafeEyes/archive/v2.1.8.tar.gz",
|
||||
packages=setuptools.find_packages(),
|
||||
package_data={'safeeyes': __package_data()},
|
||||
data_files=__data_files(),
|
||||
|
|
Loading…
Reference in New Issue