Fix/windows double keypresses - #144
Merged
Merged
Conversation
Windows emits both press and release key events. Ignore release events before mapping keys so a single key press does not trigger actions twice.
tmeijn
pushed a commit
to tmeijn/dotfiles
that referenced
this pull request
Jul 9, 2026
This MR contains the following updates: | Package | Update | Change | |---|---|---| | [github:fioncat/otree](https://github.com/fioncat/otree) | minor | `0.6.5` → `0.7.1` | MR created with the help of [el-capitano/tools/renovate-bot](https://gitlab.com/el-capitano/tools/renovate-bot). **Proposed changes to behavior should be submitted there as MRs.** --- ### Release Notes <details> <summary>fioncat/otree (github:fioncat/otree)</summary> ### [`v0.7.1`](https://github.com/fioncat/otree/releases/tag/v0.7.1) [Compare Source](fioncat/otree@v0.7.0...v0.7.1) #### Fixes - Fix doubles keypresses in Windows. ([#​144](fioncat/otree#144)) #### What's Changed - Fix/windows double keypresses by [@​fioncat](https://github.com/fioncat) in [#​144](fioncat/otree#144) **Full Changelog**: <fioncat/otree@v0.7.0...v0.7.1> ### [`v0.7.0`](https://github.com/fioncat/otree/releases/tag/v0.7.0) [Compare Source](fioncat/otree@v0.6.5...v0.7.0) #### Features - Add `tree.format` and `--tree-format` to append Minijinja-rendered object summaries in the tree view. ([#​141](fioncat/otree#141)) For example: ```bash otree pods.json --tree-format '{{ namespace }}/{{ name }}' ``` - Upgrade various dependencies. #### Fixes - check file size before reading to prevent OOM. ([#​134](fioncat/otree#134)) #### What's Changed - fix: check file size before reading to prevent OOM by [@​kimjune01](https://github.com/kimjune01) in [#​134](fioncat/otree#134) - feat(tree): add minijinja template for object node descriptions by [@​jonasws](https://github.com/jonasws) in [#​141](fioncat/otree#141) - build(deps): bump actions/checkout from 6 to 7 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​139](fioncat/otree#139) - build(deps): bump softprops/action-gh-release from 2 to 3 by [@​dependabot](https://github.com/dependabot)\[bot] in [#​131](fioncat/otree#131) #### New Contributors - [@​kimjune01](https://github.com/kimjune01) made their first contribution in [#​134](fioncat/otree#134) - [@​jonasws](https://github.com/jonasws) made their first contribution in [#​141](fioncat/otree#141) **Full Changelog**: <fioncat/otree@v0.6.5...v0.7.0> </details> --- ### Configuration 📅 **Schedule**: (UTC) - Branch creation - At any time (no schedule defined) - Automerge - At any time (no schedule defined) 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever MR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this MR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this MR, check this box --- This MR has been generated by [Mend Renovate](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0My4yNTYuMCIsInVwZGF0ZWRJblZlciI6IjQzLjI1Ni4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJSZW5vdmF0ZSBCb3QiLCJhdXRvbWF0aW9uOmJvdC1hdXRob3JlZCIsImRlcGVuZGVuY3ktdHlwZTo6bWlub3IiXX0=-->
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Solve: #137