From 9266ccfec4a872a6f541dc29f7216f7a82f53fdc Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sun, 30 Nov 2025 11:47:35 +0100 Subject: [PATCH] AboutTab: one more possible fix for arch commit detection --- Modules/Panels/Settings/Tabs/AboutTab.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Panels/Settings/Tabs/AboutTab.qml b/Modules/Panels/Settings/Tabs/AboutTab.qml index 40fef4e3..7ace3bef 100644 --- a/Modules/Panels/Settings/Tabs/AboutTab.qml +++ b/Modules/Panels/Settings/Tabs/AboutTab.qml @@ -39,13 +39,13 @@ ColumnLayout { Process { id: pacmanProcess - command: ["pacman", "-Q", "noctalia-shell"] + command: ["pacman", "-Q", "noctalia-shell-git"] running: false onExited: function (exitCode) { if (exitCode === 0) { var output = stdout.text.trim(); - var match = output.match(/noctalia-shell\s+(.+)/); + var match = output.match(/noctalia-shell-git\s+(.+)/); if (match && match[1]) { // For Arch packages, the version format might be like: 3.4.0.r112.g3f00bec8-1 // Extract just the commit hash part if it exists