unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
* [PATCH 1/4] NEWS: nmbug-status supports sort order
@ 2015-10-17 13:06 Jani Nikula
  2015-10-17 13:06 ` [PATCH 2/4] NEWS: news for date:<expr>..! Jani Nikula
                   ` (3 more replies)
  0 siblings, 4 replies; 9+ messages in thread
From: Jani Nikula @ 2015-10-17 13:06 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/NEWS b/NEWS
index 3593ded71bd7..95470d7c070b 100644
--- a/NEWS
+++ b/NEWS
@@ -27,6 +27,11 @@ Library
 The use of absolute paths is now enforced when calling
 `notmuch_database_{open, create}`.
 
+nmbug-status
+------------
+
+nmbug-status now supports specifying the sort order for each view
+
 Notmuch 0.20.2 (2015-06-27)
 ===========================
 
-- 
2.1.4

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

* [PATCH 2/4] NEWS: news for date:<expr>..!
  2015-10-17 13:06 [PATCH 1/4] NEWS: nmbug-status supports sort order Jani Nikula
@ 2015-10-17 13:06 ` Jani Nikula
  2015-10-17 14:24   ` Tomi Ollila
  2015-10-17 13:06 ` [PATCH 3/4] NEWS: news for notmuch address --deduplicate option Jani Nikula
                   ` (2 subsequent siblings)
  3 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2015-10-17 13:06 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/NEWS b/NEWS
index 95470d7c070b..317e7e62deaa 100644
--- a/NEWS
+++ b/NEWS
@@ -7,6 +7,13 @@ General
 Notmuch now requires gmime >= 2.6.7. The gmime 2.4 series is no longer
 supported.
 
+Date queries now support `date:<expr>..!` shorthand for
+`date:<expr>..<expr>`.
+
+  You can use, for example, `date:yesterday..!` to match from the
+  beginning of yesterday to the end of yesterday. For further details,
+  please refer to the `notmuch-search-terms` manual page.
+
 Emacs Interface
 ---------------
 
-- 
2.1.4

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

* [PATCH 3/4] NEWS: news for notmuch address --deduplicate option
  2015-10-17 13:06 [PATCH 1/4] NEWS: nmbug-status supports sort order Jani Nikula
  2015-10-17 13:06 ` [PATCH 2/4] NEWS: news for date:<expr>..! Jani Nikula
@ 2015-10-17 13:06 ` Jani Nikula
  2015-10-17 14:25   ` Tomi Ollila
  2015-10-17 13:06 ` [PATCH 4/4] NEWS: news for notmuch_directory_delete Jani Nikula
  2015-10-17 14:24 ` [PATCH 1/4] NEWS: nmbug-status supports sort order Tomi Ollila
  3 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2015-10-17 13:06 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/NEWS b/NEWS
index 317e7e62deaa..9940f8185e82 100644
--- a/NEWS
+++ b/NEWS
@@ -14,6 +14,19 @@ Date queries now support `date:<expr>..!` shorthand for
   beginning of yesterday to the end of yesterday. For further details,
   please refer to the `notmuch-search-terms` manual page.
 
+Command-Line Interface
+----------------------
+
+The `notmuch address` command supports new deduplication schemes
+
+  `notmuch address` has gained a new `--deduplicate` option to specify
+  how the results should be deduplicated, if at all. The alternatives
+  are `no` (do not deduplicate, useful for processing the results with
+  external tools), `mailbox` (deduplicate based on the full, case
+  sensitive name and email address), and `address` (deduplicate based
+  on the case insensitive address part). See the `notmuch-address`
+  manual page for further information.
+
 Emacs Interface
 ---------------
 
-- 
2.1.4

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

* [PATCH 4/4] NEWS: news for notmuch_directory_delete
  2015-10-17 13:06 [PATCH 1/4] NEWS: nmbug-status supports sort order Jani Nikula
  2015-10-17 13:06 ` [PATCH 2/4] NEWS: news for date:<expr>..! Jani Nikula
  2015-10-17 13:06 ` [PATCH 3/4] NEWS: news for notmuch address --deduplicate option Jani Nikula
@ 2015-10-17 13:06 ` Jani Nikula
  2015-10-17 14:24   ` Tomi Ollila
  2015-10-17 14:24 ` [PATCH 1/4] NEWS: nmbug-status supports sort order Tomi Ollila
  3 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2015-10-17 13:06 UTC (permalink / raw)
  To: notmuch

---
 NEWS | 13 +++++++++++++
 1 file changed, 13 insertions(+)

