From c2f6c390164e40798e69a7528b078e3ccb89a438 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Wed, 10 Sep 2025 23:13:02 +0200 Subject: [PATCH] Revert "Release v2.8.0" This reverts commit 2de290850968afdd5eeea3396ae3eda94d600982. --- README.md | 9 +++++++++ Services/UpdateService.qml | 4 ++-- 2 files changed, 11 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 4bfec9f..58166e3 100644 --- a/README.md +++ b/README.md @@ -83,6 +83,15 @@ Features a modern modular architecture with a status bar, notification system, c > There is one more optional dependency. > `xdg-desktop-portal` to be able to use the "Portal" option from the screenRecorder. +If you want to use the `ArchUpdater` widget, you will have to set your `TERMINAL` environment variable. + +Example command (you can edit the /etc/environment file manually too): + +`sudo sed -i '/^TERMINAL=/d' /etc/environment && echo 'TERMINAL=/usr/bin/kitty' | sudo tee -a /etc/environment +` + +Please do not forget to edit `TERMINAL=/usr/bin/kitty` to match your terminal. + --- ## Quick Start diff --git a/Services/UpdateService.qml b/Services/UpdateService.qml index 4a4d291..f2d3207 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,8 +8,8 @@ Singleton { id: root // Public properties - property string baseVersion: "2.8.0" - property bool isDevelopment: false + property string baseVersion: "2.7.0" + property bool isDevelopment: true property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`