From 656f44641c27fe41fade9308d316da98156b4158 Mon Sep 17 00:00:00 2001 From: Adam Williamson Date: Fri, 12 Dec 2025 14:01:34 -0800 Subject: [PATCH] check-needles: allow plasma-setup tags without needles We know we need these, but I can't get them created yet because there's a bug in plasma-setup preventing us getting that far... when we type in the language search box, we're typing Greek, for some reason. Signed-off-by: Adam Williamson --- check-needles.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/check-needles.py b/check-needles.py index d0e1917b..7ef6dbca 100755 --- a/check-needles.py +++ b/check-needles.py @@ -302,6 +302,10 @@ tagnoneedle = realtesttags - needletags # https://gitlab.gnome.org/GNOME/gnome-font-viewer/-/issues/64 is # fixed we can create this needle and drop this entry tagnoneedle.discard("fonts_c059_installed") +# these are needles we know we need (for non-English KDE installs that +# hit plasma-setup) but can't get them yet as there's a bug in plasma-setup +tagnoneedle.discard("ps_layout_search_field") +tagnoneedle.discard("ps_user_created") # reverse check, for images without a needle file imgpaths = glob.glob(f"{NEEDLEPATH}/**/*.png", recursive=True)