diff --git a/docs/config.md b/docs/config.md index f40fb18e2c..d6edab0174 100644 --- a/docs/config.md +++ b/docs/config.md @@ -47,22 +47,16 @@ All configuration options are also available for reading and writing through the * To display all values: `gopass config` * To display a single value: `gopass config autoclip` * To update a single value: `gopass config autoclip false` -* As many other sub-commands this command accepts a `--store` flag to operate on a given sub-store, provided the sub-store is a remote one. Support for different local configurations per mount was dropped in v1.9.3. +* As many other sub-commands this command accepts a `--store` flag to operate on a given sub-store, provided the sub-store is a remote one. This is a list of available options: | **Option** | **Type** | Description | | ---------------- | -------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -| `askformore` | `bool` | If enabled - it will ask to add more data after use of `generate` command. DEPRECATED in v1.10.0 | | `autoclip` | `bool` | Always copy the password created by `gopass generate`. Only applies to generate. | | `autoimport` | `bool` | Import missing keys stored in the pass repository without asking. | -| `autosync` | `bool` | Always do a `git push` after a commit to the store. Makes sure your local changes are always available on your git remote. DEPRECATED in v1.10.0 | -| `concurrency` | `int` | Number of threads to use for batch operations (such as reencrypting). DEPRECATED in v1.9.3 | | `cliptimeout` | `int` | How many seconds the secret is stored when using `-c`. | | `exportkeys` | `bool` | Export public keys of all recipients to the store. | -| `recipient_hash` | `map` | Map of recipient ids to their hashes. DEPRECATED in v1.10.0 | -| `usesymbols` | `bool` | If enabled - it will use symbols when generating passwords. DEPRECATED in v1.9.3 | -| `nocolor` | `bool` | Do not use color. | | `nopager` | `bool` | Do not invoke a pager to display long lists. | | `parsing` | `bool` | Enable parsing of output to have key-value and yaml secrets. | | `path` | `string` | Path to the root store. | diff --git a/gopass.1 b/gopass.1 index 88d1996105..887e3ab481 100644 --- a/gopass.1 +++ b/gopass.1 @@ -192,7 +192,6 @@ Check the integrity of the given sub-store or all stores if none are specified. .TP \fB\-\-decrypt\fR, Decrypt and reencryt during fsck. -WARNING: This will update the secret content to the latest format. This might be incompatible with other implementations. Use with caution! .SS fscopy Copy files from or to the password store diff --git a/zsh.completion b/zsh.completion index 1cb23ebb9e..7131c045a5 100644 --- a/zsh.completion +++ b/zsh.completion @@ -99,8 +99,7 @@ _gopass () { ;; fsck) - _arguments : "--decrypt[Decrypt and reencryt during fsck. -WARNING: This will update the secret content to the latest format. This might be incompatible with other implementations. Use with caution!]" + _arguments : "--decrypt[Decrypt and reencryt during fsck.]" ;;