X-Git-Url: https://git.notmuchmail.org/git?p=notmuch;a=blobdiff_plain;f=NEWS;h=8aa418240c9229928d748915b7ce0ccdbd752bfe;hp=3383ecfb9e19bf349c0e454e36394365259c6062;hb=30a0ed197efae461912138fb4e5f70849124fee3;hpb=05e889523fe73f2ed1d22947dbebe5080387c3d4 diff --git a/NEWS b/NEWS index 3383ecfb..8aa41824 100644 --- a/NEWS +++ b/NEWS @@ -1,5 +1,60 @@ -Notmuch 0.17~rc1 (2013-11-20) -============================= +Notmuch 0.18 (UNRELEASED) +========================= + +Command-Line Interface +---------------------- + +`notmuch dump` now defaults to `batch-tag` format. + + 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 +--------------- + +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. + +Bug fix for saved searches with newlines in them. + + Split lines confuse `notmuch count --batch`, so we remove embedded + newlines before calling notmuch count. + +Notmuch 0.17 (2013-12-30) +========================= + +Incompatible change in SHA1 computation +--------------------------------------- + +Previously on big endian architectures like sparc and powerpc the +computation of SHA1 hashes was incorrect. This meant that messages +with overlong or missing message-ids were given different computed +message-ids than on more common little endian architectures like i386 +and amd64. If you use notmuch on a big endian architecture, you are +strongly advised to make a backup of your tags using `notmuch dump` +before this upgrade. You can locate the affected files using something +like: + + notmuch dump | \ + awk '/^notmuch-sha1-[0-9a-f]{40} / \ + {system("notmuch search --exclude=false --output=files id:" $1)}' Command-Line Interface ---------------------- @@ -123,6 +178,26 @@ The `notmuch-tag` function now requires a list of tag changes changes or a space-separated string of tag changes. The latter is no longer supported and the function now returns nothing. +Fixed `notmuch-reply` putting reply in primary selection + + On emacs 24 notmuch-reply used to put the cited text into the + primary selection (which could lead to inadvertently pasting this + cited text elsewhere). Now the primary-selection is not changed. + +Fixed `notmuch-show` invisible part handling + + In some obscure cases part buttons and invisibility had strange + interactions: in particular, the default action for some parts gave + the wrong action. This has been fixed. + +Fixed `notmuch-show` attachment viewers and stderr + + In emacs 24.3+ viewing an attachment could cause spurious text to + appear in the show buffer (any stderr or stdout the viewer + produced). By default this output is now discarded. For debugging, + setting `notmuch-show-attachment-debug` causes notmuch to keep the + viewer's stderr and stdout in a separate buffer. + Fixed `notmuch-mua-reply` point placement when signature involved By restricting cursor movement to body section for cursor placement @@ -130,6 +205,13 @@ Fixed `notmuch-mua-reply` point placement when signature involved section anymore. Now inserted citation content will definitely go to the body part of the message. +Vim Interface +------------- + + It is now possible to compose new messages in the Vim interface, as + opposed reply to existing messages. There is also support for + going straight to a search (bypassing the folders view). + Notmuch 0.16 (2013-08-03) =========================