diff --git a/Cargo.lock b/Cargo.lock index 953689f..44333a7 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -3105,7 +3105,7 @@ dependencies = [ [[package]] name = "wiki-tui" -version = "0.9.1" +version = "0.9.2" dependencies = [ "anyhow", "better-panic", diff --git a/Cargo.toml b/Cargo.toml index 240ff76..cd356fa 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -3,7 +3,7 @@ members = ["wiki-api", "wiki-api-macros"] [package] name = "wiki-tui" -version = "0.9.1" +version = "0.9.2" authors = ["builditluc <37375448+Builditluc@users.noreply.github.com>"] edition = "2018" diff --git a/docs/docs/changelog/index.md b/docs/docs/changelog/index.md index c9225a9..e65ee01 100644 --- a/docs/docs/changelog/index.md +++ b/docs/docs/changelog/index.md @@ -1,13 +1,22 @@ -# Unreleased v0.9.2-pre +# v0.9.2 ## Additions +- Added page caching functionality so returning to previous pages does not require an expensive page re-rendering +- Added a help page for viewing the keybindings - Add up/down as default keymaps for scroll_up/scroll_down +## Change + +- Updated toolchain to 1.91.1 +- src/components/page_viewer.rs now checks for a cached rendering of a page before attempting to render the page from scratch + + ## Fixes - Fix incorrect utf-8 handling in sections - Fix incorrect rendering of search result descriptions +- Fixed invalid User-Agent so the latest release can successfully hit the Wikipedia API # v0.9.1 (Thu Dec 5 2024)