diff options
author | Xavier Claessens <xavier.claessens@collabora.com> | 2022-04-04 09:20:13 -0400 |
---|---|---|
committer | Dylan Baker <dylan@pnwbakers.com> | 2025-04-02 08:51:13 -0700 |
commit | 31114260e575af75d5e8d01c2852092704ef8f24 (patch) | |
tree | 46cf3effa6b232e367495818c63c331764870cac /docs/markdown | |
parent | 0c8f6400e3f731a5c5091653c0940f6318bdce23 (diff) | |
download | meson-31114260e575af75d5e8d01c2852092704ef8f24.zip meson-31114260e575af75d5e8d01c2852092704ef8f24.tar.gz meson-31114260e575af75d5e8d01c2852092704ef8f24.tar.bz2 |
wayland: Mark module stable
There is no point in printing warning about unstable module, in the
worst case we can just deprecate and add new API. It has been tested in
a few projects already, and this warning is a blocker on wider adoption.
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Wayland-module.md | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/docs/markdown/Wayland-module.md b/docs/markdown/Wayland-module.md index 3ffa587..ca7b567 100644 --- a/docs/markdown/Wayland-module.md +++ b/docs/markdown/Wayland-module.md @@ -1,21 +1,18 @@ -# Unstable Wayland Module +# Wayland Module -This module is available since version 0.62.0. +This module is available since version 0.62.0, and has been stable since version +1.8.0. This module provides helper functions to find wayland protocol xmls and to generate .c and .h files using wayland-scanner -**Note**: this module is unstable. It is only provided as a technology -preview. Its API may change in arbitrary ways between releases or it -might be removed from Meson altogether. - ## Quick Usage ```meson project('hello-wayland', 'c') wl_dep = dependency('wayland-client') -wl_mod = import('unstable-wayland') +wl_mod = import('wayland') xml = wl_mod.find_protocol('xdg-shell') xdg_shell = wl_mod.scan_xml(xml) |