From fd71fc3dd9ce31e98b1d24ca0d17555d09c39d66 Mon Sep 17 00:00:00 2001 From: ondralukes Date: Thu, 10 Sep 2020 19:33:02 +0200 Subject: [PATCH] Version bump [0.1.0 => 1.0.0] --- README.md | 9 ++++++++- client/Cargo.toml | 2 +- client/README.md | 9 ++++++++- client/src/main.rs | 2 +- 4 files changed, 18 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 2124fdc..2d2cd9f 100644 --- a/README.md +++ b/README.md @@ -18,4 +18,11 @@ sfshr -r b6s7cmB1vr5Hd3EjJn5bO88N8cpLoYgQng5yYNwWhTf0BUPGDeaMGMY5BEmoYe9KrcAEjdm # Unencrypted link sfshr --no-encryption -r 6yqAvYuVLlBgBkrYWQCyrBjFE1DAt9Tgk8Mir0zLrIs= -``` \ No newline at end of file +``` + +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` \ No newline at end of file diff --git a/client/Cargo.toml b/client/Cargo.toml index a1a8902..1c09086 100644 --- a/client/Cargo.toml +++ b/client/Cargo.toml @@ -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"] diff --git a/client/README.md b/client/README.md index 2124fdc..2d2cd9f 100644 --- a/client/README.md +++ b/client/README.md @@ -18,4 +18,11 @@ sfshr -r b6s7cmB1vr5Hd3EjJn5bO88N8cpLoYgQng5yYNwWhTf0BUPGDeaMGMY5BEmoYe9KrcAEjdm # Unencrypted link sfshr --no-encryption -r 6yqAvYuVLlBgBkrYWQCyrBjFE1DAt9Tgk8Mir0zLrIs= -``` \ No newline at end of file +``` + +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` \ No newline at end of file diff --git a/client/src/main.rs b/client/src/main.rs index 9bf6167..ec5c31c 100644 --- a/client/src/main.rs +++ b/client/src/main.rs @@ -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" {