diff --git a/ROADMAP.md b/ROADMAP.md index e14c071..2dfedd8 100644 --- a/ROADMAP.md +++ b/ROADMAP.md @@ -1,4 +1,5 @@ # Release 0.1 +- Set MIME type of file when downloaded - Remember all uploaded files, make files listable - Incognito mode, to not remember files `--incognito` - Automatically get owner token, from file history when setting password diff --git a/cli/Cargo.toml b/cli/Cargo.toml index fbaed61..67ec4d5 100644 --- a/cli/Cargo.toml +++ b/cli/Cargo.toml @@ -4,6 +4,10 @@ version = "0.1.0" authors = ["timvisee "] workspace = ".." +[[bin]] +path = "src/main.rs" +name = "ffsend" + [[bin]] path = "src/main.rs" name = "ffs" diff --git a/cli/src/cmd/cmd/upload.rs b/cli/src/cmd/cmd/upload.rs index 210dbfa..bdd5bbe 100644 --- a/cli/src/cmd/cmd/upload.rs +++ b/cli/src/cmd/cmd/upload.rs @@ -20,8 +20,10 @@ impl CmdUpload { .help("The file to upload") .required(true) .multiple(false)) - .arg(ArgPassword::build()) - .arg(ArgDownloadLimit::build().default_value(DOWNLOAD_DEFAULT)) + .arg(ArgPassword::build() + .help("Protect the file with a password")) + .arg(ArgDownloadLimit::build() + .default_value(DOWNLOAD_DEFAULT)) .arg(ArgHost::build()) .arg(Arg::with_name("name") .long("name")