diff --git a/Modules/OSD/OSD.qml b/Modules/OSD/OSD.qml index d89847070..43400e937 100644 --- a/Modules/OSD/OSD.qml +++ b/Modules/OSD/OSD.qml @@ -171,7 +171,7 @@ Variants { } function onBrightnessChanged(newBrightness) { - currentBrightness = newBrightness; + root.currentBrightness = newBrightness; showOSD(OSD.Type.Brightness); } diff --git a/Services/Noctalia/UpdateService.qml b/Services/Noctalia/UpdateService.qml index 4f29e3a02..c0e082919 100644 --- a/Services/Noctalia/UpdateService.qml +++ b/Services/Noctalia/UpdateService.qml @@ -11,8 +11,8 @@ Singleton { id: root // Version properties - readonly property string baseVersion: "3.6.1" - readonly property bool isDevelopment: true + readonly property string baseVersion: "3.6.2" + readonly property bool isDevelopment: false readonly property string developmentSuffix: "-git" readonly property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + developmentSuffix}`