Age | Commit message (Collapse) | Author | |
---|---|---|---|
2024-09-15 | textinput: don't reset if ti isn't enabled (#7798) | Sungyoon Cho | |
2024-09-12 | textinput: fix tiv3 leave (#7761) | Sungyoon Cho | |
2024-09-10 | textinput: handle IME resetting (#7731) | Sungyoon Cho | |
2024-09-09 | tiv1: fix deleting first character (#7716) | Sungyoon Cho | |
2024-09-05 | textinput: fix ime activation in some edge cases (#7660) | Sungyoon Cho | |
* textinput: clear ti3 state when focused surface gets destroyed * textinput: send enter to newly created ti in focus | |||
2024-09-01 | textinput: don't deactivate ime if another ti is focused (#7617) | Sungyoon Cho | |
2024-09-01 | textinput: send deactivate to ime on destory ti (#7614) | Sungyoon Cho | |
2024-07-29 | protocols: move text-input-v1 to hyprwayland-scanner (#7096) | Ikalco | |
* move text-input-v1 to hyprwayland-scanner * vro | |||
2024-07-13 | style: fix clang-format | Vaxry | |
2024-06-08 | wayland/core: move to new impl (#6268) | Vaxry | |
* wayland/core/dmabuf: move to new impl it's the final countdown | |||
2024-05-05 | internal: new shared_ptr and weak_ptr implementation (#5883) | Vaxry | |
moves std::shared_ptrs to a new implementation Advantages: - you can dereference a weak_ptr directly. This will obviously segfault on a nullptr deref if it's expired. - this is useful to avoid the .lock() hell where we are 100% sure the pointer _should_ be valid. (and if it isn't, it should throw.) - weak_ptrs are still valid while the SP is being destroyed. - reasoning: while an object (e.g. CWindow) is being destroyed, its `weak_ptr self` should be accessible (the sp is still alive, and so is CWindow), but it's not because by stl it's already expired (to prevent resurrection) - this impl solves it differently. w_p is expired, but can still be dereferenced and used. Creating `s_p`s is not possible anymore, though. - this is useful in destructors and callbacks. | |||
2024-05-01 | ime-v2: move to new impl | Vaxry | |
2024-04-25 | text-input-v3: move to new impl | Vaxry | |
2024-04-06 | IME: fix race condition on closing window (#5455) | Sungyoon Cho | |
2024-04-04 | IME: fix crash on restarting IME (#5428) | Sungyoon Cho | |
2024-04-01 | textinput: fix typo (#5365) | Sungyoon Cho | |
2024-03-31 | textinput: send deactivate on disable ti | Vaxry | |
ref #5288 | |||
2024-03-30 | IME: don't assert on lock mismatch, just fix it | Vaxry | |
2024-03-28 | format: fix format | Vaxry | |
2024-03-26 | textinput: fix ime when opening multiple windows (#5281) | Sungyoon Cho | |
2024-03-24 | IME: Refactor and fixup popups | Vaxry | |
2024-03-24 | text-input: reset lock counter on surface destroy | Vaxry | |
fixes #5231 | |||
2024-03-23 | input: fix crash with text-input-v1 (#5234) | Sungyoon Cho | |
2024-03-22 | IME/TI: Fixes and refactoring | Vaxry | |
Fixes #5189 |