summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDanilo M. <danix@danix.xyz>2026-08-11 19:03:55 +0200
committerDanilo M. <danix@danix.xyz>2026-08-11 19:03:55 +0200
commit10bbd51512e01efedf20881ebc7f5badbc3fcbf6 (patch)
tree1edc763101a7a1ad8a7691edf976ef061ea0320d
parent72812c0ac053a1a841f3864c9e4cce5cb6dab04a (diff)
downloadqtmaildir-10bbd51512e01efedf20881ebc7f5badbc3fcbf6.tar.gz
qtmaildir-10bbd51512e01efedf20881ebc7f5badbc3fcbf6.zip
release: 0.15.0v0.15.0
-rw-r--r--CHANGELOG.md29
-rw-r--r--CMakeLists.txt2
2 files changed, 30 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 9d872ec..2603b4f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,35 @@ point at which they are stable.
## [Unreleased]
+## [0.15.0] - 2026-08-11
+
+Sent mail becomes a place you can go. A Sent button beside Inbox, Unread and
+Important shows what you sent across every account, as a flat list of
+recipients rather than as threads, because a message you sent is not a
+conversation you are following. The blank pane counts sent mail and drafts
+alongside unread, flagged and inbox, and the date on a thread card can now be
+given a format of your own.
+
+### Upgrading
+
+Both new features read per-account folder names, and neither appears until you
+name them. Add `sent` and `drafts` to each `[account.*]` section that has them:
+
+```ini
+[account.example]
+maildir = example
+sent = Sent
+drafts = Drafts
+```
+
+Providers that nest a localised folder under a bracketed parent take the full
+path, e.g. `sent = [Provider]/Posta inviata`. An account that keeps no sent or
+drafts folder locally simply omits the key: the Sent button and the counted
+lines are absent rather than empty, and nothing warns about it.
+
+`drafts` was already accepted and documented as having no effect. If you set it
+earlier, it now counts drafts on the blank pane.
+
### Added
- **A Sent view.** A new `sent` key on each `[account.*]` names that account's
diff --git a/CMakeLists.txt b/CMakeLists.txt
index 7069ef7..7ff124a 100644
--- a/CMakeLists.txt
+++ b/CMakeLists.txt
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.21)
-project(qtmaildir VERSION 0.14.0 LANGUAGES CXX)
+project(qtmaildir VERSION 0.15.0 LANGUAGES CXX)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_STANDARD_REQUIRED ON)