bump version, add a new constant

This commit is contained in:
mst 2024-10-19 23:56:06 +03:00
parent 5ee3422926
commit b24e3ced2d

View file

@ -2,9 +2,12 @@ from pathlib import Path
antiSpamFile = 'wordlist.txt' antiSpamFile = 'wordlist.txt'
blacklistFile = 'word_blacklist.txt' blacklistFile = 'word_blacklist.txt'
# reserved for 1.7.0 or later
# ipBlacklistFile = 'ip_blacklist.txt'
configFile = 'config.json' configFile = 'config.json'
faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon' faviconDir = Path.cwd() / 'static' / 'icons' / 'favicon'
emojiPath = Path.cwd() / 'static' / 'emojis'
appName = 'CatAsk' appName = 'CatAsk'
version = '1.5.6' version = '1.6.0'
# id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9 # id (identifier) is to be interpreted as described in https://semver.org/#spec-item-9
version_id = '-alpha' version_id = '-alpha'