diff --git a/CHANGELOG.md b/CHANGELOG.md index 4641f3239..734811cd9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,34 @@ # Dunst changelog +## 1.11.0 -- 2024-04-15 + +### Added +- Add `corners`, `progress_bar_corners` and `icon_corners` options to control which corners to round (#1268) +- Support GTK/CSS cursor names on Wayland (#1276) +- Make dunst more portable (#1288) +- Print detected monitors names (X11) (#1332) + +### Changed +- Make X11 optional in build (this allows wayland-only dunst) (#1290) +- Shell completions are now official and can be installed from the Makefile (#1262, #1263) +- Don't search for icon path if icons are disabled (#1301) +- Eagerly parse and cache colors (#1306) +- Update dunstctl manpage (#1298) +- Update documentation (#1315, #1334) + +### Fixed +- Fix settings initialization (this prevented --print and --startup\_notification from working) (#1299) +- Rework timer logic and fix error about Glib source ID for good (#1308, #1196) +- Prevent memory corruption in XrmSetDatabase (#1256, #1291) +- Don't try to print NULL strings (#1323) +- Do not resolve icon paths twice (#1307, #1314) +- Don't crash the test suite if librsvg is not present (#1329) +- Fix memory leak in DBus RuleEnable (#1328) +- Fix dunstctl rule (#1281) +- Remove newlines from icon logging (#1296) +- Prevent make from failing if git tags are not found (#1287) +- Fix some typos (#1324, #1325, #1279) + ## 1.10.0 -- 2024-02-19 ### Added diff --git a/Makefile b/Makefile index 2afa67fee..1b1b2849c 100644 --- a/Makefile +++ b/Makefile @@ -3,7 +3,7 @@ include config.mk -VERSION := "1.10.0-non-git" +VERSION := "1.11.0 (2024-04-15)" ifneq ($(wildcard ./.git/),) VERSION := $(shell ${GIT} describe --tags 2>/dev/null || echo ${VERSION}) endif diff --git a/RELEASE_NOTES b/RELEASE_NOTES index 4836fc334..d01cb6699 100644 --- a/RELEASE_NOTES +++ b/RELEASE_NOTES @@ -1,9 +1,39 @@ +=================================================================================== +Release Notes For v1.11.0 +=================================================================================== + +This release hopefully marks the start of a new period of active development and +contributions and a shift away from the previous lower maintenance mode. + +For users: + +This is the perfect time to engage with the project and other dunst users. +Some of the features and changes to include in the v2 release are starting to +be proposed or implemented. Everyone's opinion is important, so feel free +to participate in the issues proposing new features (or redesigns of the old ones). + +This version mainly contains bug fixes and QoL improvements, and can be considered +a preparatory release for the various things that will come in the future +(overhaul of the rule syntax, multiple windows support, aesthetic and customization +options, refactor of the drawing system, etc). + +For maintainers: + +X11 support is now optional and can be disabled in build by setting the `X11` make +flag to 0. This means that you can offer Wayland-only builds. + +Shell completions are now considered official and can be installed/uninstalled from +the Makefile. By default they are installed and can be disabled by setting the +`COMPLETIONS` flag to 0. + +Take a look at the changelog for all the bug fixes and improvements. + =================================================================================== Release Notes For v1.10.0 =================================================================================== It's been a while since the last release. That does not mean that the -development has been stagnent. There are some long requested features have been +development has been stagnant. There are some long requested features have been implemented, like a do not disturb mode in the form of multiple pause levels. You can specify the priority of notification and selectively pause them. The progress bar rendering for low progress values has been fixed, with preparation