Prepare alpha version 1.2.0a1 release
This commit is contained in:
parent
ee8961d787
commit
522fce90ae
|
@ -1,7 +1,23 @@
|
|||
safeeyes (1.2.0-1) xenial; urgency=medium
|
||||
safeeyes (1.2.0a1-1) xenial; urgency=low
|
||||
|
||||
* Move to Python 3
|
||||
|
||||
* Add plugin support
|
||||
|
||||
* Add custom breaks
|
||||
|
||||
* Add break image
|
||||
|
||||
* Add lock screen support
|
||||
|
||||
* Prevent disabling Safe Eyes after notification
|
||||
|
||||
* Fix random crash
|
||||
|
||||
* Use system language if available
|
||||
|
||||
* Fix disable menu issue in Elementary OS
|
||||
|
||||
* Fix long breaks in hours
|
||||
|
||||
* Fix locale time format issue
|
||||
|
@ -19,21 +35,21 @@ safeeyes (1.2.0-1) xenial; urgency=medium
|
|||
* Add next break information to tray menu
|
||||
|
||||
* Support translation
|
||||
|
||||
|
||||
* Adding multiscreen support & handling system suspend
|
||||
|
||||
|
||||
* Fixing bug in Ubuntu MATE environment
|
||||
|
||||
|
||||
* Removing apscheduler dependency
|
||||
|
||||
* Fixing seconds instead of minutes bug
|
||||
|
||||
|
||||
* Bug fixes for Ubuntu 14.04 and keyboard lock during break
|
||||
|
||||
|
||||
* Reducing minimal Python requirement
|
||||
|
||||
|
||||
* Fixing appindicator version mismatch
|
||||
|
||||
|
||||
* Fixing apscheduler version mismatch
|
||||
|
||||
* Initial release
|
||||
|
|
|
@ -17,10 +17,11 @@ Description: Safe Eyes
|
|||
- Short breaks with eye exercises
|
||||
- Long breaks to change physical position and to warm up
|
||||
- Strict break for those who are addicted to computer
|
||||
- Highly customizable
|
||||
- Do not disturb when working with fullscreen applications( Eg: Watching movies)
|
||||
- Do not disturb when working with full-screen applications( Eg: Watching movies)
|
||||
- Notifications before every break
|
||||
- Optional audible alert at the end of break
|
||||
- Option to lock screen after long breaks
|
||||
- Smart pause and resume based on system idle time
|
||||
- Multi-monitor support
|
||||
- Plugins to utilize Safe Eyes
|
||||
- Elegant and customizable design
|
||||
|
|
|
@ -44,7 +44,7 @@ system_style_sheet_path = os.path.join(Utility.bin_directory, "config/style/safe
|
|||
|
||||
is_active = True
|
||||
CONFIGURATION_VERSION = 4
|
||||
SAFE_EYES_VERSION = "1.2.0"
|
||||
SAFE_EYES_VERSION = "1.2.0a1"
|
||||
|
||||
"""
|
||||
Listen to tray icon Settings action and send the signal to Settings dialog.
|
||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 1.3 KiB After Width: | Height: | Size: 2.1 KiB |
Binary file not shown.
Before Width: | Height: | Size: 1.4 KiB After Width: | Height: | Size: 2.2 KiB |
2
setup.py
2
setup.py
|
@ -23,7 +23,7 @@ def _data_files(path):
|
|||
|
||||
setuptools.setup(
|
||||
name="safeeyes",
|
||||
version="1.2.0",
|
||||
version="1.2.0a1",
|
||||
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
||||
long_description=long_description,
|
||||
author="Gobinath Loganathan",
|
||||
|
|
|
@ -15,7 +15,7 @@ Comment[es]=Protege tus ojos de la fatiga ocular
|
|||
Comment[ru]=Защитите свои глаза от зрительного перенапряжения
|
||||
Exec=safeeyes
|
||||
Icon=safeeyes
|
||||
Version=1.2
|
||||
Version=1.2.0
|
||||
Terminal=false
|
||||
Type=Application
|
||||
Categories=Utility;
|
||||
|
|
Loading…
Reference in New Issue