]> 91.132.146.200 Git - selfpaste.git/commitdiff
cleanup and typos
authorBanana <mail@bananas-playground.net>
Sun, 27 Feb 2022 12:20:58 +0000 (13:20 +0100)
committerBanana <mail@bananas-playground.net>
Sun, 27 Feb 2022 12:20:58 +0000 (13:20 +0100)
CHANGELOG
VERSION
client/bash/selfpaste.default.sh
client/c-client-linux/selfpaste.c

index e4f927402fe1ac5625a49dea0c287cdc3012859e..30bd007e062065d697c3e2236f29b1bd47465bd9 100644 (file)
--- 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 56e32513f22a1cc1924f8201e52a6849fb3deffc..2bb42248c3d7dd962c271d7507476605d3572a32 100644 (file)
--- a/VERSION
+++ b/VERSION
@@ -1 +1 @@
-1.3 Nitrogen
+1.4 Oxygen
index 65dea84bbfff84bbf8a290a138dd8f5ba1029878..5d3c7a2cd38a622320cd20539ce129a6b1f45bfa 100644 (file)
@@ -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;
index 9fc0607cf6042b955e4c4b1d4e2bde6b25a36a06..25a1059bf05d9e8bde6ca074125258070d4a660e 100644 (file)
@@ -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";