Return-Path: X-Original-To: notmuch@notmuchmail.org Delivered-To: notmuch@notmuchmail.org Received: from localhost (localhost [127.0.0.1]) by olra.theworths.org (Postfix) with ESMTP id B82EA429E29 for ; Mon, 2 Jan 2012 14:17:01 -0800 (PST) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -2.3 X-Spam-Level: X-Spam-Status: No, score=-2.3 tagged_above=-999 required=5 tests=[RCVD_IN_DNSWL_MED=-2.3] autolearn=disabled Received: from olra.theworths.org ([127.0.0.1]) by localhost (olra.theworths.org [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id ZpMnSEMUXMrU for ; Mon, 2 Jan 2012 14:17:01 -0800 (PST) Received: from outgoing-mail.its.caltech.edu (outgoing-mail.its.caltech.edu [131.215.239.19]) by olra.theworths.org (Postfix) with ESMTP id 40339429E21 for ; Mon, 2 Jan 2012 14:17:01 -0800 (PST) Received: from earth-doxen.imss.caltech.edu (localhost [127.0.0.1]) by earth-doxen-postvirus (Postfix) with ESMTP id D0AE566E0127 for ; Mon, 2 Jan 2012 14:16:58 -0800 (PST) X-Spam-Scanned: at Caltech-IMSS on earth-doxen by amavisd-new Received: from finestructure.net (cpe-76-174-137-84.socal.res.rr.com [76.174.137.84]) (Authenticated sender: jrollins) by earth-doxen-submit (Postfix) with ESMTP id EA63066E00A8 for ; Mon, 2 Jan 2012 14:16:56 -0800 (PST) Received: by finestructure.net (Postfix, from userid 1000) id 8B825E3E; Mon, 2 Jan 2012 14:16:56 -0800 (PST) From: Jameson Graef Rollins To: Notmuch Mail Subject: [PATCH 2/2] update NEWS Date: Mon, 2 Jan 2012 14:16:51 -0800 Message-Id: <1325542611-20511-3-git-send-email-jrollins@finestructure.net> X-Mailer: git-send-email 1.7.7.3 In-Reply-To: <1325542611-20511-2-git-send-email-jrollins@finestructure.net> References: <8739byiaef.fsf@zancas.localnet> <1325542611-20511-1-git-send-email-jrollins@finestructure.net> <1325542611-20511-2-git-send-email-jrollins@finestructure.net> X-BeenThere: notmuch@notmuchmail.org X-Mailman-Version: 2.1.13 Precedence: list List-Id: "Use and development of the notmuch mail system." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Jan 2012 22:17:01 -0000 This change looks slightly larger than it actually is, since I moved the emacs section below the Performance and Memory Management sections. --- NEWS | 51 ++++++++++++++++++++++++++++++++++++++++----------- 1 files changed, 40 insertions(+), 11 deletions(-) diff --git a/NEWS b/NEWS index 6650126..ca8edb9 100644 --- a/NEWS +++ b/NEWS @@ -11,6 +11,28 @@ Hooks supports "pre-new" and "post-new" hooks that are run before and after importing new messages into the database. +Performance +----------- + +Automatic tag query optimization + + "notmuch tag" now automatically optimizes the user's query to + exclude messages whose tags won't change. In the past, we've + suggested that people do this by hand; this is no longer necessary. + +Don't sort messages when creating a dump file + + This speads up tag dumps considerably, without any loss of + information. + +Memory Management +----------------- + +Reduction of memory leaks + + Two memory leaks when searching and showing messages were identified + and fixed in this release. + Emacs Interface --------------- @@ -34,22 +56,29 @@ Improvements in saved search management not inserted in front. It's also possible to define a sort function for displaying saved searches; alphabetical sort is provided. -Performance ------------ +Enable hooks for notmuch-hello-mode and notmuch-hello-refresh -Automatic tag query optimization +Customizable message indentation width - "notmuch tag" now automatically optimizes the user's query to - exclude messages whose tags won't change. In the past, we've - suggested that people do this by hand; this is no longer necessary. + notmuch-show-indent-messages-width -Memory Management ------------------ +Customizable thousands separator -Reduction of memory leaks + The new configuartion variable is notmuch-hello-thousands-separator. + The default is now a space instead of a comma. - Two memory leaks when searching and showing messages were identified - and fixed in this release. +Call notmuch-show instead of notmuch-search when clicking on +buttonized id: links. + +New function notmuch-show-advance + + This new function advances through just the current thread, and is + less invasive than notmuch-show-advance-and-archive. It can easily + be bound to SPC with: + + (define-key notmuch-show-mode-map " " 'notmuch-show-advance) + +Various performance improvements. New add-on tool --------------- -- 1.7.7.3