Fixing background alarms as well as bumping to 1.3.9
authorEd Page <eopage@byu.net>
Thu, 1 Sep 2011 23:56:10 +0000 (18:56 -0500)
committerEd Page <eopage@byu.net>
Thu, 1 Sep 2011 23:56:10 +0000 (18:56 -0500)
dialcentral/alarm_handler.py
dialcentral/constants.py
setup.py

index 16ab6eb..31c0361 100644 (file)
@@ -98,7 +98,7 @@ class _FremantleAlarmHandler(object):
        _INVALID_COOKIE = -1
        _REPEAT_FOREVER = -1
        _TITLE = "Dialcentral Notifications"
        _INVALID_COOKIE = -1
        _REPEAT_FOREVER = -1
        _TITLE = "Dialcentral Notifications"
-       _LAUNCHER = os.path.abspath(os.path.join(os.path.dirname(__file__), "alarm_notify.py"))
+       _LAUNCHER = "python %s" % os.path.abspath(os.path.join(os.path.dirname(__file__), "alarm_notify.py"))
 
        def __init__(self):
                self._recurrence = 5
 
        def __init__(self):
                self._recurrence = 5
@@ -180,7 +180,7 @@ class _DiabloAlarmHandler(object):
 
        _INVALID_COOKIE = -1
        _TITLE = "Dialcentral Notifications"
 
        _INVALID_COOKIE = -1
        _TITLE = "Dialcentral Notifications"
-       _LAUNCHER = os.path.abspath(os.path.join(os.path.dirname(__file__), "alarm_notify.py"))
+       _LAUNCHER = "python %s" % os.path.abspath(os.path.join(os.path.dirname(__file__), "alarm_notify.py"))
        _REPEAT_FOREVER = -1
 
        def __init__(self):
        _REPEAT_FOREVER = -1
 
        def __init__(self):
index 0336b0c..412d176 100644 (file)
@@ -1,6 +1,6 @@
 __pretty_app_name__ = "DialCentral"
 __app_name__ = "dialcentral"
 __pretty_app_name__ = "DialCentral"
 __app_name__ = "dialcentral"
-__version__ = "1.3.8"
+__version__ = "1.3.9"
 __build__ = 0
 __app_magic__ = 0xdeadbeef
 
 __build__ = 0
 __app_magic__ = 0xdeadbeef
 
index 024ece9..b56587d 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -37,7 +37,7 @@ ICON_CATEGORY="apps"
 ICON_SIZES=[32,48]
 #[[[end]]] (checksum: 6b362845c8509854ec12f330afd9c7b7)
 
 ICON_SIZES=[32,48]
 #[[[end]]] (checksum: 6b362845c8509854ec12f330afd9c7b7)
 
-CHANGES = """* Protecting against unsupported date formats
+CHANGES = """* Fixing alarm support (distutils removes the executable flag from python modules)
 """.strip()
 BUGTRACKER_URL = "https://bugs.maemo.org/enter_bug.cgi?product=Dialcentral"
 
 """.strip()
 BUGTRACKER_URL = "https://bugs.maemo.org/enter_bug.cgi?product=Dialcentral"