diff --git a/NEWS b/NEWS
index 9940f8185e82..c5417144b755 100644
--- a/NEWS
+++ b/NEWS
@@ -47,6 +47,19 @@ Library
 The use of absolute paths is now enforced when calling
 `notmuch_database_{open, create}`.
 
+New function `notmuch_directory_delete` to delete directory documents
+
+  Previously there was no way to delete directory documents from the
+  database, leading to confusing results when the "ghost" directory
+  document of a renamed or deleted filesystem directory was
+  encountered every time the parent directory was being scanned by
+  `notmuch new`. The mtime of the old directory document was also used
+  if a directory by the same name was added again in the filesystem,
+  potentially bypassing the scan for the directory. The issues are
+  fixed by providing a library call to delete directory documents, and
+  deleting the old documents in `notmuch new` on filesystem directory
+  removal or rename.
+
 nmbug-status
 ------------
 
-- 
2.1.4

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

* Re: [PATCH 1/4] NEWS: nmbug-status supports sort order
  2015-10-17 13:06 [PATCH 1/4] NEWS: nmbug-status supports sort order Jani Nikula
                   ` (2 preceding siblings ...)
  2015-10-17 13:06 ` [PATCH 4/4] NEWS: news for notmuch_directory_delete Jani Nikula
@ 2015-10-17 14:24 ` Tomi Ollila
  3 siblings, 0 replies; 9+ messages in thread
From: Tomi Ollila @ 2015-10-17 14:24 UTC (permalink / raw)
  To: Jani Nikula, notmuch

On Sat, Oct 17 2015, Jani Nikula <jani@nikula.org> wrote:

> ---
>  NEWS | 5 +++++
>  1 file changed, 5 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index 3593ded71bd7..95470d7c070b 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -27,6 +27,11 @@ Library
>  The use of absolute paths is now enforced when calling
>  `notmuch_database_{open, create}`.
>  
> +nmbug-status
> +------------
> +
> +nmbug-status now supports specifying the sort order for each view

Amend to have trailing dot.

> +
>  Notmuch 0.20.2 (2015-06-27)
>  ===========================
>  
> -- 
> 2.1.4
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH 2/4] NEWS: news for date:<expr>..!
  2015-10-17 13:06 ` [PATCH 2/4] NEWS: news for date:<expr>..! Jani Nikula
@ 2015-10-17 14:24   ` Tomi Ollila
  2015-10-17 16:18     ` Jani Nikula
  0 siblings, 1 reply; 9+ messages in thread
From: Tomi Ollila @ 2015-10-17 14:24 UTC (permalink / raw)
  To: Jani Nikula, notmuch

On Sat, Oct 17 2015, Jani Nikula <jani@nikula.org> wrote:

> ---
>  NEWS | 7 +++++++
>  1 file changed, 7 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index 95470d7c070b..317e7e62deaa 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -7,6 +7,13 @@ General
>  Notmuch now requires gmime >= 2.6.7. The gmime 2.4 series is no longer
>  supported.
>  
> +Date queries now support `date:<expr>..!` shorthand for
> +`date:<expr>..<expr>`.

Amend to drop trailing dot.

> +
> +  You can use, for example, `date:yesterday..!` to match from the
> +  beginning of yesterday to the end of yesterday. For further details,
> +  please refer to the `notmuch-search-terms` manual page.
> +
>  Emacs Interface
>  ---------------
>  
> -- 
> 2.1.4
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH 4/4] NEWS: news for notmuch_directory_delete
  2015-10-17 13:06 ` [PATCH 4/4] NEWS: news for notmuch_directory_delete Jani Nikula
@ 2015-10-17 14:24   ` Tomi Ollila
  0 siblings, 0 replies; 9+ messages in thread
From: Tomi Ollila @ 2015-10-17 14:24 UTC (permalink / raw)
  To: Jani Nikula, notmuch

On Sat, Oct 17 2015, Jani Nikula <jani@nikula.org> wrote:

> ---
>  NEWS | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index 9940f8185e82..c5417144b755 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -47,6 +47,19 @@ Library
>  The use of absolute paths is now enforced when calling
>  `notmuch_database_{open, create}`.
>  
> +New function `notmuch_directory_delete` to delete directory documents
> +
> +  Previously there was no way to delete directory documents from the
> +  database, leading to confusing results when the "ghost" directory
> +  document of a renamed or deleted filesystem directory was
> +  encountered every time the parent directory was being scanned by
> +  `notmuch new`. The mtime of the old directory document was also used
> +  if a directory by the same name was added again in the filesystem,
> +  potentially bypassing the scan for the directory. The issues are
> +  fixed by providing a library call to delete directory documents, and
> +  deleting the old documents in `notmuch new` on filesystem directory
> +  removal or rename.

