From b778a80c79894a89300c9e2c766165273390e8e8 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 4 Sep 2025 14:46:19 -0400 Subject: [PATCH 1/3] Settings: better icons for Hooks tab --- Modules/SettingsPanel/SettingsPanel.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Modules/SettingsPanel/SettingsPanel.qml b/Modules/SettingsPanel/SettingsPanel.qml index c66d429..c6d539b 100644 --- a/Modules/SettingsPanel/SettingsPanel.qml +++ b/Modules/SettingsPanel/SettingsPanel.qml @@ -189,7 +189,7 @@ NPanel { }, { "id": SettingsPanel.Tab.Hooks, "label": "Hooks", - "icon": "link", + "icon": "cable", "source": hooksTab }, { "id": SettingsPanel.Tab.About, From f84889ca134a81f2740bf2178c88504b8801f0eb Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 4 Sep 2025 14:46:29 -0400 Subject: [PATCH 2/3] UpdateService: inverted logic --- Services/UpdateService.qml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index 39eb4bb..7ec8557 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,10 +8,10 @@ Singleton { id: root // Public properties - property string baseVersion: "v2.5.0" - property bool isRelease: false + property string baseVersion: "2.5.0" + property bool isDevelopment: true - property string currentVersion: isRelease ? baseVersion : baseVersion + "-dev" + property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}` // Internal helpers function getVersion() { From 5f1f3dce4a9a7b4af1c70a3f08855a395439f0e3 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 4 Sep 2025 14:52:45 -0400 Subject: [PATCH 3/3] CustomButton: fix size to match other bars button --- Modules/Bar/Widgets/CustomButton.qml | 1 + 1 file changed, 1 insertion(+) diff --git a/Modules/Bar/Widgets/CustomButton.qml b/Modules/Bar/Widgets/CustomButton.qml index 5a9a799..e99537a 100644 --- a/Modules/Bar/Widgets/CustomButton.qml +++ b/Modules/Bar/Widgets/CustomButton.qml @@ -39,6 +39,7 @@ NIconButton { || BarWidgetRegistry.widgetMetadata["CustomButton"].middleClickExec readonly property bool hasExec: (userLeftClickExec || userRightClickExec || userMiddleClickExec) + sizeRatio: 0.8 icon: userIcon tooltipText: { if (!hasExec) {