From 9f166efc2601017ac9cdb6fc7b1586c7ac894781 Mon Sep 17 00:00:00 2001 From: mst Date: Tue, 26 Nov 2024 15:27:08 +0300 Subject: [PATCH] some new constants + bump version --- constants.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/constants.py b/constants.py index fcbe644..773f041 100644 --- a/constants.py +++ b/constants.py @@ -5,9 +5,12 @@ blacklistFile = 'word_blacklist.txt' # reserved for 1.7.0 or later # ipBlacklistFile = 'ip_blacklist.txt' configFile = 'config.json' +exportsFile = 'exports.json' faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon' +tempDir = Path.cwd() / 'static' / 'temp' +exportsDir = Path('static') / 'exports' emojiPath = Path.cwd() / 'static' / 'emojis' appName = 'CatAsk' -version = '1.6.1' +version = '1.7.0' # id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9 version_id = '-alpha'