[PR #130] [MERGED] Update Wayland libraries #4722

Closed
opened 2026-05-23 00:55:15 +01:00 by JakeStanger · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/JakeStanger/ironbar/pull/130
Author: @JakeStanger
Created: 4/29/2023
Status: Merged
Merged: 5/5/2023
Merged by: @JakeStanger

Base: masterHead: refactor/wayland-0.30


📝 Commits (6)

  • 7f46cb4 refactor(wayland): update to 0.30.0
  • 38da59c refactor: fix a few pedantic clippy warnings
  • c1ea5fa feat(logging): include line numbers
  • aed04c1 chore: add trace logging for mutex locks
  • 735f5cc fix(launcher): crash when focusing window
  • e1abadc fix(clipboard): copying large images filling write pipe

📊 Changes

29 files changed (+1834 additions, -1313 deletions)

View changed files

📝 Cargo.lock (+65 -48)
📝 Cargo.toml (+5 -4)
📝 src/clients/clipboard.rs (+17 -23)
📝 src/clients/music/mpris.rs (+2 -1)
📝 src/clients/wayland/client.rs (+169 -186)
src/clients/wayland/macros.rs (+101 -0)
📝 src/clients/wayland/mod.rs (+83 -43)
src/clients/wayland/wl_output.rs (+55 -0)
src/clients/wayland/wl_seat.rs (+63 -0)
📝 src/clients/wayland/wlr_data_control/device.rs (+145 -67)
📝 src/clients/wayland/wlr_data_control/manager.rs (+97 -218)
📝 src/clients/wayland/wlr_data_control/mod.rs (+307 -170)
📝 src/clients/wayland/wlr_data_control/offer.rs (+154 -45)
📝 src/clients/wayland/wlr_data_control/source.rs (+89 -42)
📝 src/clients/wayland/wlr_foreign_toplevel/handle.rs (+148 -116)
📝 src/clients/wayland/wlr_foreign_toplevel/manager.rs (+68 -145)
📝 src/clients/wayland/wlr_foreign_toplevel/mod.rs (+75 -30)
📝 src/config/common.rs (+10 -11)
📝 src/desktop_file.rs (+3 -4)
📝 src/dynamic_string.rs (+1 -1)

...and 9 more files

📄 Description

This is pretty much a rewrite of the Wayland client code for wayland-client and wayland-protocols v0.30.0, and smithay-client-toolkit v0.17.0.

  • Fixes #41
  • Fixes partially #86
  • Some minor related tweaks/refactorings

🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.

## 📋 Pull Request Information **Original PR:** https://github.com/JakeStanger/ironbar/pull/130 **Author:** [@JakeStanger](https://github.com/JakeStanger) **Created:** 4/29/2023 **Status:** ✅ Merged **Merged:** 5/5/2023 **Merged by:** [@JakeStanger](https://github.com/JakeStanger) **Base:** `master` ← **Head:** `refactor/wayland-0.30` --- ### 📝 Commits (6) - [`7f46cb4`](https://github.com/JakeStanger/ironbar/commit/7f46cb49767bd722be8d42999a9ba69887efcd40) refactor(wayland): update to 0.30.0 - [`38da59c`](https://github.com/JakeStanger/ironbar/commit/38da59cd419fa0023d0ea0b435b11f0f9dea3f15) refactor: fix a few pedantic clippy warnings - [`c1ea5fa`](https://github.com/JakeStanger/ironbar/commit/c1ea5fad7ec308895f0454b6de05a3177563626c) feat(logging): include line numbers - [`aed04c1`](https://github.com/JakeStanger/ironbar/commit/aed04c1ccfbd9c58c3e5900030c3dcf6761f1f09) chore: add trace logging for mutex locks - [`735f5cc`](https://github.com/JakeStanger/ironbar/commit/735f5cc9f1518c256785d42f3d21ed5c68b11711) fix(launcher): crash when focusing window - [`e1abadc`](https://github.com/JakeStanger/ironbar/commit/e1abadcf39a2d39078e75179a167e9277ee5e550) fix(clipboard): copying large images filling write pipe ### 📊 Changes **29 files changed** (+1834 additions, -1313 deletions) <details> <summary>View changed files</summary> 📝 `Cargo.lock` (+65 -48) 📝 `Cargo.toml` (+5 -4) 📝 `src/clients/clipboard.rs` (+17 -23) 📝 `src/clients/music/mpris.rs` (+2 -1) 📝 `src/clients/wayland/client.rs` (+169 -186) ➕ `src/clients/wayland/macros.rs` (+101 -0) 📝 `src/clients/wayland/mod.rs` (+83 -43) ➕ `src/clients/wayland/wl_output.rs` (+55 -0) ➕ `src/clients/wayland/wl_seat.rs` (+63 -0) 📝 `src/clients/wayland/wlr_data_control/device.rs` (+145 -67) 📝 `src/clients/wayland/wlr_data_control/manager.rs` (+97 -218) 📝 `src/clients/wayland/wlr_data_control/mod.rs` (+307 -170) 📝 `src/clients/wayland/wlr_data_control/offer.rs` (+154 -45) 📝 `src/clients/wayland/wlr_data_control/source.rs` (+89 -42) 📝 `src/clients/wayland/wlr_foreign_toplevel/handle.rs` (+148 -116) 📝 `src/clients/wayland/wlr_foreign_toplevel/manager.rs` (+68 -145) 📝 `src/clients/wayland/wlr_foreign_toplevel/mod.rs` (+75 -30) 📝 `src/config/common.rs` (+10 -11) 📝 `src/desktop_file.rs` (+3 -4) 📝 `src/dynamic_string.rs` (+1 -1) _...and 9 more files_ </details> ### 📄 Description This is pretty much a rewrite of the Wayland client code for `wayland-client` and `wayland-protocols` v0.30.0, and `smithay-client-toolkit` v0.17.0. - Fixes #41 - Fixes partially #86 - Some minor related tweaks/refactorings --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
JakeStanger 2026-05-23 00:55:15 +01:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
JakeStanger/ironbar#4722
No description provided.