update to version 0.12.1
parent
41460b4066
commit
52d394f432
|
@ -87,7 +87,7 @@ ___________________________________________________________
|
|||
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||
| <gan jue; to feel> ver 0.12.0 |
|
||||
| <gan jue; to feel> ver 0.12.1 |
|
||||
|__________________________________________________________|
|
||||
'''.lstrip()
|
||||
# ~ u n s t a b l e e x p e r i m e n t a l b r a n c h ~
|
||||
|
|
12
ttbp/ttbp.py
12
ttbp/ttbp.py
|
@ -51,7 +51,7 @@ from . import chatter
|
|||
from . import gopher
|
||||
from . import util
|
||||
|
||||
__version__ = "0.12.0"
|
||||
__version__ = "0.12.1"
|
||||
__author__ = "endorphant <endorphant@tilde.town)"
|
||||
|
||||
p = inflect.engine()
|
||||
|
@ -1880,15 +1880,15 @@ something strange happened to you during this update.
|
|||
# version 0.11.0 patch notes
|
||||
print(config.UPDATES["0.11.0"])
|
||||
|
||||
if y < 11 or z < 1:
|
||||
if y < 11 and z < 1:
|
||||
# version 0.11.1 patch notes
|
||||
print(config.UPDATES["0.11.1"])
|
||||
|
||||
if y < 11 or z < 2:
|
||||
if y < 11 and z < 2:
|
||||
# version 0.11.2 patch notes
|
||||
print(config.UPDATES["0.11.2"])
|
||||
|
||||
if y < 11 or z < 3:
|
||||
if y < 11 and z < 3:
|
||||
# version 0.11.3 patch notes
|
||||
print(config.UPDATES["0.11.3"])
|
||||
|
||||
|
@ -1896,6 +1896,10 @@ something strange happened to you during this update.
|
|||
# version 0.12.0 patch notes
|
||||
print(config.UPDATES["0.12.0"])
|
||||
|
||||
if z < 1:
|
||||
# version 0.12.1 patch notes
|
||||
print(config.UPDATES["0.12.1"])
|
||||
|
||||
confirm = ""
|
||||
|
||||
while confirm not in ("x", "<x>", "X", "<X>"):
|
||||
|
|
Loading…
Reference in New Issue