X-Git-Url: https://git.notmuchmail.org/git?a=blobdiff_plain;f=NEWS;h=f1d549996abc689a39cf235424bd8d6602af7cd3;hb=dd24fdd33a3c06b2c2ad6bcb8e7d18bc8442f51f;hp=799fd9acdb92f81918a01f7c927bfa8fdcfc8cd0;hpb=f102c9d7ae840fc0a45a59ee129572f45a74c2f2;p=notmuch diff --git a/NEWS b/NEWS index 799fd9ac..f1d54999 100644 --- a/NEWS +++ b/NEWS @@ -8,10 +8,37 @@ Command-Line Interface The old format is still available with `--format=sup`. +`notmuch new` has a --quiet option + + This option suppresses the progress and summary reports. + Emacs Interface --------------- -Bug fix for saved searches with newlines in them. +Changed format for saved searches + + The format for `notmuch-saved-searches` has changed, but old style + saved searches are still supported. The new style means that a saved + search can store the desired sort order for the search, and it can + store a separate query to use for generating the count notmuch + shows. + + The variable is fully customizable and any configuration done + through customize should *just work*, with the additional options + mentioned above. For manual customization see the documentation for + `notmuch-saved-searches`. + + IMPORTANT: a new style notmuch-saved-searches variable will break + previous versions of notmuch-emacs (even search will not work); to + fix remove the customization for notmuch-saved-searches. + + If you have a custom saved search sort function (not unsorted or + alphabetical) then the sort function will need to be + modified. Replacing (car saved-search) by (notmuch-saved-search-get + saved-search :name) and (cdr saved-search) by + (notmuch-saved-search-get saved-search :query) should be sufficient. + +Bug fix for saved searches with newlines in them Split lines confuse `notmuch count --batch`, so we remove embedded newlines before calling notmuch count.