mirror of
https://git.notmuchmail.org/git/notmuch
synced 2024-11-22 02:48:08 +01:00
notmuch 0.20.2 release
-----BEGIN PGP SIGNATURE----- Version: GnuPG v1 iQGcBAABCAAGBQJVjqAqAAoJEPIClx2kp54sTLYL/iemBYQ2TELiIt8WQiFITKm8 CZdAXUKR75C+Qmh462lRnilbGVzLrYC9opYXUfFH4IUu/1jf4iKYQmd37Qn+cSAG p3/SjFbh6FX0FIqxYegjKFByZju47OtAp+BbPMWyOOEXDASOjwmxMAnm5yzm9At/ xnKV+5nxmN8KqVDvtF/TBtHM9wZ+ASt9yc4ncKgnAaxyWfWeaSTm0EKwTgHwKcKb JZy8XvE9J022Y2r7AWUHjdIyaX5/9cQXtVQg8w238Gp/5FazBN+4yu0Py73nN+pB nb0M9IzHHHolbQd89RYOVyqsZ/uka6gl60wduW5ILGYgG2So9qRcHMLJIHKDigF8 e7j5yGDV6JS6Ub/jMiqKVOPpQv1G7euGqeA9PmQI1UvHEiEoy2kEbPdoyuuKJVbM QxG56SsTy85Irj/o1PeW0+ScxP1y6sQA5E1/YB1BRcgW1uwA2XkiZ+JC1IcqRFvZ ktJxZOIxYqhhYuXTbzd8KL75cvg1cwKVmmgFMunHcg== =m+4D -----END PGP SIGNATURE----- Merge tag '0.20.2' notmuch 0.20.2 release Conflicts: NEWS
This commit is contained in:
commit
8cca886b10
5 changed files with 24 additions and 2 deletions
7
NEWS
7
NEWS
|
@ -6,6 +6,13 @@ Library
|
|||
|
||||
The use of absolute paths is now enforced when calling notmuch_database_{open, create}
|
||||
|
||||
Notmuch 0.20.2 (2015-06-27)
|
||||
===========================
|
||||
|
||||
Emacs Interface
|
||||
---------------
|
||||
|
||||
Bug fix for marking messages read in `notmuch-tree` mode.
|
||||
|
||||
Notmuch 0.20.1 (2015-06-01)
|
||||
===========================
|
||||
|
|
|
@ -1,3 +1,3 @@
|
|||
# this file should be kept in sync with ../../../version
|
||||
__VERSION__ = '0.20.1'
|
||||
__VERSION__ = '0.20.2'
|
||||
SOVERSION = '4'
|
||||
|
|
7
debian/changelog
vendored
7
debian/changelog
vendored
|
@ -1,3 +1,10 @@
|
|||
notmuch (0.20.2-1) unstable; urgency=medium
|
||||
|
||||
* Bug fix: "notmuch-tree does not mark messages as read", thanks to
|
||||
Raúl Benencia (Closes: #789693).
|
||||
|
||||
-- David Bremner <bremner@debian.org> Sat, 27 Jun 2015 15:03:33 +0200
|
||||
|
||||
notmuch (0.20.1-1) unstable; urgency=medium
|
||||
|
||||
* Bug fix: "FTBFS on arm64", thanks to Edmund Grimley Evans (Closes:
|
||||
|
|
|
@ -413,6 +413,13 @@ Does NOT change the database."
|
|||
(ignore-errors
|
||||
(delete-window notmuch-tree-message-window)))))
|
||||
|
||||
(defun notmuch-tree-command-hook ()
|
||||
(when (eq major-mode 'notmuch-tree-mode)
|
||||
;; We just run the notmuch-show-command-hook on the message pane.
|
||||
(when (buffer-live-p notmuch-tree-message-buffer)
|
||||
(with-current-buffer notmuch-tree-message-buffer
|
||||
(notmuch-show-command-hook)))))
|
||||
|
||||
(defun notmuch-tree-show-message-in ()
|
||||
"Show the current message (in split-pane)."
|
||||
(interactive)
|
||||
|
@ -855,6 +862,7 @@ This is is a helper function for notmuch-tree. The arguments are
|
|||
the same as for the function notmuch-tree."
|
||||
(interactive)
|
||||
(notmuch-tree-mode)
|
||||
(add-hook 'post-command-hook #'notmuch-tree-command-hook t t)
|
||||
(setq notmuch-tree-basic-query basic-query)
|
||||
(setq notmuch-tree-query-context query-context)
|
||||
(setq notmuch-tree-target-msg target)
|
||||
|
|
2
version
2
version
|
@ -1 +1 @@
|
|||
0.20.1
|
||||
0.20.2
|
||||
|
|
Loading…
Reference in a new issue