From 149f12ee16eb8fb33668d53cf805a6d569a459e9 Mon Sep 17 00:00:00 2001 From: Nikos Tsipinakis Date: Sun, 12 Feb 2017 20:52:02 +0200 Subject: [PATCH] Switch changelog to markdown format * Actually update the changelog contents with all the changes since the last release * Add release date for all previous releases --- CHANGELOG | 61 ------------------------------------- CHANGELOG.md | 85 ++++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 85 insertions(+), 61 deletions(-) delete mode 100644 CHANGELOG create mode 100644 CHANGELOG.md diff --git a/CHANGELOG b/CHANGELOG deleted file mode 100644 index 64106b5..0000000 --- a/CHANGELOG +++ /dev/null @@ -1,61 +0,0 @@ -v2.0.0: - - Improved vertical centering and padding - - Fix category missing in rules parsing - - Added option to hide duplicates count - - Fixed many memory leaks - - Added svg and raw image icon support - - Added systemd service to contrib folder (not installed by default) - - Added support for per-urgency frame colors - -v1.1.0: - - fix nasty memory leak - - icon support (still work in progress) - - fix issue where keybindings aren't working when numlock is activated - -v1.0.0: - - use pango/cairo as drawing backend - - make use of pangos ability to parse markup - - support for actions via context menu - - indicator for actions/urls found - - use blocking I/O. No more waking up the CPU multiple times per second to check for new dbus messages - -v0.5.0: - - new default dunstrc - - frames for window - - trigger scripts on matching notifications - - context menu for urls (using dmenu) - - pause and resume function - - use own code for ini parsing (this removes inih) - - progress hints -v0.4.0: - - separator between notifications - - word wrap long lines - - real transparance - - bouncing text (alternative to word_wrap) - - new option for line height - - better multihead support - - don't die when keybindings can't be grabbed - - bugfix: forgetting geometry - - (optional) static configuration -v0.3.1: - - fix -mon option -v0.3.0: - - full support for Desktop Notification Specification (mandatory parts) - - option to select monitor on which notifications are shown - - follow focus - - oneline mode - - text alignment - - show age of notifications - - sticky history - - filter duplicate messages - - keybinding to close all notifications - - new way to specify keybindings - - cleanup / bugfixes etc. - - added dunst.service - -v0.2.0: - - introduction of dunstrc - - removed static configuration via config.h - - don't timeout when user is idle - - xft-support - - history (a.k.a. redisplay old notifications) diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..299bf93 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,85 @@ +#Dunst changelog + +##Unreleased +###Added +- `always_run_script` option to run script even if a notification is suppressed +- Support for svg icon files +- Support for raw icons +- `shrink` option to automatically scale down icons if they exceed a certain size +- `hide_duplicate_count` option to hide the number of duplicate notifications +- Support for per-urgency frame colours +- `markup` setting for more fine-gained control over how markup is handled +- `history_ignore` rule action to exclude a notification from being added to the history + +###Changed +- Text and icons are now centred vertically +- Notifications aren't considered duplicate if urgency or icons differ + +###Deprecated +- `allow_markup` will be removed in later versions. It is being replaced by `markup` + +###Fixed +- Infinite loop if there are 2 configuration file sections with the same name +- URLs with dashes and underscores in them are now parsed properly +- Many memory leaks +- Category based rules were applied without actually matching +- dmenu command not parsing quoted arguments correctly +- Icon alignment with dynamic width +- Loading each line of the configuration file no longer relies on a static size buffer +- `ignore_newline` now works regardless of the markup setting + +##1.1.0 2014-07-29 +- fix nasty memory leak +- icon support (still work in progress) +- fix issue where keybindings aren't working when numlock is activated + +##1.0.0 2013-04-15 +- use pango/cairo as drawing backend +- make use of pangos ability to parse markup +- support for actions via context menu +- indicator for actions/urls found +- use blocking I/O. No more waking up the CPU multiple times per second to check for new dbus messages + +##0.5.0 2013-01-26 +- new default dunstrc +- frames for window +- trigger scripts on matching notifications +- context menu for urls (using dmenu) +- pause and resume function +- use own code for ini parsing (this removes inih) +- progress hints + +##0.4.0 - 2012-09-27 +- separator between notifications +- word wrap long lines +- real transparance +- bouncing text (alternative to word_wrap) +- new option for line height +- better multihead support +- don't die when keybindings can't be grabbed +- bugfix: forgetting geometry +- (optional) static configuration + +##0.3.1 - 2012-08-02 +- fix -mon option + +##0.3.0 - 2012-07-30 +- full support for Desktop Notification Specification (mandatory parts) +- option to select monitor on which notifications are shown +- follow focus +- oneline mode +- text alignment +- show age of notifications +- sticky history +- filter duplicate messages +- keybinding to close all notifications +- new way to specify keybindings +- cleanup / bugfixes etc. +- added dunst.service + +##0.2.0 - 2012-06-26 +- introduction of dunstrc +- removed static configuration via config.h +- don't timeout when user is idle +- xft-support +- history (a.k.a. redisplay old notifications)