aboutsummaryrefslogtreecommitdiffhomepage
path: root/man
Commit message (Collapse)AuthorAge
* man: show and reply --decrypt option requires gpg-agentGravatar Jani Nikula2013-03-02
|
* Merge branch 'release'Gravatar David Bremner2013-02-18
|\ | | | | | | | | | | | | add in NEWS from 0.15.2 Conflicts: NEWS
| * bump versions to 0.15.2Gravatar David Bremner2013-02-17
| |
* | man: document NOTMUCH_TALLOC_REPORT environment variableGravatar David Bremner2013-02-08
| |
* | Merge branch 'release'Gravatar David Bremner2013-01-24
|\| | | | | | | | | | | | | Conflicts: NEWS Inserted news from 0.15.1
| * version: bump to 0.15.1Gravatar David Bremner2013-01-24
| | | | | | | | A simple bugfix release, no user visible changes
* | man: document existing top level optionsGravatar David Bremner2013-01-22
|/ | | | | | The options --help and --version were not documented before. One could quibble about how useful that documentation is, but we will soon add more options.
* version: update to 0.15Gravatar David Bremner2013-01-18
| | | | Bump the version in-place in NEWS.
* version: set version to 0.15~rc1Gravatar David Bremner2013-01-16
| | | | | This is in some sense a rollback, but it makes all the automation happier if the Debian and upstream versions match.
* man: tag changes are applied in the order they are specified in notmuch tagGravatar Jani Nikula2013-01-10
|
* version: bump to 0.15Gravatar David Bremner2013-01-07
| | | | "Atomically" update the python bindings and man page versions.
* man: document notmuch tag --batch, --input optionsGravatar Jani Nikula2013-01-07
|
* man: Update notmuch-dump(1) and notmuch-restore(1)Gravatar Austin Clements2013-01-06
| | | | | Describe the new batch-tag format. For notmuch-restore, rather than half-heartedly duplicating the description, we now cite notmuch-dump.
* notmuch-tag.1: tidy synopsis formatting, referenceGravatar David Bremner2012-12-26
| | | | Consistently use [...]; one less space. Use singular <search-term>
* man: document notmuch search --format=text0Gravatar Jani Nikula2012-12-18
|
* reply: Support --format-versionGravatar Austin Clements2012-12-16
|
* show: Support --format-versionGravatar Austin Clements2012-12-16
|
* search: Support --format-versionGravatar Austin Clements2012-12-16
|
* notmuch-{dump,restore}.1: document new format optionsGravatar David Bremner2012-12-09
| | | | | More or less arbitrarily, notmuch-dump.1 gets the more detailed description of the format.
* Updating man pages for new S-Expression output format.Gravatar Peter Feigl2012-12-08
| | | | | Add sections about the new S-Expression output format (--format=sexp) to the notmuch-search, notmuch-reply and notmuch-show man pages.
* man: document the date:since..until range queriesGravatar Jani Nikula2012-10-31
|
* {., man}/Makefile.local: edit/remove release-checks.sh related targetsGravatar Tomi Ollila2012-09-05
| | | | | | | Use new target release-checks in place of verify-version-debian, verify-version-python verify-version-manpage. This target executes devel/release-checks.sh which does all the verifications the three dropped targets did, and some more.
* version: propagate version changesGravatar David Bremner2012-08-21
| | | | These are the result of running "make update-versions"
* notmuch-restore: replace positional argument for input with optionGravatar David Bremner2012-08-06
| | | | | Since notmuch dump doesn't use positional arguments anymore, it seems better to be consistent.
* notmuch-dump: remove deprecated positional argument for output fileGravatar David Bremner2012-08-06
| | | | | | The syntax --output=filename is a smaller change than deleting the output argument completely, and conceivably useful e.g. when running notmuch under a debugger.
* man: show: update man page for entire-thread and json.Gravatar Mark Walters2012-07-25
| | | | | | Previously in notmuch show --format=json implied --entire-thread. This is still the default but it is now possible to disable this. Update the manpage to reflect this.
* man: update man page for the new --body=true|false optionGravatar Mark Walters2012-07-24
|
* manpages: consistent "format" for NAME sectionGravatar Tomi Ollila2012-07-09
| | | | | | The NAME section in manpages generally doesn't start with capital letter (unless the word is 'proper noun') and doesn't end with period. Notmuch manual pages now matches that "format".
* Merge tag '0.13.2'Gravatar David Bremner2012-06-03
|\ | | | | | | notmuch 0.13.2 release
| * version: update to 0.13.2Gravatar David Bremner2012-06-02
| |
* | Merge branch 'release'Gravatar David Bremner2012-05-29
|\|
* | cli: fix documentation about --decrypt for showGravatar Jameson Graef Rollins2012-05-25
| | | | | | | | Forgot to mention that it implies --verify.
| * version: bump to 0.13.1Gravatar David Bremner2012-05-25
|/
* version: bump to 0.13Gravatar David Bremner2012-05-15
|
* bump version to 0.13~rc1Gravatar David Bremner2012-05-08
|
* man: Document 'config list' commandGravatar Peter Wang2012-04-28
| | | | Document the 'config list' command and its output.
* cli: move show to the new --exclude= option naming scheme.Gravatar Mark Walters2012-04-07
| | | | | | | | | | | | | | This moves notmuch show to the --exclude=(true|false) naming scheme. When exclude=false show returns all threads that match including those that only match in an excluded message. The excluded messages are flagged. When exclude=true the behaviour depends on whether --entire-thread is set. If it is not set then show only returns the messages which match and are not excluded. If it is set then show returns all messages in the threads that match in a non-excluded message, flagging the excluded messages in these threads. The rationale is that it is awkward to use a thread with some missing messages.
* cli: move search to the new --exclude= naming scheme.Gravatar Mark Walters2012-04-07
| | | | | | | | | | | | | | | | | | This commit replaces the --no-exclude option with a --exclude=(true|false|flag) option. The default is to omit the excluded messages. The flag option only makes sense if output=summary (as otherwise there is nowhere to print the flag). In summary output exclude=false and exclude=flag give almost identical output: they differ in that with the exclude=flag option the match count (i.e., the x in [x/n] in the output) is the number of matching non-excluded messages rather than the number of matching messages. Note this changes the default for output=summary when no --exclude= option is given: it used to default to flag and now defaults to true (i.e. omit excluded messages). This is neccesary to keep the cli output uncluttered and for speed reasons.
* cli: move count to the new --exclude=(true|false|flag) naming scheme.Gravatar Mark Walters2012-04-07
| | | | | | | Move the option --no-exclude to the --exclude= scheme. Since there is no way to flag messages only true and false are implemented. Note that, for consistency with other commands, this is implemented as a keyword option rather than a boolean option.
* Merge branch 'release'Gravatar David Bremner2012-03-19
|\ | | | | | | | | | | | | Conflicts: NEWS Conflicts resolved by hand for date of 0.12 release.
| * update version to 0.12Gravatar David Bremner2012-03-19
| | | | | | | | There may be a few NEWS changes after this, but no code (hopefully).
* | man: Add --decrypt to reply flagsGravatar Adam Wolfe Gordon2012-03-19
| |
* | man: Update notmuch-reply man page for JSON format.Gravatar Adam Wolfe Gordon2012-03-19
| |
* | man: Update raw format documentationGravatar Austin Clements2012-03-18
| |
* | Merge tag '0.12_rc2'Gravatar David Bremner2012-03-18
|\| | | | | | | notmuch 0.12~rc2 release
| * bump version to 0.12~rc2Gravatar David Bremner2012-03-18
| |
* | Merge branch 'release'Gravatar David Bremner2012-03-13
|\|
| * man: update SEE ALSO references in man pagesGravatar Jani Nikula2012-03-13
| | | | | | | | | | Drop references to notmuch-part(1). Reference all man pages. Fix man page section of notmuch-dump(1).
* | Make exclusion visible againGravatar David Bremner2012-03-03
| | | | | | | | | | | | | | | | This reverts dfee0f9 man: remove search.exclude_tags from notmuch-config.1 for 0.12 e83409d NEWS: revert NEWS item for exclude tags for 0.12 e77b031 config: disable addition of exclude tags for 0.12
* | Merge branch 'release'Gravatar David Bremner2012-03-03
|\|