Skip to content

Commit 628779f

Browse files
committed
Dunst v1.13.0
1 parent 4ea5a80 commit 628779f

File tree

3 files changed

+45
-1
lines changed

3 files changed

+45
-1
lines changed

CHANGELOG.md

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,26 @@
11
# Dunst changelog
22

3+
## 1.13.0 -- 2025-08-04
4+
5+
### Added
6+
- Add meson build system (#1226, #1224)
7+
- Add `remove_current` action (close and remove from history) (#1491)
8+
- Support xdg-shell as a fallback on Wayland (#1433)
9+
- Add `default_pause_level` settings (#1487, #1484)
10+
- Add an `.editorconfig` file (#1461)
11+
- Add format options (`%c`, `%U`)
12+
13+
### Changed
14+
- Improve Makefile and build flags (#1456, #1457)
15+
- Change the way icons are cached (#1473, #1471)
16+
- Improve deinit and init for Wayland (#1458)
17+
- Rework logging for tests
18+
19+
### Fixed
20+
- When no graphical output is detected, exit qietly (#1466, #1095)
21+
- Fix `dunstctl reload` on Wayland (#1434, #1458)
22+
- Fix a use-after-free (#1486)
23+
324
## 1.12.2 -- 2025-03-05
425

526
### Added

RELEASE_NOTES

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
===================================================================================
2+
Release Notes For v1.13.0
3+
===================================================================================
4+
5+
Since the last release there have been many contributions. While most of the
6+
changes were "behind the scenes", there are still some new features.
7+
8+
For users:
9+
10+
With the new remove_current action, you will be able to close and directly remove
11+
from history a notification.
12+
Now you can set a pause level at startup with the `default_pause_level` setting.
13+
The Wayland support has seen several improvements (special thanks to @pslldq).
14+
15+
For maintainers:
16+
17+
Meson build system was added alongside the existing Makefile.
18+
While support for make will be kept for future releases, we might eventually
19+
transitioning fully to the new system.
20+
Meson support is still considered *experimental* and may still have issues.
21+
22+
Take a look at the changelog for all the bug fixes and improvements.
23+
124
===================================================================================
225
Release Notes For v1.12.2
326
===================================================================================

get-version.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/sh
22

33
# Fallback version here
4-
version="1.13.0-non-git"
4+
version="1.13.0 (2025-08-04)"
55

66
version="$(git describe --tags 2>/dev/null || echo "$version")"
77

0 commit comments

Comments
 (0)