diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md new file mode 100644 index 000000000..f69856e5f --- /dev/null +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -0,0 +1,41 @@ +--- +name: Bug report +about: Create a report to help us improve + +--- + +Follow **[this guide](https://linuxgsm.com/support/#guide)** to make sure you post the correct info. +For general support visit the **[steam group](https://linuxgsm.com/steam)**. + +GitHub is **ONLY** for: +* LinuxGSM bugs +* feature suggestions +* code contributions + +GitHub is **NOT** for: +* General support +* Specific game server issues (e.g CS:GO, TF2) +* Dedicated server issues (e.g Ubuntu, CentOS) +* Anything not directly related to LinuxGSM development + +Any general support issues on GitHub will be closed. + +**Describe the bug** +A clear and concise description of what the bug is. + +**To Reproduce** +Steps to reproduce the behaviour: +1. Go to '...' +2. Click on '....' +3. Scroll down to '....' +4. See error + +**Expected behaviour** +A clear and concise description of what you expected to happen. + +** Minimum Information ** +The game server you are running (e.g. Rust/CS:GO). +The link from `./gameserver postdetails` command. + +**Additional context** +Add any other context about the problem here. diff --git a/.github/ISSUE_TEMPLATE/feature_request.md b/.github/ISSUE_TEMPLATE/feature_request.md new file mode 100644 index 000000000..6ba0c2bd2 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/feature_request.md @@ -0,0 +1,33 @@ +--- +name: Feature request +about: Suggest an idea for this project + +--- + +Follow **[this guide](https://linuxgsm.com/support/#guide)** to make sure you post the correct info. +For general support visit the **[steam group](https://linuxgsm.com/steam)**. + +GitHub is **ONLY** for: +* LinuxGSM bugs +* feature suggestions +* code contributions + +GitHub is **NOT** for: +* General support +* Specific game server issues (e.g CS:GO, TF2) +* Dedicated server issues (e.g Ubuntu, CentOS) +* Anything not directly related to LinuxGSM development + +Any general support issues on GitHub will be closed. + +**Is your feature request related to a problem? Please describe.** +A clear and concise description of what the problem is. Ex. I'm always frustrated when [...] + +**Describe the solution you'd like** +A clear and concise description of what you want to happen. + +**Describe alternatives you've considered** +A clear and concise description of any alternative solutions or features you've considered. + +**Additional context** +Add any other context or screenshots about the feature request here. diff --git a/.github/ISSUE_TEMPLATE/new-server-request.md b/.github/ISSUE_TEMPLATE/new-server-request.md new file mode 100644 index 000000000..6ce2f50d1 --- /dev/null +++ b/.github/ISSUE_TEMPLATE/new-server-request.md @@ -0,0 +1,16 @@ +--- +name: New server request +about: Suggest a new game server to be added + +--- + +**What game server Would you like adding?** + +**Can you link to any tutorials or guides?** +Any useful guides will help with development + +**Is the server on Steam?** +If yes Use SteamDB to get the appid. https://steamdb.info/ + +**Is the server supported on Linux?** +We only support Linux servers and dont support Wine. diff --git a/lgsm/functions/core_messages.sh b/lgsm/functions/core_messages.sh index 9ffbc52ae..3a47798b3 100644 --- a/lgsm/functions/core_messages.sh +++ b/lgsm/functions/core_messages.sh @@ -315,20 +315,20 @@ fn_print_fail_eol_nl(){ # WARN fn_print_warn_eol(){ - echo -en "${red}FAIL${default}" + echo -en "${red}WARN${default}" } fn_print_warn_eol_nl(){ - echo -e "${red}FAIL${default}" + echo -e "${red}WARN${default}" } # INFO fn_print_info_eol(){ - echo -en "${red}FAIL${default}" + echo -en "${red}INFO${default}" } fn_print_info_eol_nl(){ - echo -e "${red}FAIL${default}" + echo -e "${red}INFO${default}" } # QUERYING