X-Git-Url: http://git.maemo.org/git/?p=gc-dialer;a=blobdiff_plain;f=src%2Fconstants.py;h=c8a0902ac480d5ceb1479477ed867fe7b423aa0e;hp=28004ff0756d3148b1e41753b5e619e8cb5dea61;hb=8f7c7e07f7b8101449b9bc55c7dc8588d9683b64;hpb=ef2c2d32f3311605e9797aa75fab43bd4a10354b diff --git a/src/constants.py b/src/constants.py index 28004ff..c8a0902 100644 --- a/src/constants.py +++ b/src/constants.py @@ -2,9 +2,12 @@ import os __pretty_app_name__ = "DialCentral" __app_name__ = "dialcentral" -__version__ = "1.0.8" -__build__ = 6 +__version__ = "1.3.5" +__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_ -_user_logpath_ = "%s/dialcentral.log" % _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_ +IS_MAEMO = True