Browse Source

Merge pull request #1952 from GameServerManagers/hotfix/messages-180721

Fixed wrong text in some core messages
pull/1987/head
Daniel Gibbs 7 years ago
committed by GitHub
parent
commit
a863ce92a3
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 41
      .github/ISSUE_TEMPLATE/bug_report.md
  2. 33
      .github/ISSUE_TEMPLATE/feature_request.md
  3. 16
      .github/ISSUE_TEMPLATE/new-server-request.md
  4. 8
      lgsm/functions/core_messages.sh

41
.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.

33
.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.

16
.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.

8
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

Loading…
Cancel
Save