Skip to content

Commit

Permalink
Update screenshot (#1745)
Browse files Browse the repository at this point in the history
RELEASE_NOTES=n/a

Signed-off-by: Dominik Schulz <dominik.schulz@gauner.org>
  • Loading branch information
dominikschulz committed Jan 21, 2021
1 parent 16a6b0c commit a658c76
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,14 @@ Gopass is a versatile command line based password manager that is being develope
- **Secure**: Security is hard. We aim to make it as easy as possible while still providing a good level of protection against common adversaries. *Caution*: If your personal threat level is very high, we might not offer a good tool for you.
- **Extensible**: While Gopass includes a fair amount of useful features, we can't cover every use-case. To support more special use cases we want to provide a clean and simple API to integration gopass into your own binaries.

## Demo
## Screenshot

[![asciicast](https://asciinema.org/a/172749.png)](https://asciinema.org/a/172749)
![screenshot](docs/showcase.png)

## Features

Please see [docs/features.md](https://github.com/gopasspw/gopass/blob/master/docs/features.md) for an extensive list of all features along with several usage examples.
Please see [docs/features.md](https://github.com/gopasspw/gopass/blob/master/docs/features.md) for an extensive list of all features along with several usage examples. Some examples are available in our
[example password store](https://github.com/gopasspw/password-store-example).

| **Feature** | **State** | **Description** |
| --------------------------- | ------------- | ----------------------------------------------------------------- |
Expand Down
Binary file added docs/showcase.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
8 changes: 6 additions & 2 deletions internal/action/setup.go
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,13 @@ func (s *Action) initGenerateIdentity(ctx context.Context, crypto backend.Crypto

passphrase := xkcdgen.Random()
pwGenerated := true
if bv, err := termio.AskForBool(ctx, "⚠ Do you want to enter a passphrase? (otherwise we generate one for you)", false); err == nil && bv {
want, err := termio.AskForBool(ctx, "⚠ Do you want to enter a passphrase? (otherwise we generate one for you)", false)
if err != nil {
return err
}
if want {
pwGenerated = false
sv, err := termio.AskForPassword(ctx, "✍ Please enter your passphrase")
sv, err := termio.AskForPassword(ctx, "your new keypair")
if err != nil {
return errors.Wrapf(err, "Failed to read passphrase")
}
Expand Down

0 comments on commit a658c76

Please sign in to comment.