From: Banana Date: Sun, 27 Feb 2022 12:20:58 +0000 (+0100) Subject: cleanup and typos X-Git-Tag: 1.5~14 X-Git-Url: http://91.132.146.200/gitweb/?a=commitdiff_plain;h=f09b6288c3ba15faf125182529d1b30109e5d7fa;p=selfpaste.git cleanup and typos --- diff --git a/CHANGELOG b/CHANGELOG index e4f9274..30bd007 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -1,3 +1,8 @@ +- version 1.3 Oxygen +* Using some more "default" branch names +* New client added: Go client +* Cleanups + 202100321 version 1.3 Nitrogen * Added new default allowed file types * Cleanups diff --git a/VERSION b/VERSION index 56e3251..2bb4224 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.3 Nitrogen +1.4 Oxygen diff --git a/client/bash/selfpaste.default.sh b/client/bash/selfpaste.default.sh index 65dea84..5d3c7a2 100644 --- a/client/bash/selfpaste.default.sh +++ b/client/bash/selfpaste.default.sh @@ -18,7 +18,7 @@ if [ $# -lt 1 ]; then fi; ENDPOINT="http://your.tld/selfpaste/webroot/"; -SELFPASTE_UPLOAD_SECRET="PLEASE CHANGE YOUR SECRET TO SOMTHING"; +SELFPASTE_UPLOAD_SECRET="PLEASE CHANGE YOUR SECRET"; FILENAME="$1"; @@ -38,6 +38,6 @@ if [[ -r $FILENAME ]]; then exit 4; fi; else - echo "Provided file is not accessable." + echo "Provided file is not accessible." exit 3; -fi; \ No newline at end of file +fi; diff --git a/client/c-client-linux/selfpaste.c b/client/c-client-linux/selfpaste.c index 9fc0607..25a1059 100644 --- a/client/c-client-linux/selfpaste.c +++ b/client/c-client-linux/selfpaste.c @@ -33,7 +33,7 @@ * see: https://www.gnu.org/software/libc/manual/html_node/Argp-Example-3.html#Argp-Example-3 */ const char *argp_program_version = "1.1"; -const char *argp_program_bug_address = "https://://www.bananas-playground.net/projekt/selfpaste"; +const char *argp_program_bug_address = "https://www.bananas-playground.net/projekt/selfpaste"; static char doc[] = "selfpaste. Upload given file to your selfpaste installation."; static char args_doc[] = "file";