X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fconstants.py;h=5d6a7aa60e65036f83c25200ad7389cb0bc5e7eb;hb=41a64cbdfa95446c98f401b2b972bf6bf654ea78;hp=d4b6909e0360615fe945d8f1b315bbbef5cc7551;hpb=2a0749d2ff151931607082faa40da7911c67442d;p=gc-dialer diff --git a/src/constants.py b/src/constants.py index d4b6909..5d6a7aa 100644 --- a/src/constants.py +++ b/src/constants.py @@ -2,11 +2,12 @@ import os __pretty_app_name__ = "DialCentral" __app_name__ = "dialcentral" -__version__ = "1.0.10" -__build__ = 6 +__version__ = "1.2.2" +__build__ = 0 __app_magic__ = 0xdeadbeef -_data_path_ = os.path.join(os.path.expanduser("~"), ".dialcentral") +_data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__) _user_settings_ = "%s/settings.ini" % _data_path_ _custom_notifier_settings_ = "%s/notifier.ini" % _data_path_ -_user_logpath_ = "%s/dialcentral.log" % _data_path_ +_user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__) _notifier_logpath_ = "%s/notifier.log" % _data_path_ +IS_MAEMO = True