LGTM (format).

> +
>  nmbug-status
>  ------------
>  
> -- 
> 2.1.4
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH 3/4] NEWS: news for notmuch address --deduplicate option
  2015-10-17 13:06 ` [PATCH 3/4] NEWS: news for notmuch address --deduplicate option Jani Nikula
@ 2015-10-17 14:25   ` Tomi Ollila
  0 siblings, 0 replies; 9+ messages in thread
From: Tomi Ollila @ 2015-10-17 14:25 UTC (permalink / raw)
  To: Jani Nikula, notmuch

On Sat, Oct 17 2015, Jani Nikula <jani@nikula.org> wrote:

> ---
>  NEWS | 13 +++++++++++++
>  1 file changed, 13 insertions(+)
>
> diff --git a/NEWS b/NEWS
> index 317e7e62deaa..9940f8185e82 100644
> --- a/NEWS
> +++ b/NEWS
> @@ -14,6 +14,19 @@ Date queries now support `date:<expr>..!` shorthand for
>    beginning of yesterday to the end of yesterday. For further details,
>    please refer to the `notmuch-search-terms` manual page.
>  
> +Command-Line Interface
> +----------------------
> +
> +The `notmuch address` command supports new deduplication schemes
> +
> +  `notmuch address` has gained a new `--deduplicate` option to specify
> +  how the results should be deduplicated, if at all. The alternatives
> +  are `no` (do not deduplicate, useful for processing the results with
> +  external tools), `mailbox` (deduplicate based on the full, case
> +  sensitive name and email address), and `address` (deduplicate based
> +  on the case insensitive address part). See the `notmuch-address`
> +  manual page for further information.
> +

LGTM (format).

>  Emacs Interface
>  ---------------
>  
> -- 
> 2.1.4
>
> _______________________________________________
> notmuch mailing list
> notmuch@notmuchmail.org
> http://notmuchmail.org/mailman/listinfo/notmuch

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

* Re: [PATCH 2/4] NEWS: news for date:<expr>..!
  2015-10-17 14:24   ` Tomi Ollila
@ 2015-10-17 16:18     ` Jani Nikula
  0 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2015-10-17 16:18 UTC (permalink / raw)
  To: Tomi Ollila, notmuch

On Sat, 17 Oct 2015, Tomi Ollila <tomi.ollila@iki.fi> wrote:
> On Sat, Oct 17 2015, Jani Nikula <jani@nikula.org> wrote:
>
>> ---
>>  NEWS | 7 +++++++
>>  1 file changed, 7 insertions(+)
>>
>> diff --git a/NEWS b/NEWS
>> index 95470d7c070b..317e7e62deaa 100644
>> --- a/NEWS
>> +++ b/NEWS
>> @@ -7,6 +7,13 @@ General
>>  Notmuch now requires gmime >= 2.6.7. The gmime 2.4 series is no longer
>>  supported.
>>  
>> +Date queries now support `date:<expr>..!` shorthand for
>> +`date:<expr>..<expr>`.
>
> Amend to drop trailing dot.

Err, what? So there must not be a dot when there's an indented section
following, and must be a dot when there's not? Is that it? What's the
magic command to check the formatting?

J.


>
>> +
>> +  You can use, for example, `date:yesterday..!` to match from the
>> +  beginning of yesterday to the end of yesterday. For further details,
>> +  please refer to the `notmuch-search-terms` manual page.
>> +
>>  Emacs Interface
>>  ---------------
>>  
>> -- 
>> 2.1.4
>>
>> _______________________________________________
>> notmuch mailing list
>> notmuch@notmuchmail.org
>> http://notmuchmail.org/mailman/listinfo/notmuch

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

end of thread, other threads:[~2015-10-17 16:19 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-10-17 13:06 [PATCH 1/4] NEWS: nmbug-status supports sort order Jani Nikula
2015-10-17 13:06 ` [PATCH 2/4] NEWS: news for date:<expr>..! Jani Nikula
2015-10-17 14:24   ` Tomi Ollila
2015-10-17 16:18     ` Jani Nikula
2015-10-17 13:06 ` [PATCH 3/4] NEWS: news for notmuch address --deduplicate option Jani Nikula
2015-10-17 14:25   ` Tomi Ollila
2015-10-17 13:06 ` [PATCH 4/4] NEWS: news for notmuch_directory_delete Jani Nikula
2015-10-17 14:24   ` Tomi Ollila
2015-10-17 14:24 ` [PATCH 1/4] NEWS: nmbug-status supports sort order Tomi Ollila

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).