diff --git a/README.md b/README.md index 58166e3..4bfec9f 100644 --- a/README.md +++ b/README.md @@ -83,15 +83,6 @@ 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 f2d3207..4a4d291 100644 --- a/Services/UpdateService.qml +++ b/Services/UpdateService.qml @@ -8,8 +8,8 @@ Singleton { id: root // Public properties - property string baseVersion: "2.7.0" - property bool isDevelopment: true + property string baseVersion: "2.8.0" + property bool isDevelopment: false property string currentVersion: `v${!isDevelopment ? baseVersion : baseVersion + "-dev"}`