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 4923241ED96 for ; Fri, 1 Jul 2011 10:26:51 -0700 (PDT) X-Virus-Scanned: Debian amavisd-new at olra.theworths.org X-Spam-Flag: NO X-Spam-Score: -0.799 X-Spam-Level: X-Spam-Status: No, score=-0.799 tagged_above=-999 required=5 tests=[DKIM_SIGNED=0.1, DKIM_VALID=-0.1, DKIM_VALID_AU=-0.1, FREEMAIL_FROM=0.001, RCVD_IN_DNSWL_LOW=-0.7] 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 0shaBli8C+oX for ; Fri, 1 Jul 2011 10:26:50 -0700 (PDT) Received: from mail-bw0-f53.google.com (mail-bw0-f53.google.com [209.85.214.53]) (using TLSv1 with cipher RC4-SHA (128/128 bits)) (No client certificate requested) by olra.theworths.org (Postfix) with ESMTPS id 480FE41ED93 for ; Fri, 1 Jul 2011 10:26:50 -0700 (PDT) Received: by bwg12 with SMTP id 12so3163810bwg.26 for ; Fri, 01 Jul 2011 10:26:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=from:to:cc:subject:date:message-id:x-mailer:in-reply-to:references; bh=r61SVOG+DTOR48jYPYxbRG0yy5SEiLYPpFOBu7gnDTw=; b=WZ+yn96vCrHs0uoaNbU6IMFUXa96TIIAMhw57VXaAhGsWc0nWmeULsbeGAKeT+u/+8 in96MmTcFMxsoMAIbNFky3NHYHG2SJyymq20SHVCrVMn2jRUXnu/lFUUJkDn3H2MFzv2 Dkjaf7/aCd3jsw406BEyNY+0MleV8riCTblOY= Received: by 10.204.84.36 with SMTP id h36mr3488072bkl.76.1309541208652; Fri, 01 Jul 2011 10:26:48 -0700 (PDT) Received: from localhost ([91.144.186.21]) by mx.google.com with ESMTPS id e6sm3186517bka.23.2011.07.01.10.26.46 (version=TLSv1/SSLv3 cipher=OTHER); Fri, 01 Jul 2011 10:26:47 -0700 (PDT) From: Dmitry Kurochkin To: notmuch@notmuchmail.org Subject: [PATCH] NEWS: spellcheck notes for notmuch 0.6 resease Date: Fri, 1 Jul 2011 21:26:42 +0400 Message-Id: <1309541202-4938-1-git-send-email-dmitry.kurochkin@gmail.com> X-Mailer: git-send-email 1.7.5.4 In-Reply-To: <1309515544-15366-1-git-send-email-cworth@cworth.org> References: <1309515544-15366-1-git-send-email-cworth@cworth.org> 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: Fri, 01 Jul 2011 17:26:51 -0000 Just fix some typos in the recently added NEWS for notmuch 0.6 release. --- NEWS | 26 +++++++++++++------------- 1 files changed, 13 insertions(+), 13 deletions(-) diff --git a/NEWS b/NEWS index d55453b..d9ffb02 100644 --- a/NEWS +++ b/NEWS @@ -79,13 +79,13 @@ Deprecate "notmuch search-tags", (in favor of "notmuch search --output=tags *") Performance improvements ------------------------ -Faster searches (by doing fewer serches to construct threads) +Faster searches (by doing fewer searches to construct threads) Whenever a user asks for search results as threads, notmuch first performs a search for messages matching the query, then performs additional searches to find other messages in the resulting threads. - Removing inefficiences and redundancies in these secondary searches + Removing inefficiencies and redundancies in these secondary searches results in a measured speedups of 1.5x for a typical search. Faster searches (by doing fewer passes to gather message data) @@ -130,7 +130,7 @@ User-selectable From address will prompt for the from address to use. The user can customize the "Notmuch Identities" setting in the - notmuch cutomize group in order to use addresses other than those in + notmuch customize group in order to use addresses other than those in the notmuch configuration file if desired. The user can also choose to always be prompted for the from address @@ -154,7 +154,7 @@ New hooks for running code when tags are modified Some users want to perform additional actions whenever a particular tag is added/removed from a message. This could be used to, for example, interface with some external spam-recognition training - tool. T facilitate this, two new hooks are added which can be + tool. To facilitate this, two new hooks are added which can be modified in the following settings of the notmuch customize group: Notmuch Before Tag Hook @@ -181,7 +181,7 @@ Better rendering of text/x-vcalendar parts Avoid getting confused by Subject and Author fields with newline characters - Replacing all characters with ACII code less than 32 with a question mark. + Replacing all characters with ASCII code less than 32 with a question mark. Cleaner display of From line in email messages (remove double quotes, and drop "name" if it's actually just a repeat of the email address). @@ -254,17 +254,17 @@ Binary for bash for running test suite now located via PATH. bash 4). As some systems supply an older version of bash at /bin/bash, the test suite is now updated to search $PATH to locate the bash binary. This allows users of systems with old /bin/bash to - simply install bash >= 4 somwhere on $PATH before /bin and then use + simply install bash >= 4 somewhere on $PATH before /bin and then use the test suite. Support for testing output with a trailing newline. Previously, some tests would fail to notice a difference in the - presense/absence of a trailing newline in a program output, (which + presence/absence of a trailing newline in a program output, (which has led to bugs in the past). Now, carefully-written tests (using test_expect_equal_file rather than test_expect_equal) will detect any change in the presence/absence of a trailing newline. Many tests - are updated to take advnatage of this. + are updated to take advantage of this. Avoiding accessing user's $HOME while running test suite @@ -313,7 +313,7 @@ Fix libnotmuch library to only export notmuch API functions Previous release of the notmuch library also exported some Xapian C++ exception type symbols. These were never part of the library - interface and were never intented to be exported. + interface and were never intended to be exported. Emacs-interface bug fixes ------------------------- @@ -321,16 +321,16 @@ Display any unexpected output or errors from "notmuch search" invocations Previously any misformatted output or trailing error messages were silently ignored. This output is now clearly displayed. This fix was - very helpful in identifying and fixing the bug decribed below. + very helpful in identifying and fixing the bug described below. Fix bug where some threads would be missing from large search results When a search returned a "large" number of results, the emacs - interface was incorrectly dropping one thread everytime the output - of the "notmuch search" process spanned the emacss read-buffer. This + interface was incorrectly dropping one thread every time the output + of the "notmuch search" process spanned the emacs read-buffer. This is now fixed. -Avoid rec-compression of .gz files (and similar) when saving attachment +Avoid re-compression of .gz files (and similar) when saving attachment Emacs was being too clever for its own good and trying to re-compress pre-compressed .gz files when saving such attachments -- 1.7.5.4