Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -52,16 +52,18 @@ USAGE:
ipget [global options] command [command options] [arguments...]

VERSION:
0.7.0
0.8.0

COMMANDS:
help, h Shows a list of commands or help for one command

GLOBAL OPTIONS:
--output value, -o value specify output location
--node temp, -n temp specify ipfs node strategy ('local', 'spawn', temp or 'fallback') (default: "fallback")
--node value, -n value specify ipfs node strategy ("local", "spawn", "temp" or "fallback") (default: "fallback")
--peers value, -p value specify a set of IPFS peers to connect to
--progress show a progress bar
--help, -h show help
--version, -v print the version
--progress show a progress bar (default: false)
--help, -h show help (default: false)
--version, -v print the version (default: false)
```

## Contribute
Expand Down
2 changes: 1 addition & 1 deletion main.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ func main() {
app := cli.NewApp()
app.Name = "ipget"
app.Usage = "Retrieve and save IPFS objects."
app.Version = "0.7.0"
app.Version = "0.8.0"
app.Flags = []cli.Flag{
&cli.StringFlag{
Name: "output",
Expand Down