diff --git a/constants.py b/constants.py index 5093d9e..2bfcd83 100644 --- a/constants.py +++ b/constants.py @@ -1,7 +1,10 @@ +from pathlib import Path + antiSpamFile = 'wordlist.txt' blacklistFile = 'word_blacklist.txt' configFile = 'config.json' +faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon' appName = 'CatAsk' -version = '1.4.4' +version = '1.5.0' # id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9 version_id = '-alpha'