From 4e941150fb7f5852a3e200a44cf04ff5a6c56f6b Mon Sep 17 00:00:00 2001 From: Ashley Wulber Date: Fri, 31 May 2024 20:14:21 -0400 Subject: [PATCH] v0.19.0 --- CHANGELOG.md | 17 ++++++++++++++++- Cargo.toml | 2 +- 2 files changed, 17 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 71654f3c7..4a1e98a06 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,13 +2,28 @@ ## Unreleased +## 0.19.0 - 2024-05-31 + #### Breaking Changes -- Updated `calloop` to 0.13.0, `calloop-wayland-source` to `0.3.0` +- Update `calloop` to 0.13.0, `calloop-wayland-source` to `0.3.0`. - Add `surface_enter`/`surface_leave` methods to `CompositorHandler` trait. +- Require explicit unlock call in SessionLock. +- Pass layout to `KeyboardHandler::update_modifiers`. +- Update `wayland-protocols-*`. #### Fixed +- Require explicit unlock call in `SessionLock` to avoid accidental unlock. +- Work around touch up events delivered too late with certain Weston versions. +- Internal DnD event handlers are provided position and surface. +- `MultiPool::get` returns an overlap error when its appropriate. +- Fix `delegate_*` macros with custom `UserData`. #### Additions +- Method to make subsurface from surface. +- Track latest touch_down event serial. +- Try alternative cursor icon names. +- Implement support for xdg-activation. +- Implement support for session-lock. ## 0.18.0 - 2023-09-23 diff --git a/Cargo.toml b/Cargo.toml index 2864dcca4..63851de71 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "smithay-client-toolkit" -version = "0.18.0" +version = "0.19.0" authors = ["Elinor Berger ", "i509VCB ", "Ashley Wulber "] documentation = "https://smithay.github.io/client-toolkit" repository = "https://github.com/smithay/client-toolkit"