correcting a couple minor patch utility issues
parent
9e3cca2b97
commit
d1d4b2cc8f
14
bin/_ttbp.py
14
bin/_ttbp.py
|
@ -931,7 +931,8 @@ def update_version():
|
||||||
print("\nyou're all good to go, "+chatter.say("friend")+"!\n")
|
print("\nyou're all good to go, "+chatter.say("friend")+"!\n")
|
||||||
|
|
||||||
# show patch notes
|
# show patch notes
|
||||||
if userVersion != "0.9.0" and userVersion != "0.9.0b":
|
#if userVersion != "0.9.0" and userVersion != "0.9.0b":
|
||||||
|
if userVersion[0:5] < "0.9.0":
|
||||||
# version 0.9.0 patch notes:
|
# version 0.9.0 patch notes:
|
||||||
print("""
|
print("""
|
||||||
ver. 0.9.0 features:
|
ver. 0.9.0 features:
|
||||||
|
@ -939,14 +940,15 @@ ver. 0.9.0 features:
|
||||||
* documentation browser
|
* documentation browser
|
||||||
""")
|
""")
|
||||||
|
|
||||||
# version 0.9.1 patch notes
|
if userVersion[0:5] < "0.9.1":
|
||||||
print("""
|
# version 0.9.1 patch notes
|
||||||
|
print("""
|
||||||
ver 0.9.1 features:
|
ver 0.9.1 features:
|
||||||
* graffiti wall
|
* graffiti wall
|
||||||
""")
|
""")
|
||||||
|
|
||||||
#####
|
#####
|
||||||
|
|
||||||
if __name__ == '__main__':
|
if __name__ == '__main__':
|
||||||
start()
|
#start()
|
||||||
#print("ttbp beta is out to lunch. bbl.")
|
print("ttbp beta is out to lunch. bbl.")
|
||||||
|
|
|
@ -40,7 +40,7 @@ import chatter
|
||||||
import inflect
|
import inflect
|
||||||
import util
|
import util
|
||||||
|
|
||||||
__version__ = "0.9.0"
|
__version__ = "0.9.1"
|
||||||
__author__ = "endorphant <endorphant@tilde.town)"
|
__author__ = "endorphant <endorphant@tilde.town)"
|
||||||
|
|
||||||
## system globals
|
## system globals
|
||||||
|
|
Loading…
Reference in New Issue