X-Git-Url: http://vcs.maemo.org/git/?a=blobdiff_plain;f=src%2Fconstants.py;h=8b1e5062eb118063e9636be46411880510c807f9;hb=e640631e1f2cd1d9b2587db20b28ae6d5e7606ec;hp=7e95678ec50edf04c0d7adc2079aeb51d09a6ef2;hpb=f3c5ed1e47294a73d2c4ec2be1b9c37f3d1fd034;p=ejpi diff --git a/src/constants.py b/src/constants.py index 7e95678..8b1e506 100644 --- a/src/constants.py +++ b/src/constants.py @@ -1,5 +1,10 @@ +import os + __pretty_app_name__ = "e**(j pi) + 1 = 0" __app_name__ = "ejpi" -__version__ = "0.9.6" -__build__ = 3 +__version__ = "1.0.2" +__build__ = 0 __app_magic__ = 0xdeadbeef +_data_path_ = os.path.join(os.path.expanduser("~"), ".%s" % __app_name__) +_user_settings_ = "%s/settings.ini" % _data_path_ +_user_logpath_ = "%s/%s.log" % (_data_path_, __app_name__)