From 67094a76888c906ff1395659513f97e1fb751252 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Fri, 23 Nov 2018 19:21:48 +0000 Subject: [PATCH] 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 "================================="