From 983e3c5cbebbbf2c4c1a03eaadede65d0918111c Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Mon, 8 Sep 2025 12:28:35 +0200 Subject: [PATCH] Release v2.7.0 Network: Even more improvements SysStat: Remove bash script Notification: Pore image support NotificationHistory: Proper unread count Settings: Migrate Bar widgets to new settings BarWidgets: Easier to access, edit Background: add default wallpaper (if none is set) SystemMonitor: add % support for RAM BarTab: - remove global settings for widgets - add settings button per bar widget, this makes it possible to have separate settings of the same kind with different settings. This also makes it way easier to configure. A decent amount of QoL changes & fixes --- Services/UpdateService.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index c4ec7d2..1b8f3f1 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,8 +8,8 @@ Singleton { id: root // Public properties - property string baseVersion: "2.6.0" - property bool isDevelopment: true + property string baseVersion: "2.7.0" + property bool isDevelopment: false property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`