Release v2.1.3

This commit is contained in:
Gobinath 2021-04-19 21:32:50 -04:00
parent 6e07de7c22
commit 736f15e907
5 changed files with 10 additions and 6 deletions

6
debian/changelog vendored
View File

@ -1,4 +1,8 @@
safeeyes (2.1.2-1) xenial; urgency=high
safeeyes (2.1.3-1) xenial; urgency=high
* Fix the error if there is no long break
* Add wayland support for do not disturb me plugin
* Fix missing icons and add random order of breaks
* Create desktop entries from the code

View File

@ -367,7 +367,7 @@ msgstr "%s விநாடிகளில் குறுகிய இடைவ
# plugin/notification
msgid "Ready for a long break in %s seconds"
msgstr "{} விநாடிகளில் நீண்ட இடைவேளைக்கு தயாராகுங்கள்"
msgstr "%s விநாடிகளில் நீண்ட இடைவேளைக்கு தயாராகுங்கள்"
# plugin/screensaver
msgid "Screensaver"

View File

@ -71,7 +71,7 @@ along with this program. If not, see &lt;http://www.gnu.org/licenses/&gt;.</pro
<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.2</property>
<property name="label" translatable="yes">Safe Eyes 2.1.3</property>
<property name="justify">center</property>
<attributes>
<attribute name="style" value="normal"/>

View File

@ -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.2"
SAFE_EYES_VERSION = "2.1.3"
class SafeEyes:

View File

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