updating to 0.12.2 with pagination patch notes
parent
0dd67a0311
commit
3e805d4df3
|
@ -258,3 +258,4 @@ thanks to:
|
||||||
* ~vilmibm, packaging help and gopher support
|
* ~vilmibm, packaging help and gopher support
|
||||||
* ~sanqui, the bug swatter
|
* ~sanqui, the bug swatter
|
||||||
* ~sinacutie, for css updates
|
* ~sinacutie, for css updates
|
||||||
|
* ~epicmorphism, for fixing pagination scrolling
|
||||||
|
|
|
@ -87,7 +87,7 @@ ___________________________________________________________
|
||||||
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
| ____ ____ ____ _ ____ ____ _ _ ____ _ _ _ ____ |
|
||||||
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
| |___ |___ |___ | [__ |___ |\ | | __ | |\ | |___ |
|
||||||
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
| | |___ |___ |___ ___] |___ | \| |__] | | \| |___ |
|
||||||
| <gan jue; to feel> ver 0.12.1 |
|
| <gan jue; to feel> ver 0.12.2 |
|
||||||
|__________________________________________________________|
|
|__________________________________________________________|
|
||||||
'''.lstrip()
|
'''.lstrip()
|
||||||
# ~ 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 ~
|
||||||
|
@ -309,5 +309,19 @@ version 0.9.3 features:
|
||||||
thanks for those of your who've written me with feedback!
|
thanks for those of your who've written me with feedback!
|
||||||
|
|
||||||
keep feelin' together <3
|
keep feelin' together <3
|
||||||
|
""",
|
||||||
|
"0.12.2":"""
|
||||||
|
~[version 0.12.2 update]~
|
||||||
|
|
||||||
|
bug fix: ~epicmorphism helped out with fixing the pagination bug! now, when
|
||||||
|
you scroll through a list of entries, it'll correctly return you to the
|
||||||
|
page you were on if you open and close an item. thanks so much, friend <3
|
||||||
|
|
||||||
|
thanks to everyone writing me with feedback; i've been real busy lately,
|
||||||
|
and i might not get to making improvements or responding to mail for a
|
||||||
|
while :(
|
||||||
|
|
||||||
|
feel on!
|
||||||
|
~endo
|
||||||
"""
|
"""
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@ from . import chatter
|
||||||
from . import gopher
|
from . import gopher
|
||||||
from . import util
|
from . import util
|
||||||
|
|
||||||
__version__ = "0.12.1"
|
__version__ = "0.12.2"
|
||||||
__author__ = "endorphant <endorphant@tilde.town)"
|
__author__ = "endorphant <endorphant@tilde.town)"
|
||||||
|
|
||||||
p = inflect.engine()
|
p = inflect.engine()
|
||||||
|
@ -1907,6 +1907,10 @@ something strange happened to you during this update.
|
||||||
# version 0.12.1 patch notes
|
# version 0.12.1 patch notes
|
||||||
print(config.UPDATES["0.12.1"])
|
print(config.UPDATES["0.12.1"])
|
||||||
|
|
||||||
|
if z < 2:
|
||||||
|
# version 0.12.2 patch notes
|
||||||
|
print(config.UPDATES["0.12.2"])
|
||||||
|
|
||||||
confirm = ""
|
confirm = ""
|
||||||
|
|
||||||
while confirm not in ("x", "<x>", "X", "<X>"):
|
while confirm not in ("x", "<x>", "X", "<X>"):
|
||||||
|
|
Loading…
Reference in New Issue