From 43cfb2e419846274b95bc1f17da1f13245b7fe46 Mon Sep 17 00:00:00 2001 From: Matthias Kunnen Date: Tue, 3 Dec 2024 17:03:56 +0100 Subject: [PATCH] Update repos moved to GitLab Replaces GitHub .xml protocol links with GiLab. wayland-protocols links replaced with the following RegEx: s: https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/(.*) r: https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/$1?ref_type=tags Manually replaced: - mesa, repo moved to https://gitlab.freedesktop.org/mesa/mesa - wayland client, repo moved to http://gitlab.freedesktop.org/wayland/wayland --- wayland/client/client.go | 2 +- wayland/client/doc.go | 2 +- wayland/external/wayland-drm/doc.go | 2 +- wayland/external/wayland-drm/wayland_drm.go | 2 +- wayland/stable/presentation-time/doc.go | 2 +- wayland/stable/presentation-time/presentation_time.go | 2 +- wayland/stable/viewporter/doc.go | 2 +- wayland/stable/viewporter/viewporter.go | 2 +- wayland/stable/xdg-shell/doc.go | 2 +- wayland/stable/xdg-shell/xdg_shell.go | 2 +- wayland/staging/content-type-v1/content_type.go | 2 +- wayland/staging/content-type-v1/doc.go | 2 +- wayland/staging/drm-lease-v1/doc.go | 2 +- wayland/staging/drm-lease-v1/drm_lease.go | 2 +- wayland/staging/ext-idle-notify-v1/doc.go | 2 +- wayland/staging/ext-idle-notify-v1/ext_idle_notify.go | 2 +- wayland/staging/ext-session-lock-v1/doc.go | 2 +- wayland/staging/ext-session-lock-v1/ext_session_lock.go | 2 +- wayland/staging/fraction-sclae-v1/doc.go | 2 +- wayland/staging/fraction-sclae-v1/fractional_scale.go | 2 +- wayland/staging/single-pixel-buffer-v1/doc.go | 2 +- wayland/staging/single-pixel-buffer-v1/single_pixel_buffer.go | 2 +- wayland/staging/tearing-control-v1/doc.go | 2 +- wayland/staging/tearing-control-v1/tearing_control.go | 2 +- wayland/staging/xdg-activation-v1/doc.go | 2 +- wayland/staging/xdg-activation-v1/xdg_activation.go | 2 +- wayland/staging/xwayland-shell-v1/doc.go | 2 +- wayland/staging/xwayland-shell-v1/xwayland_shell.go | 2 +- wayland/unstable/fullscreen-shell-v1/doc.go | 2 +- wayland/unstable/fullscreen-shell-v1/fullscreen_shell.go | 2 +- wayland/unstable/idle-inhibit-v1/doc.go | 2 +- wayland/unstable/idle-inhibit-v1/idle_inhibit.go | 2 +- wayland/unstable/input-method-v1/doc.go | 2 +- wayland/unstable/input-method-v1/input_method.go | 2 +- wayland/unstable/input-timestamps-v1/doc.go | 2 +- wayland/unstable/input-timestamps-v1/input_timestamps.go | 2 +- wayland/unstable/keyboard-shortcuts-inhibit-v1/doc.go | 2 +- .../keyboard-shortcuts-inhibit-v1/keyboard_shortcuts_inhibit.go | 2 +- wayland/unstable/linux-dmabuf-v1/doc.go | 2 +- wayland/unstable/linux-dmabuf-v1/linux_dmabuf.go | 2 +- wayland/unstable/linux-explicit-synchronization-v1/doc.go | 2 +- .../linux_explicit_synchronization.go | 2 +- wayland/unstable/pointer-constraints-v1/doc.go | 2 +- wayland/unstable/pointer-constraints-v1/pointer_constraints.go | 2 +- wayland/unstable/pointer-gestures-v1/doc.go | 2 +- wayland/unstable/pointer-gestures-v1/pointer_gestures.go | 2 +- wayland/unstable/primary-selection-v1/doc.go | 2 +- wayland/unstable/primary-selection-v1/primary_selection.go | 2 +- wayland/unstable/relative-pointer-v1/doc.go | 2 +- wayland/unstable/relative-pointer-v1/relative_pointer.go | 2 +- wayland/unstable/tablet-v1/doc.go | 2 +- wayland/unstable/tablet-v1/tablet.go | 2 +- wayland/unstable/tablet-v2/doc.go | 2 +- wayland/unstable/tablet-v2/tablet.go | 2 +- wayland/unstable/text-input-v1/doc.go | 2 +- wayland/unstable/text-input-v1/text_input.go | 2 +- wayland/unstable/text-input-v3/doc.go | 2 +- wayland/unstable/text-input-v3/text_input.go | 2 +- wayland/unstable/xdg-decoration-v1/doc.go | 2 +- wayland/unstable/xdg-decoration-v1/xdg_decoration.go | 2 +- wayland/unstable/xdg-foreign-v1/doc.go | 2 +- wayland/unstable/xdg-foreign-v1/xdg_foreign.go | 2 +- wayland/unstable/xdg-foreign-v2/doc.go | 2 +- wayland/unstable/xdg-foreign-v2/xdg_foreign.go | 2 +- wayland/unstable/xdg-output-v1/doc.go | 2 +- wayland/unstable/xdg-output-v1/xdg_output.go | 2 +- wayland/unstable/xdg-shell-v6/doc.go | 2 +- wayland/unstable/xdg-shell-v6/xdg_shell.go | 2 +- 68 files changed, 68 insertions(+), 68 deletions(-) diff --git a/wayland/client/client.go b/wayland/client/client.go index 7b2db56..1fdd332 100644 --- a/wayland/client/client.go +++ b/wayland/client/client.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland/1.21.0/protocol/wayland.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland/-/raw/1.21.0/protocol/wayland.xml?ref_type=tags // // wayland Protocol Copyright: // diff --git a/wayland/client/doc.go b/wayland/client/doc.go index fc22e0a..507d7cb 100644 --- a/wayland/client/doc.go +++ b/wayland/client/doc.go @@ -3,4 +3,4 @@ // platforms. package client -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg client -prefix wl -o client.go -i https://raw.githubusercontent.com/wayland-project/wayland/1.21.0/protocol/wayland.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg client -prefix wl -o client.go -i https://gitlab.freedesktop.org/wayland/wayland/-/raw/1.21.0/protocol/wayland.xml?ref_type=tags diff --git a/wayland/external/wayland-drm/doc.go b/wayland/external/wayland-drm/doc.go index 2b31b6e..16ed376 100644 --- a/wayland/external/wayland-drm/doc.go +++ b/wayland/external/wayland-drm/doc.go @@ -1,3 +1,3 @@ package wayland_drm -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg wayland_drm -prefix wl -o wayland_drm.go -i https://raw.githubusercontent.com/mesa3d/mesa/mesa-22.2.0/src/egl/wayland/wayland-drm/wayland-drm.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg wayland_drm -prefix wl -o wayland_drm.go -i https://gitlab.freedesktop.org/mesa/mesa/-/raw/mesa-22.2.0/src/egl/wayland/wayland-drm/wayland-drm.xml?ref_type=tags diff --git a/wayland/external/wayland-drm/wayland_drm.go b/wayland/external/wayland-drm/wayland_drm.go index 6dcc82f..8c79515 100644 --- a/wayland/external/wayland-drm/wayland_drm.go +++ b/wayland/external/wayland-drm/wayland_drm.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/mesa3d/mesa/mesa-22.2.0/src/egl/wayland/wayland-drm/wayland-drm.xml +// XML file : https://gitlab.freedesktop.org/mesa/mesa/-/raw/mesa-22.2.0/src/egl/wayland/wayland-drm/wayland-drm.xml?ref_type=tags // // drm Protocol Copyright: // diff --git a/wayland/stable/presentation-time/doc.go b/wayland/stable/presentation-time/doc.go index 1f0fb35..c3c1dcb 100644 --- a/wayland/stable/presentation-time/doc.go +++ b/wayland/stable/presentation-time/doc.go @@ -1,3 +1,3 @@ package presentation_time -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg presentation_time -prefix wp -o presentation_time.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/presentation-time/presentation-time.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg presentation_time -prefix wp -o presentation_time.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/presentation-time/presentation-time.xml?ref_type=tags diff --git a/wayland/stable/presentation-time/presentation_time.go b/wayland/stable/presentation-time/presentation_time.go index 665e65d..50898b7 100644 --- a/wayland/stable/presentation-time/presentation_time.go +++ b/wayland/stable/presentation-time/presentation_time.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/presentation-time/presentation-time.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/presentation-time/presentation-time.xml?ref_type=tags // // presentation_time Protocol Copyright: // diff --git a/wayland/stable/viewporter/doc.go b/wayland/stable/viewporter/doc.go index 0948cad..cb424a7 100644 --- a/wayland/stable/viewporter/doc.go +++ b/wayland/stable/viewporter/doc.go @@ -1,3 +1,3 @@ package viewporter -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg viewporter -prefix wp -o viewporter.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/viewporter/viewporter.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg viewporter -prefix wp -o viewporter.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/viewporter/viewporter.xml?ref_type=tags diff --git a/wayland/stable/viewporter/viewporter.go b/wayland/stable/viewporter/viewporter.go index e9d117e..1454a8b 100644 --- a/wayland/stable/viewporter/viewporter.go +++ b/wayland/stable/viewporter/viewporter.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/viewporter/viewporter.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/viewporter/viewporter.xml?ref_type=tags // // viewporter Protocol Copyright: // diff --git a/wayland/stable/xdg-shell/doc.go b/wayland/stable/xdg-shell/doc.go index 72144fc..6f6487e 100644 --- a/wayland/stable/xdg-shell/doc.go +++ b/wayland/stable/xdg-shell/doc.go @@ -1,3 +1,3 @@ package xdg_shell -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_shell -prefix xdg -o xdg_shell.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/xdg-shell/xdg-shell.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_shell -prefix xdg -o xdg_shell.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/xdg-shell/xdg-shell.xml?ref_type=tags diff --git a/wayland/stable/xdg-shell/xdg_shell.go b/wayland/stable/xdg-shell/xdg_shell.go index 607f495..12b9601 100644 --- a/wayland/stable/xdg-shell/xdg_shell.go +++ b/wayland/stable/xdg-shell/xdg_shell.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/stable/xdg-shell/xdg-shell.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/stable/xdg-shell/xdg-shell.xml?ref_type=tags // // xdg_shell Protocol Copyright: // diff --git a/wayland/staging/content-type-v1/content_type.go b/wayland/staging/content-type-v1/content_type.go index 5957c65..05ac2f1 100644 --- a/wayland/staging/content-type-v1/content_type.go +++ b/wayland/staging/content-type-v1/content_type.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/content-type/content-type-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/content-type/content-type-v1.xml?ref_type=tags // // content_type_v1 Protocol Copyright: // diff --git a/wayland/staging/content-type-v1/doc.go b/wayland/staging/content-type-v1/doc.go index b5a1f0f..5cf0392 100644 --- a/wayland/staging/content-type-v1/doc.go +++ b/wayland/staging/content-type-v1/doc.go @@ -1,3 +1,3 @@ package content_type -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg content_type -prefix wp -suffix v1 -o content_type.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/content-type/content-type-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg content_type -prefix wp -suffix v1 -o content_type.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/content-type/content-type-v1.xml?ref_type=tags diff --git a/wayland/staging/drm-lease-v1/doc.go b/wayland/staging/drm-lease-v1/doc.go index 8f6fc83..1129589 100644 --- a/wayland/staging/drm-lease-v1/doc.go +++ b/wayland/staging/drm-lease-v1/doc.go @@ -1,3 +1,3 @@ package drm_lease -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg drm_lease -prefix wp -suffix v1 -o drm_lease.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/drm-lease/drm-lease-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg drm_lease -prefix wp -suffix v1 -o drm_lease.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/drm-lease/drm-lease-v1.xml?ref_type=tags diff --git a/wayland/staging/drm-lease-v1/drm_lease.go b/wayland/staging/drm-lease-v1/drm_lease.go index 37963bc..82446f1 100644 --- a/wayland/staging/drm-lease-v1/drm_lease.go +++ b/wayland/staging/drm-lease-v1/drm_lease.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/drm-lease/drm-lease-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/drm-lease/drm-lease-v1.xml?ref_type=tags // // drm_lease_v1 Protocol Copyright: // diff --git a/wayland/staging/ext-idle-notify-v1/doc.go b/wayland/staging/ext-idle-notify-v1/doc.go index 96c039b..a997b29 100644 --- a/wayland/staging/ext-idle-notify-v1/doc.go +++ b/wayland/staging/ext-idle-notify-v1/doc.go @@ -1,3 +1,3 @@ package ext_idle_notify -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg ext_idle_notify -prefix ext -suffix v1 -o ext_idle_notify.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/ext-idle-notify/ext-idle-notify-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg ext_idle_notify -prefix ext -suffix v1 -o ext_idle_notify.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/ext-idle-notify/ext-idle-notify-v1.xml?ref_type=tags diff --git a/wayland/staging/ext-idle-notify-v1/ext_idle_notify.go b/wayland/staging/ext-idle-notify-v1/ext_idle_notify.go index 2d81bb2..7ec7a72 100644 --- a/wayland/staging/ext-idle-notify-v1/ext_idle_notify.go +++ b/wayland/staging/ext-idle-notify-v1/ext_idle_notify.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/ext-idle-notify/ext-idle-notify-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/ext-idle-notify/ext-idle-notify-v1.xml?ref_type=tags // // ext_idle_notify_v1 Protocol Copyright: // diff --git a/wayland/staging/ext-session-lock-v1/doc.go b/wayland/staging/ext-session-lock-v1/doc.go index 47a83cd..06823bb 100644 --- a/wayland/staging/ext-session-lock-v1/doc.go +++ b/wayland/staging/ext-session-lock-v1/doc.go @@ -1,3 +1,3 @@ package ext_session_lock -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg ext_session_lock -suffix v1 -o ext_session_lock.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/ext-session-lock/ext-session-lock-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg ext_session_lock -suffix v1 -o ext_session_lock.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/ext-session-lock/ext-session-lock-v1.xml?ref_type=tags diff --git a/wayland/staging/ext-session-lock-v1/ext_session_lock.go b/wayland/staging/ext-session-lock-v1/ext_session_lock.go index ecf3fef..f69d5f8 100644 --- a/wayland/staging/ext-session-lock-v1/ext_session_lock.go +++ b/wayland/staging/ext-session-lock-v1/ext_session_lock.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/ext-session-lock/ext-session-lock-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/ext-session-lock/ext-session-lock-v1.xml?ref_type=tags // // ext_session_lock_v1 Protocol Copyright: // diff --git a/wayland/staging/fraction-sclae-v1/doc.go b/wayland/staging/fraction-sclae-v1/doc.go index b21bce3..a8fccc1 100644 --- a/wayland/staging/fraction-sclae-v1/doc.go +++ b/wayland/staging/fraction-sclae-v1/doc.go @@ -1,3 +1,3 @@ package fractional_scale -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg fractional_scale -prefix wp -suffix v1 -o fractional_scale.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/fractional-scale/fractional-scale-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg fractional_scale -prefix wp -suffix v1 -o fractional_scale.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/fractional-scale/fractional-scale-v1.xml?ref_type=tags diff --git a/wayland/staging/fraction-sclae-v1/fractional_scale.go b/wayland/staging/fraction-sclae-v1/fractional_scale.go index 0f1ba1f..9dce80d 100644 --- a/wayland/staging/fraction-sclae-v1/fractional_scale.go +++ b/wayland/staging/fraction-sclae-v1/fractional_scale.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/fractional-scale/fractional-scale-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/fractional-scale/fractional-scale-v1.xml?ref_type=tags // // fractional_scale_v1 Protocol Copyright: // diff --git a/wayland/staging/single-pixel-buffer-v1/doc.go b/wayland/staging/single-pixel-buffer-v1/doc.go index 31c035e..0cacd82 100644 --- a/wayland/staging/single-pixel-buffer-v1/doc.go +++ b/wayland/staging/single-pixel-buffer-v1/doc.go @@ -1,3 +1,3 @@ package single_pixel_buffer -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg single_pixel_buffer -suffix v1 -o single_pixel_buffer.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/single-pixel-buffer/single-pixel-buffer-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg single_pixel_buffer -suffix v1 -o single_pixel_buffer.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/single-pixel-buffer/single-pixel-buffer-v1.xml?ref_type=tags diff --git a/wayland/staging/single-pixel-buffer-v1/single_pixel_buffer.go b/wayland/staging/single-pixel-buffer-v1/single_pixel_buffer.go index 8958139..aa12b1b 100644 --- a/wayland/staging/single-pixel-buffer-v1/single_pixel_buffer.go +++ b/wayland/staging/single-pixel-buffer-v1/single_pixel_buffer.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/single-pixel-buffer/single-pixel-buffer-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/single-pixel-buffer/single-pixel-buffer-v1.xml?ref_type=tags // // single_pixel_buffer_v1 Protocol Copyright: // diff --git a/wayland/staging/tearing-control-v1/doc.go b/wayland/staging/tearing-control-v1/doc.go index 2093f39..209592f 100644 --- a/wayland/staging/tearing-control-v1/doc.go +++ b/wayland/staging/tearing-control-v1/doc.go @@ -1,3 +1,3 @@ package tearing_control -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tearing_control -prefix wp -suffix v1 -o tearing_control.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/tearing-control/tearing-control-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tearing_control -prefix wp -suffix v1 -o tearing_control.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/tearing-control/tearing-control-v1.xml?ref_type=tags diff --git a/wayland/staging/tearing-control-v1/tearing_control.go b/wayland/staging/tearing-control-v1/tearing_control.go index 982c6ec..59e7d0c 100644 --- a/wayland/staging/tearing-control-v1/tearing_control.go +++ b/wayland/staging/tearing-control-v1/tearing_control.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/tearing-control/tearing-control-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/tearing-control/tearing-control-v1.xml?ref_type=tags // // tearing_control_v1 Protocol Copyright: // diff --git a/wayland/staging/xdg-activation-v1/doc.go b/wayland/staging/xdg-activation-v1/doc.go index 577e1cd..1e9e826 100644 --- a/wayland/staging/xdg-activation-v1/doc.go +++ b/wayland/staging/xdg-activation-v1/doc.go @@ -1,3 +1,3 @@ package xdg_activation -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_activation -prefix xdg -suffix v1 -o xdg_activation.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/xdg-activation/xdg-activation-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_activation -prefix xdg -suffix v1 -o xdg_activation.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/xdg-activation/xdg-activation-v1.xml?ref_type=tags diff --git a/wayland/staging/xdg-activation-v1/xdg_activation.go b/wayland/staging/xdg-activation-v1/xdg_activation.go index 8ef7207..30ac772 100644 --- a/wayland/staging/xdg-activation-v1/xdg_activation.go +++ b/wayland/staging/xdg-activation-v1/xdg_activation.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/xdg-activation/xdg-activation-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/xdg-activation/xdg-activation-v1.xml?ref_type=tags // // xdg_activation_v1 Protocol Copyright: // diff --git a/wayland/staging/xwayland-shell-v1/doc.go b/wayland/staging/xwayland-shell-v1/doc.go index 91fa7a0..9c47da7 100644 --- a/wayland/staging/xwayland-shell-v1/doc.go +++ b/wayland/staging/xwayland-shell-v1/doc.go @@ -1,3 +1,3 @@ package xwayland_shell -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xwayland_shell -suffix v1 -o xwayland_shell.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/xwayland-shell/xwayland-shell-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xwayland_shell -suffix v1 -o xwayland_shell.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/xwayland-shell/xwayland-shell-v1.xml?ref_type=tags diff --git a/wayland/staging/xwayland-shell-v1/xwayland_shell.go b/wayland/staging/xwayland-shell-v1/xwayland_shell.go index 1d8c888..00d81e5 100644 --- a/wayland/staging/xwayland-shell-v1/xwayland_shell.go +++ b/wayland/staging/xwayland-shell-v1/xwayland_shell.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/staging/xwayland-shell/xwayland-shell-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/staging/xwayland-shell/xwayland-shell-v1.xml?ref_type=tags // // xwayland_shell_v1 Protocol Copyright: // diff --git a/wayland/unstable/fullscreen-shell-v1/doc.go b/wayland/unstable/fullscreen-shell-v1/doc.go index 062c931..4f95ae9 100644 --- a/wayland/unstable/fullscreen-shell-v1/doc.go +++ b/wayland/unstable/fullscreen-shell-v1/doc.go @@ -1,3 +1,3 @@ package fullscreen_shell -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg fullscreen_shell -prefix zwp -suffix v1 -o fullscreen_shell.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg fullscreen_shell -prefix zwp -suffix v1 -o fullscreen_shell.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/fullscreen-shell-v1/fullscreen_shell.go b/wayland/unstable/fullscreen-shell-v1/fullscreen_shell.go index cab031c..afe7841 100644 --- a/wayland/unstable/fullscreen-shell-v1/fullscreen_shell.go +++ b/wayland/unstable/fullscreen-shell-v1/fullscreen_shell.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/fullscreen-shell/fullscreen-shell-unstable-v1.xml?ref_type=tags // // fullscreen_shell_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/idle-inhibit-v1/doc.go b/wayland/unstable/idle-inhibit-v1/doc.go index ca7ed65..8b5dcc2 100644 --- a/wayland/unstable/idle-inhibit-v1/doc.go +++ b/wayland/unstable/idle-inhibit-v1/doc.go @@ -1,3 +1,3 @@ package idle_inhibit -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg idle_inhibit -prefix zwp -suffix v1 -o idle_inhibit.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg idle_inhibit -prefix zwp -suffix v1 -o idle_inhibit.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/idle-inhibit-v1/idle_inhibit.go b/wayland/unstable/idle-inhibit-v1/idle_inhibit.go index 45a2c9a..5e2d3b4 100644 --- a/wayland/unstable/idle-inhibit-v1/idle_inhibit.go +++ b/wayland/unstable/idle-inhibit-v1/idle_inhibit.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/idle-inhibit/idle-inhibit-unstable-v1.xml?ref_type=tags // // idle_inhibit_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/input-method-v1/doc.go b/wayland/unstable/input-method-v1/doc.go index 04911b3..70d4907 100644 --- a/wayland/unstable/input-method-v1/doc.go +++ b/wayland/unstable/input-method-v1/doc.go @@ -1,3 +1,3 @@ package input_method -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg input_method -prefix zwp -suffix v1 -o input_method.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/input-method/input-method-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg input_method -prefix zwp -suffix v1 -o input_method.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/input-method/input-method-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/input-method-v1/input_method.go b/wayland/unstable/input-method-v1/input_method.go index 0ea2659..3b376bf 100644 --- a/wayland/unstable/input-method-v1/input_method.go +++ b/wayland/unstable/input-method-v1/input_method.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/input-method/input-method-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/input-method/input-method-unstable-v1.xml?ref_type=tags // // input_method_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/input-timestamps-v1/doc.go b/wayland/unstable/input-timestamps-v1/doc.go index d580c5e..9f4844e 100644 --- a/wayland/unstable/input-timestamps-v1/doc.go +++ b/wayland/unstable/input-timestamps-v1/doc.go @@ -1,3 +1,3 @@ package input_timestamps -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg input_timestamps -prefix zwp -suffix v1 -o input_timestamps.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/input-timestamps/input-timestamps-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg input_timestamps -prefix zwp -suffix v1 -o input_timestamps.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/input-timestamps/input-timestamps-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/input-timestamps-v1/input_timestamps.go b/wayland/unstable/input-timestamps-v1/input_timestamps.go index 0d9b7e0..f52f65e 100644 --- a/wayland/unstable/input-timestamps-v1/input_timestamps.go +++ b/wayland/unstable/input-timestamps-v1/input_timestamps.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/input-timestamps/input-timestamps-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/input-timestamps/input-timestamps-unstable-v1.xml?ref_type=tags // // input_timestamps_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/keyboard-shortcuts-inhibit-v1/doc.go b/wayland/unstable/keyboard-shortcuts-inhibit-v1/doc.go index 1722b13..04442c6 100644 --- a/wayland/unstable/keyboard-shortcuts-inhibit-v1/doc.go +++ b/wayland/unstable/keyboard-shortcuts-inhibit-v1/doc.go @@ -1,3 +1,3 @@ package keyboard_shortcuts_inhibit -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg keyboard_shortcuts_inhibit -prefix zwp -suffix v1 -o keyboard_shortcuts_inhibit.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg keyboard_shortcuts_inhibit -prefix zwp -suffix v1 -o keyboard_shortcuts_inhibit.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/keyboard-shortcuts-inhibit-v1/keyboard_shortcuts_inhibit.go b/wayland/unstable/keyboard-shortcuts-inhibit-v1/keyboard_shortcuts_inhibit.go index df4e6e8..a12c5d0 100644 --- a/wayland/unstable/keyboard-shortcuts-inhibit-v1/keyboard_shortcuts_inhibit.go +++ b/wayland/unstable/keyboard-shortcuts-inhibit-v1/keyboard_shortcuts_inhibit.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/keyboard-shortcuts-inhibit/keyboard-shortcuts-inhibit-unstable-v1.xml?ref_type=tags // // keyboard_shortcuts_inhibit_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/linux-dmabuf-v1/doc.go b/wayland/unstable/linux-dmabuf-v1/doc.go index ef98f5f..2c90810 100644 --- a/wayland/unstable/linux-dmabuf-v1/doc.go +++ b/wayland/unstable/linux-dmabuf-v1/doc.go @@ -1,3 +1,3 @@ package linux_dmabuf -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg linux_dmabuf -prefix zwp -suffix v1 -o linux_dmabuf.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg linux_dmabuf -prefix zwp -suffix v1 -o linux_dmabuf.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/linux-dmabuf-v1/linux_dmabuf.go b/wayland/unstable/linux-dmabuf-v1/linux_dmabuf.go index 7d8c4c5..b920f05 100644 --- a/wayland/unstable/linux-dmabuf-v1/linux_dmabuf.go +++ b/wayland/unstable/linux-dmabuf-v1/linux_dmabuf.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/linux-dmabuf/linux-dmabuf-unstable-v1.xml?ref_type=tags // // linux_dmabuf_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/linux-explicit-synchronization-v1/doc.go b/wayland/unstable/linux-explicit-synchronization-v1/doc.go index 7f62d02..8f95d9d 100644 --- a/wayland/unstable/linux-explicit-synchronization-v1/doc.go +++ b/wayland/unstable/linux-explicit-synchronization-v1/doc.go @@ -1,3 +1,3 @@ package linux_explicit_synchronization -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg linux_explicit_synchronization -prefix zwp -suffix v1 -o linux_explicit_synchronization.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg linux_explicit_synchronization -prefix zwp -suffix v1 -o linux_explicit_synchronization.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/linux-explicit-synchronization-v1/linux_explicit_synchronization.go b/wayland/unstable/linux-explicit-synchronization-v1/linux_explicit_synchronization.go index 2d9d130..aa853bc 100644 --- a/wayland/unstable/linux-explicit-synchronization-v1/linux_explicit_synchronization.go +++ b/wayland/unstable/linux-explicit-synchronization-v1/linux_explicit_synchronization.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/linux-explicit-synchronization/linux-explicit-synchronization-unstable-v1.xml?ref_type=tags // // zwp_linux_explicit_synchronization_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/pointer-constraints-v1/doc.go b/wayland/unstable/pointer-constraints-v1/doc.go index 00b8757..bd19547 100644 --- a/wayland/unstable/pointer-constraints-v1/doc.go +++ b/wayland/unstable/pointer-constraints-v1/doc.go @@ -1,3 +1,3 @@ package pointer_constraints -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg pointer_constraints -prefix zwp -suffix v1 -o pointer_constraints.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg pointer_constraints -prefix zwp -suffix v1 -o pointer_constraints.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/pointer-constraints-v1/pointer_constraints.go b/wayland/unstable/pointer-constraints-v1/pointer_constraints.go index 6e96762..949bf4f 100644 --- a/wayland/unstable/pointer-constraints-v1/pointer_constraints.go +++ b/wayland/unstable/pointer-constraints-v1/pointer_constraints.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/pointer-constraints/pointer-constraints-unstable-v1.xml?ref_type=tags // // pointer_constraints_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/pointer-gestures-v1/doc.go b/wayland/unstable/pointer-gestures-v1/doc.go index ae9ae08..2110f56 100644 --- a/wayland/unstable/pointer-gestures-v1/doc.go +++ b/wayland/unstable/pointer-gestures-v1/doc.go @@ -1,3 +1,3 @@ package pointer_gestures -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg pointer_gestures -prefix zwp -suffix v1 -o pointer_gestures.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg pointer_gestures -prefix zwp -suffix v1 -o pointer_gestures.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/pointer-gestures-v1/pointer_gestures.go b/wayland/unstable/pointer-gestures-v1/pointer_gestures.go index 77a9174..4ad3249 100644 --- a/wayland/unstable/pointer-gestures-v1/pointer_gestures.go +++ b/wayland/unstable/pointer-gestures-v1/pointer_gestures.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/pointer-gestures/pointer-gestures-unstable-v1.xml?ref_type=tags // // pointer_gestures_unstable_v1 Protocol Copyright: diff --git a/wayland/unstable/primary-selection-v1/doc.go b/wayland/unstable/primary-selection-v1/doc.go index 4bc5254..207edf5 100644 --- a/wayland/unstable/primary-selection-v1/doc.go +++ b/wayland/unstable/primary-selection-v1/doc.go @@ -1,3 +1,3 @@ package primary_selection -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg primary_selection -prefix zwp -suffix v1 -o primary_selection.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/primary-selection/primary-selection-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg primary_selection -prefix zwp -suffix v1 -o primary_selection.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/primary-selection/primary-selection-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/primary-selection-v1/primary_selection.go b/wayland/unstable/primary-selection-v1/primary_selection.go index d19ed69..1e35ebd 100644 --- a/wayland/unstable/primary-selection-v1/primary_selection.go +++ b/wayland/unstable/primary-selection-v1/primary_selection.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/primary-selection/primary-selection-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/primary-selection/primary-selection-unstable-v1.xml?ref_type=tags // // wp_primary_selection_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/relative-pointer-v1/doc.go b/wayland/unstable/relative-pointer-v1/doc.go index 6755fe1..cf46377 100644 --- a/wayland/unstable/relative-pointer-v1/doc.go +++ b/wayland/unstable/relative-pointer-v1/doc.go @@ -1,3 +1,3 @@ package relative_pointer -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg relative_pointer -prefix zwp -suffix v1 -o relative_pointer.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/relative-pointer/relative-pointer-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg relative_pointer -prefix zwp -suffix v1 -o relative_pointer.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/relative-pointer/relative-pointer-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/relative-pointer-v1/relative_pointer.go b/wayland/unstable/relative-pointer-v1/relative_pointer.go index 1e81f99..d676ea3 100644 --- a/wayland/unstable/relative-pointer-v1/relative_pointer.go +++ b/wayland/unstable/relative-pointer-v1/relative_pointer.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/relative-pointer/relative-pointer-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/relative-pointer/relative-pointer-unstable-v1.xml?ref_type=tags // // relative_pointer_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/tablet-v1/doc.go b/wayland/unstable/tablet-v1/doc.go index d9dc444..3d987e3 100644 --- a/wayland/unstable/tablet-v1/doc.go +++ b/wayland/unstable/tablet-v1/doc.go @@ -1,3 +1,3 @@ package tablet -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tablet -prefix zwp -suffix v1 -o tablet.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/tablet/tablet-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tablet -prefix zwp -suffix v1 -o tablet.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/tablet/tablet-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/tablet-v1/tablet.go b/wayland/unstable/tablet-v1/tablet.go index 6019667..9b91e2f 100644 --- a/wayland/unstable/tablet-v1/tablet.go +++ b/wayland/unstable/tablet-v1/tablet.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/tablet/tablet-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/tablet/tablet-unstable-v1.xml?ref_type=tags // // tablet_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/tablet-v2/doc.go b/wayland/unstable/tablet-v2/doc.go index 43a63e9..c099543 100644 --- a/wayland/unstable/tablet-v2/doc.go +++ b/wayland/unstable/tablet-v2/doc.go @@ -1,3 +1,3 @@ package tablet -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tablet -prefix zwp -suffix v2 -o tablet.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/tablet/tablet-unstable-v2.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg tablet -prefix zwp -suffix v2 -o tablet.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/tablet/tablet-unstable-v2.xml?ref_type=tags diff --git a/wayland/unstable/tablet-v2/tablet.go b/wayland/unstable/tablet-v2/tablet.go index f65c2fc..a5ab01a 100644 --- a/wayland/unstable/tablet-v2/tablet.go +++ b/wayland/unstable/tablet-v2/tablet.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/tablet/tablet-unstable-v2.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/tablet/tablet-unstable-v2.xml?ref_type=tags // // tablet_unstable_v2 Protocol Copyright: // diff --git a/wayland/unstable/text-input-v1/doc.go b/wayland/unstable/text-input-v1/doc.go index 7388b0d..fe0cbbc 100644 --- a/wayland/unstable/text-input-v1/doc.go +++ b/wayland/unstable/text-input-v1/doc.go @@ -1,3 +1,3 @@ package text_input -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg text_input -prefix zwp -suffix v1 -o text_input.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/text-input/text-input-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg text_input -prefix zwp -suffix v1 -o text_input.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/text-input/text-input-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/text-input-v1/text_input.go b/wayland/unstable/text-input-v1/text_input.go index 67e7e9b..fb6332e 100644 --- a/wayland/unstable/text-input-v1/text_input.go +++ b/wayland/unstable/text-input-v1/text_input.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/text-input/text-input-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/text-input/text-input-unstable-v1.xml?ref_type=tags // // text_input_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/text-input-v3/doc.go b/wayland/unstable/text-input-v3/doc.go index 2cd82e5..5aa2923 100644 --- a/wayland/unstable/text-input-v3/doc.go +++ b/wayland/unstable/text-input-v3/doc.go @@ -1,3 +1,3 @@ package text_input -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg text_input -prefix zwp -suffix v3 -o text_input.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/text-input/text-input-unstable-v3.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg text_input -prefix zwp -suffix v3 -o text_input.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/text-input/text-input-unstable-v3.xml?ref_type=tags diff --git a/wayland/unstable/text-input-v3/text_input.go b/wayland/unstable/text-input-v3/text_input.go index dbb0175..c12c2a1 100644 --- a/wayland/unstable/text-input-v3/text_input.go +++ b/wayland/unstable/text-input-v3/text_input.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/text-input/text-input-unstable-v3.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/text-input/text-input-unstable-v3.xml?ref_type=tags // // text_input_unstable_v3 Protocol Copyright: // diff --git a/wayland/unstable/xdg-decoration-v1/doc.go b/wayland/unstable/xdg-decoration-v1/doc.go index c2645bc..b9c429e 100644 --- a/wayland/unstable/xdg-decoration-v1/doc.go +++ b/wayland/unstable/xdg-decoration-v1/doc.go @@ -1,3 +1,3 @@ package xdg_decoration -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_decoration -prefix zxdg -suffix v1 -o xdg_decoration.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_decoration -prefix zxdg -suffix v1 -o xdg_decoration.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/xdg-decoration-v1/xdg_decoration.go b/wayland/unstable/xdg-decoration-v1/xdg_decoration.go index 217566d..6ef413a 100644 --- a/wayland/unstable/xdg-decoration-v1/xdg_decoration.go +++ b/wayland/unstable/xdg-decoration-v1/xdg_decoration.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-decoration/xdg-decoration-unstable-v1.xml?ref_type=tags // // xdg_decoration_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/xdg-foreign-v1/doc.go b/wayland/unstable/xdg-foreign-v1/doc.go index 76f227d..a1109ef 100644 --- a/wayland/unstable/xdg-foreign-v1/doc.go +++ b/wayland/unstable/xdg-foreign-v1/doc.go @@ -1,3 +1,3 @@ package xdg_foreign -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_foreign -prefix zxdg -suffix v1 -o xdg_foreign.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_foreign -prefix zxdg -suffix v1 -o xdg_foreign.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/xdg-foreign-v1/xdg_foreign.go b/wayland/unstable/xdg-foreign-v1/xdg_foreign.go index 4338f60..303e461 100644 --- a/wayland/unstable/xdg-foreign-v1/xdg_foreign.go +++ b/wayland/unstable/xdg-foreign-v1/xdg_foreign.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v1.xml?ref_type=tags // // xdg_foreign_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/xdg-foreign-v2/doc.go b/wayland/unstable/xdg-foreign-v2/doc.go index 7ce210d..410b7d5 100644 --- a/wayland/unstable/xdg-foreign-v2/doc.go +++ b/wayland/unstable/xdg-foreign-v2/doc.go @@ -1,3 +1,3 @@ package xdg_foreign -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_foreign -prefix zxdg -suffix v2 -o xdg_foreign.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_foreign -prefix zxdg -suffix v2 -o xdg_foreign.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml?ref_type=tags diff --git a/wayland/unstable/xdg-foreign-v2/xdg_foreign.go b/wayland/unstable/xdg-foreign-v2/xdg_foreign.go index f2a882d..22a7d41 100644 --- a/wayland/unstable/xdg-foreign-v2/xdg_foreign.go +++ b/wayland/unstable/xdg-foreign-v2/xdg_foreign.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-foreign/xdg-foreign-unstable-v2.xml?ref_type=tags // // xdg_foreign_unstable_v2 Protocol Copyright: // diff --git a/wayland/unstable/xdg-output-v1/doc.go b/wayland/unstable/xdg-output-v1/doc.go index 9687c0d..eac9377 100644 --- a/wayland/unstable/xdg-output-v1/doc.go +++ b/wayland/unstable/xdg-output-v1/doc.go @@ -1,3 +1,3 @@ package xdg_output -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_output -prefix zxdg -suffix v1 -o xdg_output.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-output/xdg-output-unstable-v1.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_output -prefix zxdg -suffix v1 -o xdg_output.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-output/xdg-output-unstable-v1.xml?ref_type=tags diff --git a/wayland/unstable/xdg-output-v1/xdg_output.go b/wayland/unstable/xdg-output-v1/xdg_output.go index 72e5b30..944d188 100644 --- a/wayland/unstable/xdg-output-v1/xdg_output.go +++ b/wayland/unstable/xdg-output-v1/xdg_output.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-output/xdg-output-unstable-v1.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-output/xdg-output-unstable-v1.xml?ref_type=tags // // xdg_output_unstable_v1 Protocol Copyright: // diff --git a/wayland/unstable/xdg-shell-v6/doc.go b/wayland/unstable/xdg-shell-v6/doc.go index 7970511..403fc4e 100644 --- a/wayland/unstable/xdg-shell-v6/doc.go +++ b/wayland/unstable/xdg-shell-v6/doc.go @@ -1,3 +1,3 @@ package xdg_shell -//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_shell -prefix zxdg -suffix v6 -o xdg_shell.go -i https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-shell/xdg-shell-unstable-v6.xml +//go:generate go run github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -pkg xdg_shell -prefix zxdg -suffix v6 -o xdg_shell.go -i https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-shell/xdg-shell-unstable-v6.xml?ref_type=tags diff --git a/wayland/unstable/xdg-shell-v6/xdg_shell.go b/wayland/unstable/xdg-shell-v6/xdg_shell.go index c89d2d5..77934b5 100644 --- a/wayland/unstable/xdg-shell-v6/xdg_shell.go +++ b/wayland/unstable/xdg-shell-v6/xdg_shell.go @@ -1,6 +1,6 @@ // Generated by go-wayland-scanner // https://github.com/rajveermalviya/go-wayland/cmd/go-wayland-scanner -// XML file : https://raw.githubusercontent.com/wayland-project/wayland-protocols/1.31/unstable/xdg-shell/xdg-shell-unstable-v6.xml +// XML file : https://gitlab.freedesktop.org/wayland/wayland-protocols/-/raw/1.31/unstable/xdg-shell/xdg-shell-unstable-v6.xml?ref_type=tags // // xdg_shell_unstable_v6 Protocol Copyright: //