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
|
* Fix random crash
|
||||||
|
|
||||||
|
* Use system language if available
|
||||||
|
|
||||||
|
* Fix disable menu issue in Elementary OS
|
||||||
|
|
||||||
* Fix long breaks in hours
|
* Fix long breaks in hours
|
||||||
|
|
||||||
* Fix locale time format issue
|
* Fix locale time format issue
|
||||||
|
|
|
@ -17,10 +17,11 @@ Description: Safe Eyes
|
||||||
- Short breaks with eye exercises
|
- Short breaks with eye exercises
|
||||||
- Long breaks to change physical position and to warm up
|
- Long breaks to change physical position and to warm up
|
||||||
- Strict break for those who are addicted to computer
|
- Strict break for those who are addicted to computer
|
||||||
- Highly customizable
|
- Do not disturb when working with full-screen applications( Eg: Watching movies)
|
||||||
- Do not disturb when working with fullscreen applications( Eg: Watching movies)
|
|
||||||
- Notifications before every break
|
- Notifications before every break
|
||||||
- Optional audible alert at the end of 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
|
- Smart pause and resume based on system idle time
|
||||||
- Multi-monitor support
|
- Multi-monitor support
|
||||||
|
- Plugins to utilize Safe Eyes
|
||||||
- Elegant and customizable design
|
- Elegant and customizable design
|
||||||
|
|
|
@ -44,7 +44,7 @@ system_style_sheet_path = os.path.join(Utility.bin_directory, "config/style/safe
|
||||||
|
|
||||||
is_active = True
|
is_active = True
|
||||||
CONFIGURATION_VERSION = 4
|
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.
|
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(
|
setuptools.setup(
|
||||||
name="safeeyes",
|
name="safeeyes",
|
||||||
version="1.2.0",
|
version="1.2.0a1",
|
||||||
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
description="Protect your eyes from eye strain using this continuous breaks reminder.",
|
||||||
long_description=long_description,
|
long_description=long_description,
|
||||||
author="Gobinath Loganathan",
|
author="Gobinath Loganathan",
|
||||||
|
|
|
@ -15,7 +15,7 @@ Comment[es]=Protege tus ojos de la fatiga ocular
|
||||||
Comment[ru]=Защитите свои глаза от зрительного перенапряжения
|
Comment[ru]=Защитите свои глаза от зрительного перенапряжения
|
||||||
Exec=safeeyes
|
Exec=safeeyes
|
||||||
Icon=safeeyes
|
Icon=safeeyes
|
||||||
Version=1.2
|
Version=1.2.0
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Type=Application
|
Type=Application
|
||||||
Categories=Utility;
|
Categories=Utility;
|
||||||
|
|
Loading…
Reference in New Issue