Added a clear all notifications button and an AGENTS.md file for llms to

test their effectiveness
This commit is contained in:
2026-05-06 18:34:10 -04:00
parent 79f8a99c86
commit e4ee6c6caa
3 changed files with 110 additions and 68 deletions

View File

@@ -7,6 +7,12 @@ Singleton {
readonly property list<Notification> notifications: server.trackedNotifications.values
readonly property int amountNotifications: notifications.length
function dismissAll() {
for (let i = notifications.length - 1; i >= 0; i--) {
notifications[i].dismiss();
}
}
NotificationServer {
id: server
actionsSupported: true