From 7acca17b832b085da12b500bcd886c6df52951bb Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Tue, 16 Sep 2025 23:10:12 -0400 Subject: [PATCH] 2.10.0-dev --- Modules/Bar/Widgets/ScreenRecorderIndicator.qml | 2 +- Services/UpdateService.qml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Modules/Bar/Widgets/ScreenRecorderIndicator.qml b/Modules/Bar/Widgets/ScreenRecorderIndicator.qml index 7ddb867..e8a36cb 100644 --- a/Modules/Bar/Widgets/ScreenRecorderIndicator.qml +++ b/Modules/Bar/Widgets/ScreenRecorderIndicator.qml @@ -12,7 +12,7 @@ NIconButton { visible: ScreenRecorderService.isRecording icon: "camera-video" - tooltipText: "Screen recording is active\nClick to stop recording" + tooltipText: "Screen recording is active.\nClick to stop recording." compact: (Settings.data.bar.density === "compact") baseSize: Style.capsuleHeight colorBg: Color.mPrimary diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index f65fc89..da5a6db 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -9,7 +9,7 @@ Singleton { // Public properties property string baseVersion: "2.10.0" - property bool isDevelopment: false + property bool isDevelopment: true property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`