koro

an event time scheduler
git clone https://tilde.team/~marisa/repo/koro.git
Log | Files | Refs | README | LICENSE

commit 67d929dfdc60e4dbb34b9aae9ed4add39ac53a80
parent 8df1db8e5affa50b5b3b4a64b31584c2aa960141
Author: mokou <mokou@posteo.de>
Date:   Sun, 31 May 2020 14:27:44 +0200

doc: Add 1.2.0 release notes

Diffstat:
Msrc/pages/Log.svelte | 25+++++++++++++++++++++++--
1 file changed, 23 insertions(+), 2 deletions(-)

diff --git a/src/pages/Log.svelte b/src/pages/Log.svelte @@ -1,10 +1,31 @@ <script> </script> +<a href="/" class="text-blue-600 mb-3">Back to index</a> + <h1 class="text-5xl font-serif font-extrabold">koro Update Log</h1> <section class="max-w-xl mb-3 new"> - <h2 class="text-2xl" name="110">Version 1.1.0</h2> + <h2 class="text-2xl" id="120">Version 1.2.0</h2> + <ul class="list-disc ml-4 pb-2"> + <li> + Added online-only syncing as a fallback method. Koro usually uses a local, in-browser database to store data before + it's uploaded to our server database, but doing that can be iffy and straight up not work for some people (due to browsers + being inconsistent in implementations). If for whatever reason that ends up happening, Koro will now prefer directly + using our server database. This means that you won't be able to use offline event creation anymore, but I hope this + doesn't happen to very many people, and it's still better than not being able to use the website at all. + </li> + <li> + Koro is now responsive! You can use it on your phone and it won't completely break. The response view has been simplified if you're + on mobile or have an event with a lot of possible times, too. + </li> + <li>A notice is now displayed on the index page if you're offline.</li> + <li>You can now view all possible times in the response grid view, where previously it would only show up to 9.</li> + <li>Added a 'back to index' link for this page.</li> +</section> + +<section class="max-w-xl mb-3"> + <h2 class="text-2xl" id="110">Version 1.1.0</h2> <ul class="list-disc ml-4"> <li>Added the ability to convert between AM/PM and 24-Hour display. You can toggle this in the site footer.</li> <li>Added this update log!</li> @@ -13,7 +34,7 @@ </section> <section class="max-w-xl pl-3"> - <h2 class="text-2xl" name="100">Version 1.0.0</h2> + <h2 class="text-2xl" id="100">Version 1.0.0</h2> <ul class="list-disc ml-4"> <li>Initial release!</li> </ul>