From 67094a76888c906ff1395659513f97e1fb751252 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:21:48 +0000 Subject: [PATCH 1/6] Added donate feature --- lgsm/functions/command_donate.sh | 18 ++++++++++++++++++ lgsm/functions/core_functions.sh | 14 ++++++++++---- lgsm/functions/core_getopt.sh | 2 ++ lgsm/functions/install_header.sh | 8 ++++---- 4 files changed, 34 insertions(+), 8 deletions(-) create mode 100644 lgsm/functions/command_donate.sh diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh new file mode 100644 index 000000000..78bfc48b7 --- /dev/null +++ b/lgsm/functions/command_donate.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# LinuxGSM command_donate.sh function +# Author: Daniel Gibbs +# Website: https://linuxgsm.com +# Description: Shows ways to donate + +echo "Support LinuxGSM" +echo "=================================" +echo "" +echo "Been using LinuxGSM?" +echo "Consider donating to support development." +echo "" +echo "* Patreon: https://linuxgsm.com/patreon" +echo "* PayPal: https://linuxgsm.com/paypal" +echo "* Flattr: https://linuxgsm.com/flattr" +echo "* Buy me a Coffee: https://linuxgsm.com/coffee" +echo "" +echo "LinuxGSM has been going since 2012" \ No newline at end of file diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f4b27fdd1..416835504 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -51,6 +51,12 @@ fn_fetch_function # Commands + +command_backup.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_console.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -61,22 +67,22 @@ functionfile="${FUNCNAME}" fn_fetch_function } -command_postdetails.sh(){ +command_details.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_details.sh(){ +command_donate.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_test_alert.sh(){ +command_postdetails.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_backup.sh(){ +command_test_alert.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 07b5e71f9..44cb64b5e 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -50,6 +50,8 @@ cmd_dev_detect_glibc=( "dg;detect-glibc" "command_dev_detect_glibc.sh" "Detect r cmd_dev_detect_ldd=( "dl;detect-ldd" "command_dev_detect_ldd.sh" "Detect required dynamic dependencies." ) cmd_dev_query_raw=( "qr;query-raw" "command_dev_query_raw.sh" "The raw output of gamedig and gsquery." ) cmd_dev_clear_functions=( "cf;clear-functions" "command_dev_clear_functions.sh" "Delete the contents of the functions dir." ) +# Donate +cmd_donate=( "do;donate" "command_donate.sh" "Donation options." ) ### Set specific opt here ### diff --git a/lgsm/functions/install_header.sh b/lgsm/functions/install_header.sh index cae416547..40c2845fc 100644 --- a/lgsm/functions/install_header.sh +++ b/lgsm/functions/install_header.sh @@ -10,9 +10,9 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" clear echo "=================================" -echo "${gamename}" -echo "Linux Game Server Manager" +echo "LinuxGSM - ${gamename}" echo "by Daniel Gibbs" -echo "Contributors: http://goo.gl/qLmitD" -echo "https://linuxgsm.com" +echo "Website: https://linuxgsm.com" +echo "Contributors: https://linuxgsm.com/contrib" +echo "Donate: https://linuxgsm.com/donate" echo "=================================" From 132a9865904373654f9e0c73ef9b9dd1807c8872 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:25:37 +0000 Subject: [PATCH 2/6] minor visual adjustment --- lgsm/functions/core_getopt.sh | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 44cb64b5e..4766fabe9 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -20,6 +20,7 @@ cmd_backup=( "b;backup" "command_backup.sh" "Create backup archives of the serve cmd_update_linuxgsm=( "ul;update-lgsm;uf;update-functions" "command_update_linuxgsm.sh" "Check and apply any LinuxGSM updates." ) cmd_test_alert=( "ta;test-alert" "command_test_alert.sh" "Send a test alert." ) cmd_monitor=( "m;monitor" "command_monitor.sh" "Check server status and restart if crashed." ) +cmd_donate=( "do;donate" "command_donate.sh" "Donation options." ) # Console servers only cmd_console=( "c;console" "command_console.sh" "Access server console." ) cmd_debug=( "d;debug" "command_debug.sh" "Start server directly in your terminal." ) @@ -50,8 +51,7 @@ cmd_dev_detect_glibc=( "dg;detect-glibc" "command_dev_detect_glibc.sh" "Detect r cmd_dev_detect_ldd=( "dl;detect-ldd" "command_dev_detect_ldd.sh" "Detect required dynamic dependencies." ) cmd_dev_query_raw=( "qr;query-raw" "command_dev_query_raw.sh" "The raw output of gamedig and gsquery." ) cmd_dev_clear_functions=( "cf;clear-functions" "command_dev_clear_functions.sh" "Delete the contents of the functions dir." ) -# Donate -cmd_donate=( "do;donate" "command_donate.sh" "Donation options." ) + ### Set specific opt here ### @@ -138,6 +138,9 @@ if [ -f ".dev-debug" ]; then currentopt+=( "${cmd_dev_detect_deps[@]}" "${cmd_dev_detect_glibc[@]}" "${cmd_dev_detect_ldd[@]}" "${cmd_dev_query_raw[@]}" "${cmd_dev_clear_functions[@]}" ) fi +## Donate +currentopt+=( "${cmd_donate[@]}" ) + ### Build list of available commands optcommands=() index="0" @@ -152,7 +155,7 @@ done fn_opt_usage(){ echo "Usage: $0 [option]" echo -e "" - echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "LinuxGSM - ${gamename} - Version ${version}" echo "https://linuxgsm.com/${gameservername}" echo -e "" echo -e "${lightyellow}Commands${default}" From 26b726d60f513e2fb346e57ca5c5775027fdd901 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:56:17 +0000 Subject: [PATCH 3/6] Visual updates --- lgsm/functions/command_donate.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh index 78bfc48b7..cc9391e3d 100644 --- a/lgsm/functions/command_donate.sh +++ b/lgsm/functions/command_donate.sh @@ -4,15 +4,15 @@ # Website: https://linuxgsm.com # Description: Shows ways to donate +echo "" echo "Support LinuxGSM" echo "=================================" echo "" echo "Been using LinuxGSM?" echo "Consider donating to support development." echo "" -echo "* Patreon: https://linuxgsm.com/patreon" -echo "* PayPal: https://linuxgsm.com/paypal" -echo "* Flattr: https://linuxgsm.com/flattr" -echo "* Buy me a Coffee: https://linuxgsm.com/coffee" +echo "* ${blue}Patreon:${default} https://linuxgsm.com/patreon" +echo "* ${blue}PayPal:${default} https://linuxgsm.com/paypal" +echo "* ${blue}Flattr:${default} https://linuxgsm.com/flattr" echo "" echo "LinuxGSM has been going since 2012" \ No newline at end of file From efe9d581d53c3a611640b4f31caf117165729b6c Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:56:55 +0000 Subject: [PATCH 4/6] more colours --- lgsm/functions/command_donate.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh index cc9391e3d..245632a9b 100644 --- a/lgsm/functions/command_donate.sh +++ b/lgsm/functions/command_donate.sh @@ -5,7 +5,7 @@ # Description: Shows ways to donate echo "" -echo "Support LinuxGSM" +echo "${lightyellow}Support LinuxGSM${default}" echo "=================================" echo "" echo "Been using LinuxGSM?" From 871d521e575d21f89cb093ad7938d6fb67e9e590 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:57:44 +0000 Subject: [PATCH 5/6] echo -e --- lgsm/functions/command_donate.sh | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh index 245632a9b..a277b87b6 100644 --- a/lgsm/functions/command_donate.sh +++ b/lgsm/functions/command_donate.sh @@ -4,15 +4,15 @@ # Website: https://linuxgsm.com # Description: Shows ways to donate -echo "" -echo "${lightyellow}Support LinuxGSM${default}" -echo "=================================" -echo "" -echo "Been using LinuxGSM?" -echo "Consider donating to support development." -echo "" -echo "* ${blue}Patreon:${default} https://linuxgsm.com/patreon" -echo "* ${blue}PayPal:${default} https://linuxgsm.com/paypal" -echo "* ${blue}Flattr:${default} https://linuxgsm.com/flattr" -echo "" -echo "LinuxGSM has been going since 2012" \ No newline at end of file +echo -e "" +echo -e "${lightyellow}Support LinuxGSM${default}" +echo -e "=================================" +echo -e "" +echo -e "Been using LinuxGSM?" +echo -e "Consider donating to support development." +echo -e "" +echo -e "* ${blue}Patreon:${default} https://linuxgsm.com/patreon" +echo -e "* ${blue}PayPal:${default} https://linuxgsm.com/paypal" +echo -e "* ${blue}Flattr:${default} https://linuxgsm.com/flattr" +echo -e "" +echo -e "LinuxGSM has been going since 2012" \ No newline at end of file From 77bb111830ef823f5457de4b41d90a68a649b9d0 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 20:00:39 +0000 Subject: [PATCH 6/6] Added donate option --- lgsm/functions/command_donate.sh | 18 ++++++++++++++++++ lgsm/functions/core_functions.sh | 14 ++++++++++---- lgsm/functions/core_getopt.sh | 7 ++++++- lgsm/functions/install_header.sh | 8 ++++---- 4 files changed, 38 insertions(+), 9 deletions(-) create mode 100644 lgsm/functions/command_donate.sh diff --git a/lgsm/functions/command_donate.sh b/lgsm/functions/command_donate.sh new file mode 100644 index 000000000..a277b87b6 --- /dev/null +++ b/lgsm/functions/command_donate.sh @@ -0,0 +1,18 @@ +#!/bin/bash +# LinuxGSM command_donate.sh function +# Author: Daniel Gibbs +# Website: https://linuxgsm.com +# Description: Shows ways to donate + +echo -e "" +echo -e "${lightyellow}Support LinuxGSM${default}" +echo -e "=================================" +echo -e "" +echo -e "Been using LinuxGSM?" +echo -e "Consider donating to support development." +echo -e "" +echo -e "* ${blue}Patreon:${default} https://linuxgsm.com/patreon" +echo -e "* ${blue}PayPal:${default} https://linuxgsm.com/paypal" +echo -e "* ${blue}Flattr:${default} https://linuxgsm.com/flattr" +echo -e "" +echo -e "LinuxGSM has been going since 2012" \ No newline at end of file diff --git a/lgsm/functions/core_functions.sh b/lgsm/functions/core_functions.sh index f4b27fdd1..416835504 100644 --- a/lgsm/functions/core_functions.sh +++ b/lgsm/functions/core_functions.sh @@ -51,6 +51,12 @@ fn_fetch_function # Commands + +command_backup.sh(){ +functionfile="${FUNCNAME}" +fn_fetch_function +} + command_console.sh(){ functionfile="${FUNCNAME}" fn_fetch_function @@ -61,22 +67,22 @@ functionfile="${FUNCNAME}" fn_fetch_function } -command_postdetails.sh(){ +command_details.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_details.sh(){ +command_donate.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_test_alert.sh(){ +command_postdetails.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } -command_backup.sh(){ +command_test_alert.sh(){ functionfile="${FUNCNAME}" fn_fetch_function } diff --git a/lgsm/functions/core_getopt.sh b/lgsm/functions/core_getopt.sh index 07b5e71f9..4766fabe9 100644 --- a/lgsm/functions/core_getopt.sh +++ b/lgsm/functions/core_getopt.sh @@ -20,6 +20,7 @@ cmd_backup=( "b;backup" "command_backup.sh" "Create backup archives of the serve cmd_update_linuxgsm=( "ul;update-lgsm;uf;update-functions" "command_update_linuxgsm.sh" "Check and apply any LinuxGSM updates." ) cmd_test_alert=( "ta;test-alert" "command_test_alert.sh" "Send a test alert." ) cmd_monitor=( "m;monitor" "command_monitor.sh" "Check server status and restart if crashed." ) +cmd_donate=( "do;donate" "command_donate.sh" "Donation options." ) # Console servers only cmd_console=( "c;console" "command_console.sh" "Access server console." ) cmd_debug=( "d;debug" "command_debug.sh" "Start server directly in your terminal." ) @@ -51,6 +52,7 @@ cmd_dev_detect_ldd=( "dl;detect-ldd" "command_dev_detect_ldd.sh" "Detect require cmd_dev_query_raw=( "qr;query-raw" "command_dev_query_raw.sh" "The raw output of gamedig and gsquery." ) cmd_dev_clear_functions=( "cf;clear-functions" "command_dev_clear_functions.sh" "Delete the contents of the functions dir." ) + ### Set specific opt here ### currentopt=( "${cmd_start[@]}" "${cmd_stop[@]}" "${cmd_restart[@]}" "${cmd_monitor[@]}" "${cmd_test_alert[@]}" "${cmd_details[@]}" "${cmd_postdetails[@]}" ) @@ -136,6 +138,9 @@ if [ -f ".dev-debug" ]; then currentopt+=( "${cmd_dev_detect_deps[@]}" "${cmd_dev_detect_glibc[@]}" "${cmd_dev_detect_ldd[@]}" "${cmd_dev_query_raw[@]}" "${cmd_dev_clear_functions[@]}" ) fi +## Donate +currentopt+=( "${cmd_donate[@]}" ) + ### Build list of available commands optcommands=() index="0" @@ -150,7 +155,7 @@ done fn_opt_usage(){ echo "Usage: $0 [option]" echo -e "" - echo "${gamename} - Linux Game Server Manager - Version ${version}" + echo "LinuxGSM - ${gamename} - Version ${version}" echo "https://linuxgsm.com/${gameservername}" echo -e "" echo -e "${lightyellow}Commands${default}" diff --git a/lgsm/functions/install_header.sh b/lgsm/functions/install_header.sh index cae416547..40c2845fc 100644 --- a/lgsm/functions/install_header.sh +++ b/lgsm/functions/install_header.sh @@ -10,9 +10,9 @@ local function_selfname="$(basename "$(readlink -f "${BASH_SOURCE[0]}")")" clear echo "=================================" -echo "${gamename}" -echo "Linux Game Server Manager" +echo "LinuxGSM - ${gamename}" echo "by Daniel Gibbs" -echo "Contributors: http://goo.gl/qLmitD" -echo "https://linuxgsm.com" +echo "Website: https://linuxgsm.com" +echo "Contributors: https://linuxgsm.com/contrib" +echo "Donate: https://linuxgsm.com/donate" echo "================================="