diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a77596..070ea13 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +### Chores ++ create_release.sh updated, [d4af754ad245540db60177f7b202b3c64519c961] ++ dependencies updated, [03599b46657d38d0c9f25c2ccfd9510f2b98dd84], [aef0c9503e7045a256856aa887d8c8d7722b9936], [f0771eab5d07d141fe7a8997db650f0f65ffe0a7] + +### Features ++ *BREAKING CHANGE* - `scroll_down_many` & `scroll_up_many` removed, `scroll_down_one` `scroll_up_one` renamed `scroll_down`, `scroll_up`, see [example_config](https://github.com/mrjackwills/oxker/tree/main/example_config), [52a04ec1d0b9e4877e304f60a857ebc00f88b4fd] ++ log search feature, closes #72. Use `#` button, remappable via `log_search_mode`, to enter log search mode. Case-sensitive by default, editable in `config.toml` with `log_search_case_sensitive` entry. Customise colours via `[colors.log_search]` entries, again see see [example_config](https://github.com/mrjackwills/oxker/tree/main/example_config), [96d9469623a7c90b79aa8d82abf587290343ad37], [a2316a9cac270790920a1ebd1be6532d51aba77c] ++ `term` renamed `filter term`, tests updated, [487c3faf96f4c197c8b82644c02466ea40626a5e] + +My 32-bit armhf armv6 hardware no longer seems to be able to run Docker. Future `oxker` releases won't be tested on real hardware, but will continue to be built and published for armv6. + # v0.11.1 ### 2025-08-21 diff --git a/src/input_handler/mod.rs b/src/input_handler/mod.rs index 15146d8..4d7b08b 100644 --- a/src/input_handler/mod.rs +++ b/src/input_handler/mod.rs @@ -77,9 +77,9 @@ impl InputHandler { && !contains(Status::Help) && !contains(Status::DeleteConfirm) && !contains(Status::Filter) - // TODO handle state where you want to scroll log search results with the mouse wheel && !contains(Status::SearchLogs) { + // TODO handle state where you want to scroll log search results with the mouse wheel self.mouse_press(mouse_event, modifider); } }