From 978405bd859ff1dfdc4a32cd83e900e01ff4aec7 Mon Sep 17 00:00:00 2001 From: LemmyCook Date: Thu, 18 Sep 2025 23:39:49 -0400 Subject: [PATCH] 2.12.1-dev --- Modules/Bar/Widgets/ScreenRecorderIndicator.qml | 2 ++ Services/BarService.qml | 3 +-- Services/UpdateService.qml | 2 +- 3 files changed, 4 insertions(+), 3 deletions(-) diff --git a/Modules/Bar/Widgets/ScreenRecorderIndicator.qml b/Modules/Bar/Widgets/ScreenRecorderIndicator.qml index 91463680..d64ace98 100644 --- a/Modules/Bar/Widgets/ScreenRecorderIndicator.qml +++ b/Modules/Bar/Widgets/ScreenRecorderIndicator.qml @@ -16,5 +16,7 @@ NIconButton { baseSize: Style.capsuleHeight colorBg: ScreenRecorderService.isRecording ? Color.mPrimary : (Settings.data.bar.showCapsule ? Color.mSurfaceVariant : Color.transparent) colorFg: ScreenRecorderService.isRecording ? Color.mOnPrimary : Color.mOnSurface + colorBorder: Color.transparent + colorBorderHover: Color.transparent onClicked: ScreenRecorderService.toggleRecording() } diff --git a/Services/BarService.qml b/Services/BarService.qml index 2bfa6cdc..9fc6749b 100644 --- a/Services/BarService.qml +++ b/Services/BarService.qml @@ -39,8 +39,7 @@ Singleton { if (widget.widgetId === widgetId && widget.screenName === screenName && widget.section === section) { if (index === null) { return widget.instance - } - else if (widget.index == index) { + } else if (widget.index == index) { return widget.instance } } diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index f9e60092..00b9d549 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,7 +8,7 @@ Singleton { id: root // Public properties - property string baseVersion: "2.12.0" + property string baseVersion: "2.12.1" property bool isDevelopment: true property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`