Skip to content

Commit

Permalink
protocols: update wayland-protocols to 1.37
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxVerevkin committed Aug 31, 2024
1 parent b622ef2 commit c870bae
Show file tree
Hide file tree
Showing 4 changed files with 31 additions and 2 deletions.
5 changes: 5 additions & 0 deletions wayrs-protocols/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# 0.14.3 [unreleased]

- Update `wayland-protocols` to v1.36.
- New protocols: `xdg-toplevel-icon-v1`, `ext-image-capture-source-v1` and `ext-image-copy-capture-v1`.

# 0.14.2

- Update `wayland-protocols` to v1.36 (nothing interesting).
Expand Down
5 changes: 4 additions & 1 deletion wayrs-protocols/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,8 @@ cursor-shape-v1 = ["tablet-v2"]
drm-lease-v1 = []
ext-foreign-toplevel-list-v1 = []
ext-idle-notify-v1 = []
ext-image-capture-source-v1 = ["ext-foreign-toplevel-list-v1"]
ext-image-copy-capture-v1 = ["ext-image-capture-source-v1"]
ext-session-lock-v1 = []
ext-transient-seat-v1 = []
fractional-scale-v1 = []
Expand All @@ -32,8 +34,9 @@ security-context-v1 = []
single-pixel-buffer-v1 = []
tearing-control-v1 = []
xdg-activation-v1 = []
xdg-dialog-v1 = []
xdg-dialog-v1 = ["xdg-shell"]
xdg-toplevel-drag-v1 = ["xdg-shell"]
xdg-toplevel-icon-v1 = ["xdg-shell"]
xwayland-shell-v1 = []
# wayland-unstable
fullscreen-shell-unstable-v1 = []
Expand Down
21 changes: 21 additions & 0 deletions wayrs-protocols/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,20 @@ gen! {
deps: [core],
}

gen! {
mod: ext_image_copy_capture_v1,
feat: "ext-image-copy-capture-v1",
file: "wayland-protocols/staging/ext-image-copy-capture/ext-image-copy-capture-v1.xml",
deps: [core, ext_image_capture_source_v1],
}

gen! {
mod: ext_image_capture_source_v1,
feat: "ext-image-capture-source-v1",
file: "wayland-protocols/staging/ext-image-capture-source/ext-image-capture-source-v1.xml",
deps: [core, ext_foreign_toplevel_list],
}

gen! {
mod: ext_session_lock_v1,
feat: "ext-session-lock-v1",
Expand Down Expand Up @@ -161,6 +175,13 @@ gen! {
deps: [core, xdg_shell],
}

gen! {
mod: xdg_toplevel_icon_v1,
feat: "xdg-toplevel-icon-v1",
file: "wayland-protocols/staging/xdg-toplevel-icon/xdg-toplevel-icon-v1.xml",
deps: [core, xdg_shell],
}

gen! {
mod: xwayland_shell_v1,
feat: "xwayland-shell-v1",
Expand Down
2 changes: 1 addition & 1 deletion wayrs-protocols/wayland-protocols
Submodule wayland-protocols updated from 24e612 to 4878e0

0 comments on commit c870bae

Please sign in to comment.