Skip to content

Commit 522fce9

Browse files
committed
Prepare alpha version 1.2.0a1 release
1 parent ee8961d commit 522fce9

8 files changed

+32
-13
lines changed

debian/changelog

+24-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,23 @@
1-
safeeyes (1.2.0-1) xenial; urgency=medium
1+
safeeyes (1.2.0a1-1) xenial; urgency=low
2+
3+
* Move to Python 3
4+
5+
* Add plugin support
6+
7+
* Add custom breaks
8+
9+
* Add break image
10+
11+
* Add lock screen support
12+
13+
* Prevent disabling Safe Eyes after notification
214

315
* Fix random crash
416

17+
* Use system language if available
18+
19+
* Fix disable menu issue in Elementary OS
20+
521
* Fix long breaks in hours
622

723
* Fix locale time format issue
@@ -19,21 +35,21 @@ safeeyes (1.2.0-1) xenial; urgency=medium
1935
* Add next break information to tray menu
2036

2137
* Support translation
22-
38+
2339
* Adding multiscreen support & handling system suspend
24-
40+
2541
* Fixing bug in Ubuntu MATE environment
26-
42+
2743
* Removing apscheduler dependency
2844

2945
* Fixing seconds instead of minutes bug
30-
46+
3147
* Bug fixes for Ubuntu 14.04 and keyboard lock during break
32-
48+
3349
* Reducing minimal Python requirement
34-
50+
3551
* Fixing appindicator version mismatch
36-
52+
3753
* Fixing apscheduler version mismatch
3854

3955
* Initial release

debian/control

+3-2
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,11 @@ Description: Safe Eyes
1717
- Short breaks with eye exercises
1818
- Long breaks to change physical position and to warm up
1919
- Strict break for those who are addicted to computer
20-
- Highly customizable
21-
- Do not disturb when working with fullscreen applications( Eg: Watching movies)
20+
- Do not disturb when working with full-screen applications( Eg: Watching movies)
2221
- Notifications before every break
2322
- Optional audible alert at the end of break
23+
- Option to lock screen after long breaks
2424
- Smart pause and resume based on system idle time
2525
- Multi-monitor support
26+
- Plugins to utilize Safe Eyes
2627
- Elegant and customizable design

safeeyes/__main__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444

4545
is_active = True
4646
CONFIGURATION_VERSION = 4
47-
SAFE_EYES_VERSION = "1.2.0"
47+
SAFE_EYES_VERSION = "1.2.0a1"
4848

4949
"""
5050
Listen to tray icon Settings action and send the signal to Settings dialog.
812 Bytes
Loading
Loading

setup.cfg

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[metadata]
2+
description-file = README.md

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ def _data_files(path):
2323

2424
setuptools.setup(
2525
name="safeeyes",
26-
version="1.2.0",
26+
version="1.2.0a1",
2727
description="Protect your eyes from eye strain using this continuous breaks reminder.",
2828
long_description=long_description,
2929
author="Gobinath Loganathan",

share/applications/safeeyes.desktop

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Comment[es]=Protege tus ojos de la fatiga ocular
1515
Comment[ru]=Защитите свои глаза от зрительного перенапряжения
1616
Exec=safeeyes
1717
Icon=safeeyes
18-
Version=1.2
18+
Version=1.2.0
1919
Terminal=false
2020
Type=Application
2121
Categories=Utility;

0 commit comments

Comments
 (0)