docs/changelog/0.7.0: update with more items

This commit is contained in:
2026-06-09 11:58:12 +09:00
parent 2018b7e911
commit 36960fdad4
+17 -2
View File
@@ -1,19 +1,34 @@
# v0.7.0 - TBA
Fuzzy kana search is finally here!
Most of the work in this update when into background improvements and optimizations. Here are some of the highlights:
- Total app size went down by about TODO%
- Search speed went up by about TODO%
- Exporting and importing archives will stores at most 100 items in memory at once instead of possibly thousands (depending on the size of your history and library lists).
- Library lists handling will not get significantly slower as you add more items to them anymore.
## New features ✨
- Quick-add-list: the settings menu lets you configure a library list as the "quick-add-list".
- 🔥 Fuzzy kana serach: searching for hiragana/katakana will now also return results that match the opposite kana type.
- For example, searching for `あめ` will give you results for both `あめ` and `アメ`.
- This mode can be toggled on and off in the settings.
- Using fuzzy search results in roughly 2x search speed.
- The search will still try to prefer results that match the exact kana type when both variants are present.
- 🔥 Quick-add-list: the settings menu lets you configure a library list as the "quick-add-list".
- When you double tap on a search result, the item will be added to the quick add list.
- Any search results already added to the quick add list will be marked with a small blue bookmark icon, which should make it easier to keep track of what you've already added.
- Dim kanji on words where the word is most commonly written in kana.
- Optionally underline the part of the word results that matched the search term.
- The language selector under the search bar is working now.
## Changes 🔧
- Rework the archival system
- Archives are now being streamed in chunks, which should reduce memory usage for large archives, as well as letting the UI show progress for import and export.
- The internal format of the archive files have been changed, but it should still be possible to import the old archives (although without any meaningful progress bar).
- The archives now also preserver the order of your library lists, which was not the case before.
- The archives will now also preserve the order of your library lists, which was not the case before.
- Rework the (re)initialization system
- Versioned SQL queries
- TODO: write more here