This commit is contained in:
ed 2021-12-07 01:17:56 +01:00
parent 04b9e21330
commit abc404a5b7
3 changed files with 4 additions and 2 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8 # coding: utf-8
VERSION = (1, 1, 5) VERSION = (1, 1, 6)
CODENAME = "opus" CODENAME = "opus"
BUILD_DT = (2021, 12, 4) BUILD_DT = (2021, 12, 7)
S_VERSION = ".".join(map(str, VERSION)) S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -51,6 +51,7 @@ class Cfg(Namespace):
mte="a", mte="a",
mth="", mth="",
textfiles="", textfiles="",
doctitle="",
hist=None, hist=None,
no_idx=None, no_idx=None,
no_hash=None, no_hash=None,

View file

@ -23,6 +23,7 @@ class Cfg(Namespace):
"mtp": [], "mtp": [],
"mte": "a", "mte": "a",
"mth": "", "mth": "",
"doctitle": "",
"hist": None, "hist": None,
"no_idx": None, "no_idx": None,
"no_hash": None, "no_hash": None,