Release v2.1.1

This commit is contained in:
Gobinath 2020-12-25 19:28:38 -05:00
parent 12b2b0b2a4
commit 41464e4ebc
5 changed files with 8 additions and 5 deletions

4
debian/changelog vendored
View File

@ -1,4 +1,6 @@
safeeyes (2.1.0-1) xenial; urgency=high
safeeyes (2.1.1-1) xenial; urgency=high
* Create desktop entries from the code
* Add Python 3.8 and 3.9 support
* Redesigned settings dialog

View File

@ -109,6 +109,7 @@ def main():
# Initialize the logging
utility.intialize_logging(args.debug)
utility.initialize_platform()
config = Config()
if __running():

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.0</property>
<property name="label" translatable="yes">Safe Eyes 2.1.1</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.0"
SAFE_EYES_VERSION = "2.1.1"
class SafeEyes:

View File

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