Releases: dunst-project/dunst
v1.4.0
There has been significant internal refactoring since the last release which
might have introduced some new bugs. Be sure to report anything you find.
However, as usual, there has been a lot of bug-fixing and a lot of new features
have been added as well. Look at the full changelog for a breakdown.
Some important points to note:
For users:
-
Behavioural changes
In the previous release we introduced support for clients to mark
notifications as 'transient'. Transient notifications used to 1) bypass
idle_threshold and 2) not be saved in history.
The latter behaviour has been disabled by default and can be re-created using
rules if necessary. Transient notifications will now only bypass
idle_threshold.Additionally, to be compliant with the notification spec, the notification
summary no longer accepts markup.
For maintainers:
- Dependency on libxdg-basedir has been removed
v1.3.2
This release fixes a crash when trying to load an invalid or corrupt icon file. It contains no other functional changes.
Dunst v1.3.1
This release addresses a race condition that can cause the service file to be empty upon installation. It contains no other changes, refer to the release notes for 1.3 below for more info on 1.3.
v1.3.0
Notable changes in 1.3:
For users:
-
Behavioural changes
Dunst respects the timeout with millisecond accuracy now. Notifications with
a one second timeout are not shown up to three seconds.
Additionally you can specify timeout values in milliseconds, seconds, minutes,
hours or days using thems,s,h, ordsuffix in the config value
respectively.Transient notifications time out ignoring the
idle_thresholdsetting and are not
saved in history. This can be overridden with a rule containingset_transient = no.
In the same vein there is thematch_transientcondition to match transient
notifications via rules.A prefixed tilde (
~/) in path settings (browser, dmenu, script) is interpreted as the
home folder of the user. -
Configuration Options
icon_foldersgot deprecated and renamed toicon_path.icon_foldersis still
supported, but will get removed in future.The option
ellipsizegot introduced. It controls where to ellipsize the text of
an overlong notification ifword_wrap = no.
For maintainers:
-
Dependencies
The GTK3+ dependency got removed. Instead of this gdk-pixbuf is required
explicitly. This had been a transient dependency before.In the Makefile, libxrandr is now specified to require version 1.5 or newer.
The dependency on libxrandr >= 1.5 is not new, Dunst 1.2.0 required it too
but there was no active check for it. -
Installation process
The internals of dunst's make installation process have slightly changed. The
install routine won't install the service files for DBus and systemd in a hardcoded
subdirectory of $PREFIX. It'll now query thedbus-1andsystemdpkg-config
packages for those paths and will put it there.To overwrite the pkg-config values, you can manually specify another path.
UseSERVICEDIR_(DBUS|SYSTEMD)vars as parameters to your make calls.For all introduced variables, see [the README.md].
-
Portability
GNU-specific functions have been disabled to make dunst portable to nongnu libc's.
For a full list of changes see [CHANGELOG.md].
v1.2.0
After about 3 years of inactivity, dunst is back under active development.
Version 1.2 is supposed to be fully backwards compatible with 1.1 but due to
the number of changes and the time since the last release there may be some
overlooked breakages. If one is found it should be reported to the bug tracker.
For users:
-
Markup
Theallow_markupsetting has been deprecated in favour ofmarkupwhich
is a multi-value setting that can be used to control much more accurately
how markup in notifications should be handled. Currently it only supports
no,stripandfullas values but it is planned to be expanded soon.To preserve backwards compatibility,
allow_markupis still supported but
users are encouraged to update their configuration files since it will be
removed after a few major releases. -
DPI handling
The DPI value used is now retrieved from theXft.dpiX resource if
available. If not, the default value 96 will be used.Additionally, as an experiment a per-monitor dpi setting, which tries to
calculate an acceptable dpi values for each monitor, has been added to the
experimental section of the configuration file. -
RandR and Xinerama
Dunst switched from using the Xinerama extension to provide multi-monitor
support to using the more modern RandR extension. While this change won't
affect the majority of users, some legacy drivers do not support RandR. In
that case, theforce_xineramaoption was added as a way to fall back to
the old method.The downside of forcing Xinerama to be used is that dunst won't be able to
detect when a monitor is added or removed meaning that follow mode might
break if the screen layout changes. -
Frame settings
All the settings in the frame section of the configuration file have been
deprecated and have been moved into the global section. Thecolorandsize
settings becameframe_colorandframe_sizerespectively. As with
allow_markup, the old format still works but it'll be removed in one of the
next major releases. -
Deprecation of urgency-specific command line flags
The urgency specific command line flags (-li, -ni, -ci, -lf, -nf, -cf, -lb, -nb, -cb, -lfr, -nfr, -cfr, -lto, -nto, -cto) have been deprecated with no
plan for a replacement. If you rely on them please respond to issue #328 on
the bug tracker with your use case.
For maintainers:
-
The project homepage has been changed to https://dunst-project.org
-
The main repository has been changed to https://github.com/dunst-project/dunst
-
Dependency changes:
- Dependency on libraries that were unused in the code but were mentioned as
dependencies has been dropped. Dunst no longer depends on: libfreetype,
libxft and libxext. - Added dependency on libxrandr and libgtk2.0.
- Dependency on libraries that were unused in the code but were mentioned as
For a full list of changes see CHANGELOG.md.
The long overdue one
The main reason for this release is a fix for a nasty memoryleak which most prominantly surfaced through the notifications from the Spotify client (just to clarify: the spotify client is not at fault).
besides the usual bug fixes here are some of the more interesting changes:
- icon support (still work in progress)
- fix issue where keybindings arn't working when numlock is activated
Thank to all the contributors.
The release tarball can be found here