From 59b4648cc83a783f3efc0584d93b9b241c99c2fe Mon Sep 17 00:00:00 2001 From: mystie Date: Sat, 28 Sep 2024 00:43:39 +0300 Subject: [PATCH] bump version + favicon dir --- constants.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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'