setting version to 0.11.0

This commit is contained in:
Vincent Zeng 2018-01-02 23:31:17 -05:00
父節點 6500fc8c92
當前提交 3c00d793c6
共有 3 個檔案被更改,包括 32 行新增19 行删除

查看文件

@ -1,9 +1,10 @@
TO-DO: 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 -stylesheet selector
-and make a couple more custom stylesheets -and make a couple more custom stylesheets
@ -11,18 +12,30 @@ TO-DO:
-direct mail to author -direct mail to author
-make a nicer entry view wrapper -make a nicer entry view wrapper
-maybe with a box? and a nicer feed view? -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 -#hashtags
-rainbow menu selection -command line flags
-shortcut to most recent feels, writing entry, seeing own entry
-motd
-rss
-multiple posts per day
------ ------
CHANGELOG: 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) ver 0.9.3 (by ~vilmibm)
-packaging -packaging
-easier to contribute to -easier to contribute to

查看文件

@ -82,7 +82,7 @@ __________________________________________________________
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ | | ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ | | |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ | | | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
| ver 0.10.3 (rainbows) | | ver 0.11.0 (rainbows) |
|__________________________________________________________| |__________________________________________________________|
'''.lstrip() '''.lstrip()
@ -130,8 +130,8 @@ version 0.9.3 features:
* ~login created centralfeels, which is an opt-in collection of * ~login created centralfeels, which is an opt-in collection of
html-published feels; create a blank file called '.centralfeels' in html-published feels; create a blank file called '.centralfeels' in
your home directory if you'd like to be included!""", your home directory if you'd like to be included!""",
"0.10.3": """ "0.11.0": """
~[version 0.10.3 update]~ ~[version 0.11.0 update]~
* rainbow menus are now an option! please message ~endorphant (with * rainbow menus are now an option! please message ~endorphant (with
screencaps, if possible) if rainbow menus are unreadable with your screencaps, if possible) if rainbow menus are unreadable with your

查看文件

@ -49,7 +49,7 @@ from . import chatter
from . import gopher from . import gopher
from . import util from . import util
__version__ = "0.10.3" __version__ = "0.11.0"
__author__ = "endorphant <endorphant@tilde.town)" __author__ = "endorphant <endorphant@tilde.town)"
p = inflect.engine() p = inflect.engine()
@ -1246,8 +1246,8 @@ def update_user_version():
else: else:
print("okay, passing on gopher for now. this option is available in settings if you change\nyour mind!") print("okay, passing on gopher for now. this option is available in settings if you change\nyour mind!")
if z < 3 or y < 10: if y < 11:
# set rainbow menu for 0.10.3 # set rainbow menu for 0.11.0
print("[ NEW FEATURE ]") print("[ NEW FEATURE ]")
SETTINGS.update({"rainbows": toggle_rainbows()}) SETTINGS.update({"rainbows": toggle_rainbows()})
@ -1264,9 +1264,9 @@ something strange happened to you during this update.
# version 0.10.2 patch notes # version 0.10.2 patch notes
print(config.UPDATES["0.10.2"]) print(config.UPDATES["0.10.2"])
if z < 3 or y < 10: if y < 11:
# version 0.10.2 patch notes # version 0.11.1 patch notes
print(config.UPDATES["0.10.3"]) print(config.UPDATES["0.11.0"])
confirm = "" confirm = ""