fix version so version check conditionals don't break
parent
bcb98bc8cb
commit
2e01008838
2
setup.py
2
setup.py
|
@ -4,7 +4,7 @@ from setuptools import setup
|
|||
|
||||
setup(
|
||||
name='ttbp',
|
||||
version='0.10.0',
|
||||
version='0.9.3',
|
||||
description='command line social blogging tool used on tilde.town',
|
||||
url='https://github.com/modgethanc/ttbp',
|
||||
author='~endorphant',
|
||||
|
|
15
ttbp/ttbp.py
15
ttbp/ttbp.py
|
@ -49,7 +49,7 @@ from . import core
|
|||
from . import chatter
|
||||
from . import util
|
||||
|
||||
__version__ = "0.10.0"
|
||||
__version__ = "0.9.3"
|
||||
__author__ = "endorphant <endorphant@tilde.town)"
|
||||
|
||||
p = inflect.engine()
|
||||
|
@ -1099,6 +1099,9 @@ you're all good to go, """+chatter.say("friend")+"""! please contact ~endorphant
|
|||
somehing strange happened to you during this update.
|
||||
""")
|
||||
|
||||
# TODO these conditionals will need to change if we increment the Y level
|
||||
# to 10.
|
||||
|
||||
# show patch notes
|
||||
#if userVersion != "0.9.0" and userVersion != "0.9.0b":
|
||||
if userVersion[0:5] < "0.9.0":
|
||||
|
@ -1126,6 +1129,16 @@ ver 0.9.2 features:
|
|||
* expanded menu for viewing your own feels (further
|
||||
features to be implemented)
|
||||
""")
|
||||
if userVersion[0:5] < "0.9.3":
|
||||
# version 0.9.3 patch notes
|
||||
print()
|
||||
print("""
|
||||
version 0.9.3 features:
|
||||
* ttbp is now packaged, making it easier to contribute to.
|
||||
* things should otherwise be the same!
|
||||
* check out https://github.com/modgethanc/ttbp if you'd like to contribute.
|
||||
* takes advantage of new /var/global
|
||||
""".ltrim())
|
||||
|
||||
#####
|
||||
|
||||
|
|
Loading…
Reference in New Issue