forked from endorphant/ttbp
adding update text
parent
1c4165468e
commit
1386968c34
|
@ -85,7 +85,7 @@ ___________________________________________________________
|
||||||
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
||||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||||
| ver 0.12.3b (delete your account) |
|
| ver 0.12.4b (purgatory) |
|
||||||
|__________________________________________________________|
|
|__________________________________________________________|
|
||||||
~ u n s t a b l e e x p e r i m e n t a l b r a n c h ~
|
~ u n s t a b l e e x p e r i m e n t a l b r a n c h ~
|
||||||
'''.lstrip()
|
'''.lstrip()
|
||||||
|
@ -96,6 +96,8 @@ credits = """
|
||||||
ttbp was written for tilde.town by ~endorphant in python. the codebase is
|
ttbp was written for tilde.town by ~endorphant in python. the codebase is
|
||||||
publicly available on github at https://github.com/modgethanc/ttbp
|
publicly available on github at https://github.com/modgethanc/ttbp
|
||||||
|
|
||||||
|
tips for development are accepted at https://liberapay.com/modgethanc/
|
||||||
|
|
||||||
other contributors:
|
other contributors:
|
||||||
~vilmibm, packaging help and gopher support
|
~vilmibm, packaging help and gopher support
|
||||||
~sanqui, the bug swatter
|
~sanqui, the bug swatter
|
||||||
|
@ -199,6 +201,33 @@ version 0.9.3 features:
|
||||||
styling on your html page. the default permalink style has been added to
|
styling on your html page. the default permalink style has been added to
|
||||||
your current css file, and shouldn't change the appearance of your page.
|
your current css file, and shouldn't change the appearance of your page.
|
||||||
|
|
||||||
if you're not using custom css, don't worry about this!"""
|
if you're not using custom css, don't worry about this!""",
|
||||||
|
"0.12.0": """
|
||||||
|
~[version 0.12.0 update]~
|
||||||
|
|
||||||
|
a lot of new stuff this time! from the main menu, option (1) is now called
|
||||||
|
"manage your feels", which contains an expanded set of tools for organizing
|
||||||
|
your feels:
|
||||||
|
* read over feels (a list of all your entries)
|
||||||
|
* modify feels publishing (toggle privacy on individual entries)
|
||||||
|
* backup your feels (makes a .tar.gz of all your entries)
|
||||||
|
* import a feels backup (unpacks a backup into your feels)
|
||||||
|
* bury some feels (hide individual entries from view)
|
||||||
|
* delete feels by day (permanently remove individual entries)
|
||||||
|
* purge all feels (permanently remove all entries)
|
||||||
|
* wipe feels account (permanently remove everything associated with
|
||||||
|
ttbp)
|
||||||
|
|
||||||
|
each of these tools has expanded descriptions and instructions from the
|
||||||
|
menu, so check them out if you're curious! all of the data management
|
||||||
|
actions have confirmation actions, so it's easy to cancel if you
|
||||||
|
accidentally access a tool.
|
||||||
|
|
||||||
|
also, i've updated the documentation file to reflect recent feature changes,
|
||||||
|
including some more details about how things work under the hood.
|
||||||
|
|
||||||
|
lastly, i just wanted to mention that i do accept tips for my dev work at
|
||||||
|
https://liberapay.com/modgethanc/, but please don't feel pressured to donate
|
||||||
|
unless it's financially viable to you!
|
||||||
|
"""
|
||||||
}
|
}
|
||||||
|
|
|
@ -1210,7 +1210,7 @@ none of your feels will be viewable outside of this server)"""
|
||||||
pub = "(nopub)"
|
pub = "(nopub)"
|
||||||
entries.append(""+entry[4]+" ("+p.no("word", entry[2])+") "+"\t"+pub)
|
entries.append(""+entry[4]+" ("+p.no("word", entry[2])+") "+"\t"+pub)
|
||||||
|
|
||||||
choice = menu_handler(entries, "pick an entry from the list, or type 'q' to go back: ", 10, SETTINGS.get("rainbows", False), prompt+"\n\n"+nopub_note)
|
choice = menu_handler(entries, "pick an entry from the list to toggle nopub status, or type 'q' to go back: ", 10, SETTINGS.get("rainbows", False), prompt+"\n\n"+nopub_note)
|
||||||
|
|
||||||
if choice is not False:
|
if choice is not False:
|
||||||
target = os.path.basename(metas[choice][0])
|
target = os.path.basename(metas[choice][0])
|
||||||
|
@ -1736,6 +1736,10 @@ something strange happened to you during this update.
|
||||||
# version 0.11.3 patch notes
|
# version 0.11.3 patch notes
|
||||||
print(config.UPDATES["0.11.3"])
|
print(config.UPDATES["0.11.3"])
|
||||||
|
|
||||||
|
if y < 12:
|
||||||
|
# version 0.12.0 patch notes
|
||||||
|
print(config.UPDATES["0.12.0"])
|
||||||
|
|
||||||
confirm = ""
|
confirm = ""
|
||||||
|
|
||||||
while confirm not in ("x", "<x>", "X", "<X>"):
|
while confirm not in ("x", "<x>", "X", "<X>"):
|
||||||
|
|
Loading…
Reference in New Issue