X-Git-Url: http://git.maemo.org/git/?a=blobdiff_plain;f=src%2Fconstants.py;h=4755b74f4625916a5071c9f6db8808d0fb934fe3;hb=4756b381e27b5eada0e00778b55b916ebc24e4a2;hp=102e6f0e47f666e0f235caf3c89fc5a592f3c51f;hpb=5c3f092871d42dabdad05d674bd7773457f5e294;p=gc-dialer diff --git a/src/constants.py b/src/constants.py index 102e6f0..4755b74 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,4 +1,12 @@ +import os + __pretty_app_name__ = "DialCentral" __app_name__ = "dialcentral" -__version__ = "1.0.3" +__version__ = "1.1.11" +__build__ = 1 __app_magic__ = 0xdeadbeef +_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/%s.log" % (_data_path_, __app_name__) +_notifier_logpath_ = "%s/notifier.log" % _data_path_