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) { 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, 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() {