diff --git a/debian/changelog b/debian/changelog index e4b8a18..875e0a3 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,4 +1,4 @@ -safeeyes (1.2.0a5-1) xenial; urgency=low +safeeyes (1.2.0a6-1) xenial; urgency=low * Move to Python 3 diff --git a/safeeyes/__main__.py b/safeeyes/__main__.py index 3ce5061..f71bf88 100755 --- a/safeeyes/__main__.py +++ b/safeeyes/__main__.py @@ -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.0a5" +SAFE_EYES_VERSION = "1.2.0a6" """ Listen to tray icon Settings action and send the signal to Settings dialog. diff --git a/setup.py b/setup.py index 433244f..c764c78 100644 --- a/setup.py +++ b/setup.py @@ -19,17 +19,17 @@ def _data_files(path): for root, dirs, files in os.walk(path): if not files: continue - yield (root, [os.path.join(root, f) for f in files]) + yield (os.path.join('/usr', root), [os.path.join(root, f) for f in files]) setuptools.setup( name="safeeyes", - version="1.2.0a5", + version="1.2.0a6", description="Protect your eyes from eye strain using this continuous breaks reminder.", long_description=long_description, author="Gobinath Loganathan", author_email="slgobinath@gmail.com", url="https://github.com/slgobinath/SafeEyes", - download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a5.tar.gz", + download_url="https://github.com/slgobinath/SafeEyes/archive/v1.2.0a6.tar.gz", packages=setuptools.find_packages(), package_data={'safeeyes': ['config/*.json', 'config/style/*.css',