unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/2] NEWS: mention file deletion speedups
@ 2021-04-27  0:15 David Bremner
  2021-04-27  0:15 ` [PATCH 2/2] NEWS: summarize changes to emacs interface David Bremner
  2021-04-28 10:23 ` [PATCH 1/2] NEWS: mention file deletion speedups David Bremner
  0 siblings, 2 replies; 5+ messages in thread
From: David Bremner @ 2021-04-27  0:15 UTC (permalink / raw)
  To: notmuch; +Cc: David Bremner

It seems a bit silly to have two NEWS entries for one commit, but
there are two potiential audiences.
---
 NEWS | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/NEWS b/NEWS
index a699b48e..6a708d64 100644
--- a/NEWS
+++ b/NEWS
@@ -30,6 +30,10 @@ constants have been added to the notmuch API. Most notably:
 A previously requested API change is that `notmuch_database_reopen` is
 now exposed (and generalized).
 
+The previously severe slowdowns from large numbers calls to
+notmuch_database_remove_message or notmuch_message_delete in one
+session has been fixed.
+
 As always, the canonical source of API documentation is
 `lib/notmuch.h`, or the doxygen formated documentation in `notmuch(3)`
 
@@ -39,6 +43,9 @@ CLI
 The `notmuch config set` subcommand gained a `--database` argument to
 specify that the database should be updated, rather than a config file.
 
+The speed of `notmuch new` and `notmuch reindex` in dealing with large
+numbers of mail file deletions is significantly improved.
+
 Notmuch 0.31.4 (2021-02-18)
 ===========================
 
-- 
2.30.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [PATCH 2/2] NEWS: summarize changes to emacs interface.
  2021-04-27  0:15 [PATCH 1/2] NEWS: mention file deletion speedups David Bremner
@ 2021-04-27  0:15 ` David Bremner
  2021-04-28  8:08   ` Jonas Bernoulli
  2021-04-28 10:23 ` [PATCH 1/2] NEWS: mention file deletion speedups David Bremner
  1 sibling, 1 reply; 5+ messages in thread
From: David Bremner @ 2021-04-27  0:15 UTC (permalink / raw)
  To: notmuch; +Cc: David Bremner

This my attempt at a summary based on git log.
---
 NEWS | 18 ++++++++++++++++++
 1 file changed, 18 insertions(+)

diff --git a/NEWS b/NEWS
index 6a708d64..75a2a982 100644
--- a/NEWS
+++ b/NEWS
@@ -46,6 +46,24 @@ specify that the database should be updated, rather than a config file.
 The speed of `notmuch new` and `notmuch reindex` in dealing with large
 numbers of mail file deletions is significantly improved.
 
+Emacs
+-----
+
+Completion related updates include: de-duplicating tags offered for
+completion, use the actual initial input in address completion, allow
+users to opt out of notmuch address completion, and do not force Ido
+when prompting for senders.
+
+Lexical binding is now used in all notmuch-emacs libraries.
+
+Fix bug in calling `notmuch-mua-mail` with a non-nil RETURN-ACTION.
+
+Removed or inlined functions and variables:
+ `notmuch-address-locate-command`, `notmuch-folder`,
+ `notmuch-remove-if-not`, `notmuch-search-disjunctive-regexp`,
+ `notmuch-sexp-eof`, `notmuch-split-content-type`,
+ `notmuch-tree-button-activate`,
+
 Notmuch 0.31.4 (2021-02-18)
 ===========================
 
-- 
2.30.2

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] NEWS: summarize changes to emacs interface.
  2021-04-27  0:15 ` [PATCH 2/2] NEWS: summarize changes to emacs interface David Bremner
@ 2021-04-28  8:08   ` Jonas Bernoulli
  2021-04-28 10:22     ` David Bremner
  0 siblings, 1 reply; 5+ messages in thread
From: Jonas Bernoulli @ 2021-04-28  8:08 UTC (permalink / raw)
  To: David Bremner, notmuch; +Cc: David Bremner

David Bremner <david@tethera.net> writes:

I couldn't wait until tonight. ;)

> This my attempt at a summary based on git log.

You have mostly covers the important bits that users need to
know about.  The only thing I would add is:

Some keymaps used to contain bindings for unnamed commands.  These
lambda expressions have been replaced by named commands (symbols),
to ease customization.

> +Removed or inlined functions and variables:
> + `notmuch-address-locate-command`, `notmuch-folder`,
> + `notmuch-remove-if-not`, `notmuch-search-disjunctive-regexp`,
> + `notmuch-sexp-eof`, `notmuch-split-content-type`,
> + `notmuch-tree-button-activate`,

You overlooked a few
  `notmuch-documentation-first-line`
  `notmuch-hello-trim'
and there's also a rename
  `notmuch-hello-versions` => `notmuch-version`

I would change this to:

Removed, inlined or renamed functions and variables:
  `notmuch-address-locate-command`,
  `notmuch-documentation-first-line`, `notmuch-folder`,
  `notmuch-hello-trim', `notmuch-hello-versions` => `notmuch-version`,
  `notmuch-remove-if-not`, `notmuch-search-disjunctive-regexp`,
  `notmuch-sexp-eof`, `notmuch-split-content-type`, and
  `notmuch-tree-button-activate`.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 2/2] NEWS: summarize changes to emacs interface.
  2021-04-28  8:08   ` Jonas Bernoulli
@ 2021-04-28 10:22     ` David Bremner
  0 siblings, 0 replies; 5+ messages in thread
From: David Bremner @ 2021-04-28 10:22 UTC (permalink / raw)
  To: Jonas Bernoulli, notmuch

Jonas Bernoulli <jonas@bernoul.li> writes:

> David Bremner <david@tethera.net> writes:
>
> I couldn't wait until tonight. ;)
>

Thanks, I have applied an updated version of this patch with your
suggestions.

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH 1/2] NEWS: mention file deletion speedups
  2021-04-27  0:15 [PATCH 1/2] NEWS: mention file deletion speedups David Bremner
  2021-04-27  0:15 ` [PATCH 2/2] NEWS: summarize changes to emacs interface David Bremner
@ 2021-04-28 10:23 ` David Bremner
  1 sibling, 0 replies; 5+ messages in thread
From: David Bremner @ 2021-04-28 10:23 UTC (permalink / raw)
  To: notmuch

David Bremner <david@tethera.net> writes:

> It seems a bit silly to have two NEWS entries for one commit, but
> there are two potiential audiences.

Applied, along with one spelling fix.

d

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2021-04-28 10:23 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-27  0:15 [PATCH 1/2] NEWS: mention file deletion speedups David Bremner
2021-04-27  0:15 ` [PATCH 2/2] NEWS: summarize changes to emacs interface David Bremner
2021-04-28  8:08   ` Jonas Bernoulli
2021-04-28 10:22     ` David Bremner
2021-04-28 10:23 ` [PATCH 1/2] NEWS: mention file deletion speedups David Bremner

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).