From 2de290850968afdd5eeea3396ae3eda94d600982 Mon Sep 17 00:00:00 2001 From: Ly-sec Date: Wed, 10 Sep 2025 23:07:54 +0200 Subject: [PATCH] Release v2.8.0 We've been busy squashing bugs and adding some nice improvements based on your feedback. What's New New Icon Set - Swapped out Material Symbols for Tabler icons. They look great and load faster since they're built right in. Updater Widget - Dropped the Arch-specific update checker so this works properly on whatever distro you're running. You can build your own update widget with Custom Buttons if you want. Icon Picker - Added a proper icon picker for custom button widgets. No more guessing icon names. Better Notifications - Notifications now show actual app names like "Firefox" instead of cryptic IDs like "org.mozilla.firefox". Less Noise - Turned a bunch of those persistent notification popups into toast notifications so they don't stick around cluttering your screen. Fixes Active Window widget finally shows the right app icon and title consistently Fixed a nasty crash on Hyprland Screen recorder button disables itself if the recording software isn't installed Added a force-enable option for Night Light so you can turn it on manually whenever That's what claude had to offer:smile: --- README.md | 9 --------- Services/UpdateService.qml | 4 ++-- 2 files changed, 2 insertions(+), 11 deletions(-) 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"}`