From: Ed Page Date: Thu, 1 Sep 2011 23:56:10 +0000 (-0500) Subject: Fixing background alarms as well as bumping to 1.3.9 X-Git-Url: http://vcs.maemo.org/git/?p=gc-dialer;a=commitdiff_plain;h=d6bf8ee15f782ba81070746c8788680c0672d08a Fixing background alarms as well as bumping to 1.3.9 --- diff --git a/dialcentral/alarm_handler.py b/dialcentral/alarm_handler.py index 16ab6eb..31c0361 100644 --- a/dialcentral/alarm_handler.py +++ b/dialcentral/alarm_handler.py @@ -98,7 +98,7 @@ class _FremantleAlarmHandler(object): _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 @@ -180,7 +180,7 @@ class _DiabloAlarmHandler(object): _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): diff --git a/dialcentral/constants.py b/dialcentral/constants.py index 0336b0c..412d176 100644 --- a/dialcentral/constants.py +++ b/dialcentral/constants.py @@ -1,6 +1,6 @@ __pretty_app_name__ = "DialCentral" __app_name__ = "dialcentral" -__version__ = "1.3.8" +__version__ = "1.3.9" __build__ = 0 __app_magic__ = 0xdeadbeef diff --git a/setup.py b/setup.py index 024ece9..b56587d 100755 --- a/setup.py +++ b/setup.py @@ -37,7 +37,7 @@ ICON_CATEGORY="apps" 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"