notmuch 0.25.1 release

-----BEGIN PGP SIGNATURE-----
 
 iQGzBAABCAAdFiEE3VS2dnyDRXKVCQCp8gKXHaSnniwFAlm3OCwACgkQ8gKXHaSn
 niz5Swv/bhm/cSBRoav7deonMPfAAqloeNSdCpcOksEvGFtn6PZMHPDLfQ0DORcb
 pHIfGnrIpGFKlOZ8zO4Q3ANhito7hCCaasn6k70Zhpu5KV+YMCKMABtnho1p3jKT
 elK/3tkvlcWFEgRBVbuLsTn/iYFz8kaukfRyh+BhlchJSifSZQDFaPnmxOCvOfNK
 Aipp7o/yAQGgiXUczISgceirOEruq3QePC9Bjbzj3UKa5D/UUqki37xlojl9dUC7
 eNmt/grittR4e0eU5ytKck5KlVwxirs9U3Hm9A8o9giWkk98lJYobLXpDFPQ8Ock
 7GGIMyP3DGBGTfn5mswKUdiEsuCgobH47y4RBd0jpSyTpFDSTD/BTYTiU/kSa8k4
 XNO9uS4+jrgUJ4rfrZYK1VNXfQ85L17zZCpgeGgV+XguVcLKwQEjQ945/wk32pVh
 03vdQX57myPLWeWVo5pIB0qzKeuEuaZ5b2m1QngHYUgROEm5PZnBGGHkgS50dNxp
 5156wSur
 =dTj5
 -----END PGP SIGNATURE-----

Merge tag '0.25.1'

notmuch 0.25.1 release (bugfix for emacs bug 28350)
This commit is contained in:
David Bremner 2017-09-11 22:32:00 -03:00
commit 4366895062
5 changed files with 23 additions and 4 deletions

9
NEWS
View file

@ -1,3 +1,12 @@
Notmuch 0.25.1 (2017-09-11)
===========================
Emacs
-----
Disable handling x-display in text/enriched messages. Mitigation for
Emacs bug #28350.
Notmuch 0.25 (2017-07-25)
=========================

View file

@ -1,3 +1,3 @@
# this file should be kept in sync with ../../../version
__VERSION__ = '0.25'
__VERSION__ = '0.25.1'
SOVERSION = '5'

5
debian/changelog vendored
View file

@ -1,9 +1,10 @@
notmuch (0.25-7) UNRELEASED; urgency=medium
notmuch (0.25.1-1) unstable; urgency=medium
* new upstream bugfix release: mitigation for emacs bug 28350
* remove obsolete lintian override
* reformat debian/NEWS
-- David Bremner <bremner@debian.org> Wed, 16 Aug 2017 21:35:44 -0300
-- David Bremner <bremner@debian.org> Mon, 11 Sep 2017 22:20:48 -0300
notmuch (0.25-6) unstable; urgency=medium

View file

@ -773,6 +773,15 @@ will return nil if the CID is unknown or cannot be retrieved."
(defun notmuch-show-insert-part-text/x-vcalendar (msg part content-type nth depth button)
(notmuch-show-insert-part-text/calendar msg part content-type nth depth button))
;; https://bugs.gnu.org/28350
(defun notmuch-show--enriched-decode-display-prop (start end &optional param)
(list start end))
(defun notmuch-show-insert-part-text/enriched (msg part content-type nth depth button)
(advice-add 'enriched-decode-display-prop :override
#'notmuch-show--enriched-decode-display-prop)
nil)
(defun notmuch-show-get-mime-type-of-application/octet-stream (part)
;; If we can deduce a MIME type from the filename of the attachment,
;; we return that.

View file

@ -1 +1 @@
0.25
0.25.1