From patchwork Wed Jan 22 19:23:08 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 55964 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 91B1DC02182 for ; Wed, 22 Jan 2025 19:23:46 +0000 (UTC) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by mx.groups.io with SMTP id smtpd.web11.2544.1737573816968700669 for ; Wed, 22 Jan 2025 11:23:37 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.22, mailfrom: f_l_k@t-online.de) Received: from fwd76.aul.t-online.de (fwd76.aul.t-online.de [10.223.144.102]) by mailout12.t-online.de (Postfix) with SMTP id 6941B621 for ; Wed, 22 Jan 2025 20:23:02 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.163.37.54]) by fwd76.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1tagJZ-3Hgq7V0; Wed, 22 Jan 2025 20:23:01 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 1/2] gnome-shell: update 47.2 -> 47.3 Date: Wed, 22 Jan 2025 20:23:08 +0100 Message-ID: <20250122192309.935004-1-f_l_k@t-online.de> X-Mailer: git-send-email 2.47.1 MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1737573781-367FB9C7-358F2CA9/0/0 CLEAN NORMAL X-TOI-MSGID: 52a4050c-8e56-4087-bec1-a399c39fe90f List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 22 Jan 2025 19:23:46 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/115021 47.3 ==== * Fix Escape handling in run dialog [Florian; !3585] * Fix custom text-scaling-factor getting reset [Matthijs; !3574] * Tweak ibus candidate popover appearance [AuralRay; !3584] * Misc. bug fixes and cleanups [Florian, Bilal, Michel, Bartłomiej, Alberto, AsciiWolf, Jakub; !3563, !3547, !3573, !3525, !3572, !3580, !3578, !3576, !3579, !3589, !3587, !3593] Signed-off-by: Markus Volk --- ...-shell-extensions_47.2.bb => gnome-shell-extensions_47.3.bb} | 2 +- .../gnome-shell/{gnome-shell_47.2.bb => gnome-shell_47.3.bb} | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell-extensions_47.2.bb => gnome-shell-extensions_47.3.bb} (84%) rename meta-gnome/recipes-gnome/gnome-shell/{gnome-shell_47.2.bb => gnome-shell_47.3.bb} (95%) diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.2.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.3.bb similarity index 84% rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.2.bb rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.3.bb index 6567704c47..151e57e887 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.2.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell-extensions_47.3.bb @@ -6,7 +6,7 @@ inherit gnomebase gettext gsettings features_check REQUIRED_DISTRO_FEATURES = "x11 polkit systemd pam gobject-introspection-data" -SRC_URI[archive.sha256sum] = "dd774a0291584917abde88bbc4eccf9244178e3c269ce0618d0495177c12652d" +SRC_URI[archive.sha256sum] = "1a9142a4e85d7a2b7dc5bad37e34df9eebb38e8496f4938be2d7b2b35883d139" EXTRA_OEMESON += " \ -Dextension_set=all \ diff --git a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.2.bb b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.3.bb similarity index 95% rename from meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.2.bb rename to meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.3.bb index 417f0a1816..b3fba01eee 100644 --- a/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.2.bb +++ b/meta-gnome/recipes-gnome/gnome-shell/gnome-shell_47.3.bb @@ -33,7 +33,7 @@ GIR_MESON_OPTION = "" # gobject-introspection is mandatory and cannot be configured REQUIRED_DISTRO_FEATURES += "gobject-introspection-data" -SRC_URI[archive.sha256sum] = "4184d01a1ab82cb421d1ca2e2bcce0292ceb46c4c749e61b0bde4b75004d2e00" +SRC_URI[archive.sha256sum] = "783deb9a086511e4a53db10574bfbba695576f698078218ca6c80cb1efec293e" PACKAGECONFIG ??= "bluetooth nm ${@bb.utils.filter('DISTRO_FEATURES', 'systemd', d)}" PACKAGECONFIG[bluetooth] = ",,gnome-bluetooth" From patchwork Wed Jan 22 19:23:09 2025 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Markus Volk X-Patchwork-Id: 55963 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org Received: from aws-us-west-2-korg-lkml-1.web.codeaurora.org (localhost.localdomain [127.0.0.1]) by smtp.lore.kernel.org (Postfix) with ESMTP id 90F59C02181 for ; Wed, 22 Jan 2025 19:23:46 +0000 (UTC) Received: from mailout12.t-online.de (mailout12.t-online.de [194.25.134.22]) by mx.groups.io with SMTP id smtpd.web10.2542.1737573816969262220 for ; Wed, 22 Jan 2025 11:23:37 -0800 Authentication-Results: mx.groups.io; dkim=none (message not signed); spf=pass (domain: t-online.de, ip: 194.25.134.22, mailfrom: f_l_k@t-online.de) Received: from fwd76.aul.t-online.de (fwd76.aul.t-online.de [10.223.144.102]) by mailout12.t-online.de (Postfix) with SMTP id 6B109630 for ; Wed, 22 Jan 2025 20:23:02 +0100 (CET) Received: from intel-corei7-64.fritz.box ([84.163.37.54]) by fwd76.t-online.de with (TLSv1.3:TLS_AES_256_GCM_SHA384 encrypted) esmtp id 1tagJZ-3Hgq7W0; Wed, 22 Jan 2025 20:23:01 +0100 From: Markus Volk To: openembedded-devel@lists.openembedded.org Subject: [meta-gnome][PATCH 2/2] gnome-control-center: update 47.2 -> 47.3 Date: Wed, 22 Jan 2025 20:23:09 +0100 Message-ID: <20250122192309.935004-2-f_l_k@t-online.de> X-Mailer: git-send-email 2.47.1 In-Reply-To: <20250122192309.935004-1-f_l_k@t-online.de> References: <20250122192309.935004-1-f_l_k@t-online.de> MIME-Version: 1.0 X-TOI-EXPURGATEID: 150726::1737573781-AF7FD9C7-2314AADF/0/0 CLEAN NORMAL X-TOI-MSGID: f94c9d76-d9cf-4b4b-8d4c-afd857a37648 List-Id: X-Webhook-Received: from li982-79.members.linode.com [45.33.32.79] by aws-us-west-2-korg-lkml-1.web.codeaurora.org with HTTPS for ; Wed, 22 Jan 2025 19:23:46 -0000 X-Groupsio-URL: https://lists.openembedded.org/g/openembedded-devel/message/115022 ============ Version 47.3 ============ - Various translation updates About - Fix wrong GPU names when g-c-c is launched using dGPU Color - Various fixes to the color calibration tool Notifications - Update UI when underlying gsetting changes Network - Make metered connection and hotspot settings adaptive to small screens Power - Handle when tuned-ppd has an unsupported power profile Sound - Prevent crash in Volume Levels when stream has no name Users - Make screen reader read avatar file names when there are no names Signed-off-by: Markus Volk --- ...nome-control-center_47.2.bb => gnome-control-center_47.3.bb} | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) rename meta-gnome/recipes-gnome/gnome-control-center/{gnome-control-center_47.2.bb => gnome-control-center_47.3.bb} (95%) diff --git a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.2.bb b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.3.bb similarity index 95% rename from meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.2.bb rename to meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.3.bb index a2decc13e3..a73183f0f8 100644 --- a/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.2.bb +++ b/meta-gnome/recipes-gnome/gnome-control-center/gnome-control-center_47.3.bb @@ -39,7 +39,7 @@ inherit gtk-icon-cache pkgconfig gnomebase gsettings gettext gi-docgen upstream- REQUIRED_DISTRO_FEATURES += "opengl polkit pulseaudio systemd x11" SRC_URI += "file://0001-Add-meson-option-to-pass-sysroot.patch" -SRC_URI[archive.sha256sum] = "434a322dc3743858b89d8165d89f89dc05968b6b7be3400944ced4271250d3e9" +SRC_URI[archive.sha256sum] = "78381d5a7f1d5b297c9a19611145ee5e0584f06ac575ed08ad070a0c07bbeaa2" PACKAGECONFIG ??= "ibus ${@bb.utils.filter('DISTRO_FEATURES', 'wayland', d)}" PACKAGECONFIG[cups] = ",,cups,cups system-config-printer cups-pk-helper"