bbedward
1f94c3cbd4
dbar/notifications: fix right click context menu position and add middle
...
click to DnD
2026-07-26 14:51:51 -04:00
bbedward
93c3030a1e
popout: fix lifecycle of blur with various popouts
...
fixes #2901
port 1.5
2026-07-21 17:46:43 -04:00
purian23
3c688cfbd3
feat(notifications): introduce notification foreground layers settings override
...
port 1.5
2026-07-17 13:17:12 -04:00
bbedward
3c0f2cbc48
i18n: term overhaul
...
- Delete ~160-ish useless terms
- Add context to more terms
- Add a mechanism to duplicate the same terms with different contexts
- sync
2026-07-16 12:15:20 -04:00
purian23
0509694d78
fix(Notifications): update flexible image caching in DankCircularImage
...
- Fixes #2480
2026-07-04 01:26:56 -04:00
purian23
c554d973ef
fix(Hover): refactor & update hover tracking w/context menus
...
Fixes #2737
2026-07-04 00:08:58 -04:00
purian23
b8fd52e00f
fix(Notifications): update hasNotificationImage logic to support file paths
...
- Fixes #2533
2026-07-03 13:38:21 -04:00
purian23
6cdb891551
feat(matugen): add color preview pallette & outline border option theme settings
...
- Closes #1738
2026-07-02 22:45:55 -04:00
bbedward
8b79d1dad3
notifications: fix blur on popout
...
fixes #2288
2026-07-02 21:32:10 -04:00
bbedward
093acdbff7
theme: sweep everything that isnt using a spacing token from singleton,
...
add Theme.XXS
2026-07-02 12:00:34 -04:00
purian23
57d08f6b3b
refactor(Xray): Update Xray & standalone to frame transitions
...
- Fix dbar autohide with Xray options that could have blocked bar area content
- Fixes #2729
2026-07-01 21:39:47 -04:00
bbedward
894efa58a3
theme: large consolidation of colors into Theme.qml, add
...
surfaceContainerLow/Lowest
2026-06-29 15:50:42 -04:00
purian23
d53809cf2b
refactor(framemode): unify connected surface chrome via SDF pipeline
...
- Shadow system rewrite with SDF quads
- Replace ConnectedShape/layer FBOs w/frame & chrome SDF shaders
- Improve frame blur performance
- Plugin performance gate
2026-06-12 11:03:39 -04:00
purian23
a44bef5796
fix(Notifications): restore long message content from overflowing
...
- Addtional security escape patch
- Tweak Notification Center width
2026-05-31 22:38:50 -04:00
purian23
98844a3b85
fix(Clipboard): prevent security risk HTML in window titles from fetching remote URLs
...
- Default StyledText to PlainText; keep RichText only on notification content
2026-05-31 17:41:55 -04:00
purian23
d9525908f1
refactor(Notifications): further support for duplicate notification logic
...
- New setting to stack or suppress identical alerts (on by default)
Closes #2334
2026-05-24 22:22:34 -04:00
purian23
fd24b4a36d
feat(DMS FrameMode): A New Connected Unified Surface & Animation Overhaul
...
- Introduces Standalone & Connected Modes
- Updated Animations & Motion effects for both modes
- Numerous QOL tweaks and updates throughout the system
- Highly inspired to the OG Caelestia Shell / @Soramanew
2026-05-03 15:38:30 -04:00
Nic Ficca
e805f6b5ac
Fix: close notification center after clicking action buttons ( #2276 )
...
* Close notification center after clicking action buttons
When clicking action buttons (e.g., "View", "Activate") in the
notification center, the action fires but the popout stays open. Since
the center is a layer-shell surface, it blocks focus changes on Wayland
compositors like niri, making the action appear to do nothing.
The keyboard navigation path already closes the center after invoking
actions; this brings the mouse click path in line.
Also fix closeNotificationCenter() in PopoutService to set
notificationHistoryVisible = false (matching PopoutManager._closePopout)
instead of calling close() directly, which left the visibility property
stale and caused the bell toggle to require two presses to reopen.
Fixes #2178
* Sync notificationHistoryVisible with shouldBeVisible
NotificationCenterPopout has its own notificationHistoryVisible property
that drives open/close, but the PopoutService public API (open, close,
toggle) calls DankPopout methods directly, bypassing that property. This
leaves notificationHistoryVisible stale, causing the bell toggle to
require two presses to reopen after a programmatic close.
Sync the property from onShouldBeVisibleChanged so any caller going
through open()/close() gets the state corrected automatically.
2026-04-27 09:48:36 -04:00
purian23
0f71c29776
dms(blur): Dank all the things
2026-04-24 22:52:14 -04:00
bbedward
1abb221024
blur: revise general blur styling and refine it
2026-04-24 12:07:23 -04:00
bbedward
7ced91ede1
notifications: add configurable durations for do not disturb
...
fixes #1481
2026-04-16 16:51:05 -04:00
purian23
07dbba6c53
notifications(Settings): Update notifs popout settings overflow
2026-03-20 19:09:03 -04:00
Youseffo13
5c4ce86da4
Wrapped all missing i18n strings ( #2013 )
...
* Feat(i18n): wrapped missing strings
* Feat(i18n): wrapped missing strings
* feat(i18n): added pluralization to some strings
* feat: updated en.json and template.json
* Update en.json
* Update template.json
2026-03-17 12:43:23 -04:00
bbedward
9417edac8d
fix(popout): anchor cc and notification center to top and bottom
2026-03-10 15:56:40 -04:00
purian23
971a511edb
fix(notifications): Apply appIdSubs to iconFrImage fallback path
...
- Consistent with the
appIcon PR changes in #1880 .
2026-03-01 17:37:21 -05:00
odt
0f8e0bc2b4
refactor(icons): centralize icon resolution into Paths.resolveIconPath/resolveIconUrl ( #1880 )
...
Supersedes #1878 . Rather than duplicating the moddedAppId + file path
substitution pattern inline across 8 files, this introduces two
centralized functions in Paths.qml:
- resolveIconPath(iconName): for Quickshell.iconPath() callsites,
with DesktopService.resolveIconPath() fallback
- resolveIconUrl(iconName): for image://icon/ URL callsites
All consumer files now use one-line calls. When no substitutions are
configured, moddedAppId() returns the original name unchanged (zero
cost), so this has no impact on users who don't use the feature.
Affected components:
- AppIconRenderer (8 lines → 1)
- NotificationCard, NotificationPopup, HistoryNotificationCard
- DockContextMenu, AppsDockContextMenu
- LauncherContent, LauncherTab (×3)
Co-authored-by: odtgit <odtgit@taliops.com >
2026-03-01 17:31:51 -05:00
purian23
f0fcc77bdb
feat: Implement M3 design elevation & shadow effects
...
- Added global toggles in the Themes tab
- Light color & directional user ovverides
- Independent shadow overrides per/bar
- Refactored various components to sync the updated designs
2026-03-01 00:54:31 -05:00
Youseffo13
5d09acca4c
Added plural support ( #1750 )
...
* Update it.json
* Enhance SettingsSliderRow: add resetText property and update reset button styling
* added i18n strings
* adjust reset button width to be dynamic based on content size
* added i18n strings
* Update template.json
* reverted changes
* Update it.json
* Update template.json
* Update NotificationSettings.qml
* added plurar support
* Update it.json
* Update ThemeColorsTab.qml
2026-02-26 09:36:42 -05:00
Youseffo13
02b3e4277b
Added missing i18n strings and changed reset button ( #1746 )
...
* Update it.json
* Enhance SettingsSliderRow: add resetText property and update reset button styling
* added i18n strings
* adjust reset button width to be dynamic based on content size
* added i18n strings
* Update template.json
* reverted changes
* Update it.json
* Update template.json
2026-02-19 13:31:24 -05:00
purian23
896b7ea242
notifications: Tweak animation scale & settings
2026-02-17 22:05:19 -05:00
bbedward
fed3c36f84
popout: anchor height changing popout surfaces to top and bottom
2026-02-17 17:18:07 -05:00
bbedward
196c421b75
Squashed commit of the following:
...
commit 051b7576f7ed31bbfbc58620e2eadfee41dbbac3
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 16:38:45 2026 -0500
Height for realz
commit 7784488a61a3a66e03ea2b387ca1e9da2f5e02fd
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 16:34:09 2026 -0500
Fix height and truncate text/URLs
commit 31b328d428b6cb1266aeb890eef052f003379a32
Author: bbedward <bbedward@gmail.com >
Date: Sun Feb 15 16:25:57 2026 -0500
notifications: handle URL encoding in markdown2html
commit dbb04f74a2ab52751f48bd851e74a79a3549c68a
Author: bbedward <bbedward@gmail.com >
Date: Sun Feb 15 16:10:20 2026 -0500
notifications: more comprehensive decoder
commit b29c7192c2b27d8b3e01a08dbad7656029abf673
Author: bbedward <bbedward@gmail.com >
Date: Sun Feb 15 15:51:37 2026 -0500
notifications: html unescape
commit 8a48fa11ecfffa6588807a736c897d247167b3cc
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 15:04:33 2026 -0500
Add expressive curve on init toast
commit ee124f5e04f39435b7c8cbaabc82f89a689a3847
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 15:02:16 2026 -0500
Expressive curves on swipe & btn height
commit 0fce90463567be6b01c4a316bc489baffdaa4602
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 13:40:02 2026 -0500
Provide bottom button clearance
commit 00d3829999492ab1b698a0d6c3079e53f510f725
Author: bbedward <bbedward@gmail.com >
Date: Sun Feb 15 13:24:31 2026 -0500
notifications: cleanup popup display logic
commit fd05768059db8abda8a33ae8f47caf962c6aefaa
Author: purian23 <purian23@gmail.com >
Date: Sun Feb 15 01:00:55 2026 -0500
Add Privacy Mode
- Smoother notification expansions
- Shadow & Privacy Toggles
commit 0dba11d845871eeaa969571e6bede56f984655c7
Author: purian23 <purian23@gmail.com >
Date: Sat Feb 14 22:48:46 2026 -0500
Further M3 enhancements
commit 949c216964b87c1ae265854ef1886b5b4990fd0d
Author: purian23 <purian23@gmail.com >
Date: Sat Feb 14 19:59:38 2026 -0500
Right-Click to set Rules on Notifications directly
commit 62bc25782cc1dcc5f71e3c3718d7eefbcc88029e
Author: bbedward <bbedward@gmail.com >
Date: Fri Feb 13 21:44:27 2026 -0500
notifications: fix compact spacing, reveal header bar, add bottom center
position, pointing hand cursor fix
commit ed495d4396b52df2b44eb96bbfd3dea1565f8458
Author: purian23 <purian23@gmail.com >
Date: Fri Feb 13 20:25:40 2026 -0500
Tighten init toast
commit ebe38322a03956b864171a4fdf6986c97befbd34
Author: purian23 <purian23@gmail.com >
Date: Fri Feb 13 20:09:59 2026 -0500
Update more m3 baselines & spacing
commit b1735bb7013a7c96917597e83d7f5433e528a735
Author: purian23 <purian23@gmail.com >
Date: Fri Feb 13 14:10:05 2026 -0500
Expand rules on-Click
commit 9f13546b4d9df991da91ed0f3eedccd32747530e
Author: purian23 <purian23@gmail.com >
Date: Fri Feb 13 12:59:29 2026 -0500
Add Notification Rules
- Additional right-click ops
- Allow for 3rd boy line on init notification popup
commit be133b73c7c0781cde74258da2a455d14bc9feea
Author: purian23 <purian23@gmail.com >
Date: Fri Feb 13 10:10:03 2026 -0500
Truncate long title in groups
commit 4fc275bead670d5485a7cfb0402e38057efe6443
Author: bbedward <bbedward@gmail.com >
Date: Thu Feb 12 23:27:34 2026 -0500
notification: expand/collapse animation adjustment
commit 00e6172a6888cd08781c2b321ded2d3c359dbf18
Author: purian23 <purian23@gmail.com >
Date: Thu Feb 12 22:50:11 2026 -0500
Fix global warnings
commit 0772f6deb7aa19bad3ee88a769e7b75d36d7f775
Author: purian23 <purian23@gmail.com >
Date: Thu Feb 12 22:46:40 2026 -0500
Tweak expansion duration
commit 0ffeed3ff0b25d54eca00166a3f77db6c4dc4c49
Author: purian23 <purian23@gmail.com >
Date: Thu Feb 12 22:16:16 2026 -0500
notifications: Update Material 3 baselines
- New right-click to mute option
- New independent Notification Animation settings
2026-02-16 17:57:13 -05:00
bbedward
44a45b00cf
widgets: cleanup rectangles across popouts, modals, OSDs
2026-02-14 11:15:26 -05:00
bbedward
d60e70f9cc
notifications: fix crash in modal
2026-02-12 23:15:22 -05:00
purian23
3c2d60d8e1
fix: QT notifs warning
2026-02-10 21:38:25 -05:00
purian23
9c4f4cbd0d
notifications: Add Left/Right Keyboard Nav to Current/History tabs
2026-02-10 20:51:13 -05:00
purian23
d88b04fc30
notifications: Update group expansion card animations
2026-02-09 22:48:07 -05:00
bbedward
4557426c28
notifications: fix kb navigation breaking on history tab close
2026-02-07 17:42:20 -05:00
purian23
8ee7fe8e66
notifications: Refactor Animations
2026-02-07 17:25:26 -05:00
bbedward
8944762c76
notifications: cap max anim speed in popout
2026-02-05 15:17:17 -05:00
bbedward
795f84adce
notifications: handle material icons
2026-02-01 20:39:15 -05:00
bbedward
b5194aa9e1
notifications: update dimensions and text expansion logic
2026-01-21 16:51:39 -05:00
bbedward
4e2ce82c0a
notifications: swipe to dismiss on history
2026-01-12 11:08:22 -05:00
bbedward
5302ebd840
notifications: spacing improvements
...
fixes #1241
2026-01-11 14:35:34 -05:00
bbedward
3c38e17472
notifications: add compact mode, expansion in history, expansion in
...
popup
fixes #1282
2026-01-11 12:11:44 -05:00
bbedward
824792cca7
notifications: add support for none, count, app name, and full detail
...
for lock screen
fixes #557
2026-01-05 12:22:05 -05:00
bbedward
2bf85bc4dd
motifications: add support for configurable persistent history
...
fixes #929
2026-01-03 13:08:48 -05:00
bbedward
523ccc6bf8
i18n: WIP initial RTL support
...
- notifications
- color picker
- process list
- settings
- control center, dash
- launcher
part of #1059
2025-12-17 13:50:06 -05:00
bbedward
cb710b2e5f
notifications: fix redundant height animation
2025-12-14 13:40:21 -05:00
bbedward
0ff9fdb365
notifications: add swipe to dismiss functionality
...
fixes #927
2025-12-12 14:39:51 -05:00