From 0e53ce3ac030068c487e23b9cce8bb4739f61b70 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Sat, 6 Sep 2025 14:17:12 +0200 Subject: [PATCH] Release v2.6.0 SettingsPanel: added keyboard navigation BluetoothPanel: UI enhancements WiFiPanel: UI enhancements NotificationPanel: UI enhancements ColorPicker: UI enhancements Toast: handle switching between toasts much better Notification: add DND option Notification: add actions LauncherTab: add app2unit toggle Spacer: added spacer widget with configurable width ActiveWindow: fix hyprland icon display PowerPanel: add keybind controls NetworkService: make it way more reliable More QoL fixes & changes --- Services/UpdateService.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index 7937b26..7318a68 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,8 +8,8 @@ Singleton { id: root // Public properties - property string baseVersion: "2.5.1" - property bool isDevelopment: true + property string baseVersion: "2.6.0" + property bool isDevelopment: false property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`