forked from endorphant/ttbp
setting version to 0.11.0
parent
6500fc8c92
commit
3c00d793c6
|
@ -1,9 +1,10 @@
|
|||
TO-DO:
|
||||
(goals for stable release)
|
||||
(near future features)
|
||||
|
||||
-set pub/nopub on entries
|
||||
-cw feature
|
||||
-account deletion/export
|
||||
|
||||
(goals for version two)
|
||||
(possible/far future features)
|
||||
|
||||
-stylesheet selector
|
||||
-and make a couple more custom stylesheets
|
||||
|
@ -11,18 +12,30 @@ TO-DO:
|
|||
-direct mail to author
|
||||
-make a nicer entry view wrapper
|
||||
-maybe with a box? and a nicer feed view?
|
||||
|
||||
(flair)
|
||||
|
||||
-command line flags
|
||||
*maybe; not sure i want this to be a feature at all
|
||||
-shortcut to most recent feels, writing entry, seeing own entry
|
||||
-#hashtags
|
||||
-rainbow menu selection
|
||||
-command line flags
|
||||
-shortcut to most recent feels, writing entry, seeing own entry
|
||||
-motd
|
||||
-rss
|
||||
-multiple posts per day
|
||||
|
||||
------
|
||||
|
||||
CHANGELOG:
|
||||
ver 0.11.0
|
||||
-added rainbow menus
|
||||
-added pub/nopub selector
|
||||
-fixed pagination for 2 page lists
|
||||
|
||||
ver 0.10.2
|
||||
-fixing a bunch of things that broke in settings update
|
||||
-announcing centralfeels
|
||||
-general code cleanup pass
|
||||
|
||||
ver 0.10.1
|
||||
-gopher support (with help from ~vilmibm)
|
||||
-fixed settings menu
|
||||
|
||||
ver 0.9.3 (by ~vilmibm)
|
||||
-packaging
|
||||
-easier to contribute to
|
||||
|
|
|
@ -82,7 +82,7 @@ __________________________________________________________
|
|||
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||
| ver 0.10.3 (rainbows) |
|
||||
| ver 0.11.0 (rainbows) |
|
||||
|__________________________________________________________|
|
||||
'''.lstrip()
|
||||
|
||||
|
@ -130,8 +130,8 @@ version 0.9.3 features:
|
|||
* ~login created centralfeels, which is an opt-in collection of
|
||||
html-published feels; create a blank file called '.centralfeels' in
|
||||
your home directory if you'd like to be included!""",
|
||||
"0.10.3": """
|
||||
~[version 0.10.3 update]~
|
||||
"0.11.0": """
|
||||
~[version 0.11.0 update]~
|
||||
|
||||
* rainbow menus are now an option! please message ~endorphant (with
|
||||
screencaps, if possible) if rainbow menus are unreadable with your
|
||||
|
|
12
ttbp/ttbp.py
12
ttbp/ttbp.py
|
@ -49,7 +49,7 @@ from . import chatter
|
|||
from . import gopher
|
||||
from . import util
|
||||
|
||||
__version__ = "0.10.3"
|
||||
__version__ = "0.11.0"
|
||||
__author__ = "endorphant <endorphant@tilde.town)"
|
||||
|
||||
p = inflect.engine()
|
||||
|
@ -1246,8 +1246,8 @@ def update_user_version():
|
|||
else:
|
||||
print("okay, passing on gopher for now. this option is available in settings if you change\nyour mind!")
|
||||
|
||||
if z < 3 or y < 10:
|
||||
# set rainbow menu for 0.10.3
|
||||
if y < 11:
|
||||
# set rainbow menu for 0.11.0
|
||||
print("[ NEW FEATURE ]")
|
||||
SETTINGS.update({"rainbows": toggle_rainbows()})
|
||||
|
||||
|
@ -1264,9 +1264,9 @@ something strange happened to you during this update.
|
|||
# version 0.10.2 patch notes
|
||||
print(config.UPDATES["0.10.2"])
|
||||
|
||||
if z < 3 or y < 10:
|
||||
# version 0.10.2 patch notes
|
||||
print(config.UPDATES["0.10.3"])
|
||||
if y < 11:
|
||||
# version 0.11.1 patch notes
|
||||
print(config.UPDATES["0.11.0"])
|
||||
|
||||
confirm = ""
|
||||
|
||||
|
|
Loading…
Reference in New Issue