correcting a couple minor patch utility issues

master
endorphant 2016-05-31 14:55:45 -04:00
parent 9e3cca2b97
commit d1d4b2cc8f
2 changed files with 9 additions and 7 deletions

View File

@ -931,7 +931,8 @@ def update_version():
print("\nyou're all good to go, "+chatter.say("friend")+"!\n")
# 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:
print("""
ver. 0.9.0 features:
@ -939,14 +940,15 @@ ver. 0.9.0 features:
* documentation browser
""")
# version 0.9.1 patch notes
print("""
if userVersion[0:5] < "0.9.1":
# version 0.9.1 patch notes
print("""
ver 0.9.1 features:
* graffiti wall
""")
""")
#####
if __name__ == '__main__':
start()
#print("ttbp beta is out to lunch. bbl.")
#start()
print("ttbp beta is out to lunch. bbl.")

View File

@ -40,7 +40,7 @@ import chatter
import inflect
import util
__version__ = "0.9.0"
__version__ = "0.9.1"
__author__ = "endorphant <endorphant@tilde.town)"
## system globals