Skip to content

Commit

Permalink
Version bump [0.1.0 => 1.0.0]
Browse files Browse the repository at this point in the history
  • Loading branch information
ondralukes committed Sep 10, 2020
1 parent 5e4642f commit fd71fc3
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ sfshr -r b6s7cmB1vr5Hd3EjJn5bO88N8cpLoYgQng5yYNwWhTf0BUPGDeaMGMY5BEmoYe9KrcAEjdm
# Unencrypted link
sfshr --no-encryption -r 6yqAvYuVLlBgBkrYWQCyrBjFE1DAt9Tgk8Mir0zLrIs=
```
```

You can also upload whole directories.
### Options
* `-t --tar [tarname]` - store downloaded tar as `[tarname]`, instead of unpacking it
* `-n --no-encryption` - do not encrypt or decrypt the file
* `-q --quiet` - do not print anything (except download key)
* `-s --server [hostname:port]` - specify sfshr server (default: `ondralukes.cz:40788`
2 changes: 1 addition & 1 deletion client/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "sfshr"
version = "0.1.0"
version = "1.0.0"
license = "MIT"
description = "Command-line tool for secure, end-to-end encrypted file sharing"
categories = ["command-line-utilities", "filesystem", "network-programming", "cryptography"]
Expand Down
9 changes: 8 additions & 1 deletion client/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,4 +18,11 @@ sfshr -r b6s7cmB1vr5Hd3EjJn5bO88N8cpLoYgQng5yYNwWhTf0BUPGDeaMGMY5BEmoYe9KrcAEjdm
# Unencrypted link
sfshr --no-encryption -r 6yqAvYuVLlBgBkrYWQCyrBjFE1DAt9Tgk8Mir0zLrIs=
```
```

You can also upload whole directories.
### Options
* `-t --tar [tarname]` - store downloaded tar as `[tarname]`, instead of unpacking it
* `-n --no-encryption` - do not encrypt or decrypt the file
* `-q --quiet` - do not print anything (except download key)
* `-s --server [hostname:port]` - specify sfshr server (default: `ondralukes.cz:40788`
2 changes: 1 addition & 1 deletion client/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ fn main() {
println!(" -r [download key] - download file");
println!(" -t --tar [tarname] - store downloaded tar as [tarname], instead of unpacking it");
println!(" -n --no-encryption - do not encrypt or decrypt the file");
println!(" -q --quiet - do not print anything (expect download key)");
println!(" -q --quiet - do not print anything (except download key)");
println!(" -s --server [hostname:port] - specify sfshr server (default: 'ondralukes.cz:40788')");
exit(0);
} else if arg == "-q" || arg == "--quiet" {
Expand Down

0 comments on commit fd71fc3

Please sign in to comment.