This commit is contained in:
ed 2022-09-23 22:53:51 +02:00
parent e0039bc1e6
commit 24de360325
2 changed files with 5 additions and 4 deletions

View file

@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (1, 3, 16)
CODENAME = "god dag"
BUILD_DT = (2022, 8, 18)
VERSION = (1, 4, 0)
CODENAME = "mostly reliable"
BUILD_DT = (2022, 9, 23)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View file

@ -98,7 +98,7 @@ class Cfg(Namespace):
def __init__(self, a=None, v=None, c=None):
ka = {}
ex = "e2d e2ds e2dsa e2t e2ts e2tsr e2v e2vu e2vp xdev xvol ed emp force_js ihead no_acode no_athumb no_del no_logues no_mv no_readme no_robots no_scandir no_thumb no_vthumb no_zip nid nih nw"
ex = "e2d e2ds e2dsa e2t e2ts e2tsr e2v e2vu e2vp xdev xvol ed emp force_js ihead magic no_acode no_athumb no_del no_logues no_mv no_readme no_robots no_scandir no_thumb no_vthumb no_zip nid nih nw"
ka.update(**{k: False for k in ex.split()})
ex = "no_rescan no_sendfile no_voldump plain_ip"
@ -160,6 +160,7 @@ class VHttpSrv(object):
def __init__(self):
self.broker = NullBroker()
self.prism = None
self.bans = {}
aliases = ["splash", "browser", "browser2", "msg", "md", "mde"]
self.j2 = {x: J2_FILES for x in aliases}