Skip to content

Commit ea2b186

Browse files
committed
Prepare alpha version 1.2.0a6 release
1 parent cf97012 commit ea2b186

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

Diff for: debian/changelog

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
safeeyes (1.2.0a5-1) xenial; urgency=low
1+
safeeyes (1.2.0a6-1) xenial; urgency=low
22

33
* Move to Python 3
44

Diff for: 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.0a5"
47+
SAFE_EYES_VERSION = "1.2.0a6"
4848

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

Diff for: setup.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -19,17 +19,17 @@ def _data_files(path):
1919
for root, dirs, files in os.walk(path):
2020
if not files:
2121
continue
22-
yield (root, [os.path.join(root, f) for f in files])
22+
yield (os.path.join('/usr', root), [os.path.join(root, f) for f in files])
2323

2424
setuptools.setup(
2525
name="safeeyes",
26-
version="1.2.0a5",
26+
version="1.2.0a6",
2727
description="Protect your eyes from eye strain using this continuous breaks reminder.",
2828
long_description=long_description,
2929
author="Gobinath Loganathan",
3030
author_email="[email protected]",
3131
url="https://github.com/slgobinath/SafeEyes",
32-
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a5.tar.gz",
32+
download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a6.tar.gz",
3333
packages=setuptools.find_packages(),
3434
package_data={'safeeyes': ['config/*.json',
3535
'config/style/*.css',

0 commit comments

Comments
 (0)