-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Prepare 0.11
- Loading branch information
Showing
65 changed files
with
4,182 additions
and
1,810 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for GitHub Actions | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "daily" | ||
time: "11:00" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
name: Auto Format Code On Master Merge | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
auto-formatter-on-master: | ||
name: Auto Format Code On Master Merge | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Install Clang format | ||
run: | | ||
sudo apt install clang-format | ||
- uses: actions/checkout@v3 | ||
- uses: actions/setup-python@v4 | ||
with: | ||
python-version: '3.10' | ||
- run: python ./misc/format.py | ||
|
||
- uses: EndBug/[email protected] | ||
with: | ||
committer_name: GitHub Actions | ||
committer_email: 41898282+github-actions[bot]@users.noreply.github.com | ||
message: 'Run automatic format script as code does not match clang format rules.' | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,6 +2,7 @@ | |
*.zip | ||
*.tar.gz | ||
builds | ||
build | ||
.vscode/ | ||
.idea | ||
documentation/site |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,35 +1,47 @@ | ||
get5 | ||
=========================== | ||
# splewis/get5 | ||
|
||
[![Build Status](https://github.com/splewis/get5/actions/workflows/build.yml/badge.svg)](https://github.com/splewis/get5/actions/workflows/build.yml) | ||
[![Downloads](https://img.shields.io/github/downloads/splewis/get5/total.svg?&label=Downloads)](https://github.com/splewis/get5/releases/latest) | ||
[![Discord Chat](https://img.shields.io/discord/926309849673895966.svg)](https://discord.gg/zmqEa4keCk) | ||
[![Discord Chat](https://img.shields.io/discord/926309849673895966?label=Discord)](https://discord.gg/zmqEa4keCk) | ||
[![Downloads](https://img.shields.io/github/downloads/splewis/get5/total?label=Downloads)](https://github.com/splewis/get5/releases/latest) | ||
|
||
**Status: Supported, actively developed.** | ||
## Status: Supported, actively developed. | ||
|
||
Get5 is a standalone SourceMod plugin for CS:GO servers for running matches. | ||
|
||
Please visit https://splewis.github.io/get5 for documentation. | ||
### Documentation | ||
|
||
### Discord Chat | ||
### [splewis.github.io/get5](https://splewis.github.io/get5) | ||
|
||
A [Discord](https://discord.gg/zmqEa4keCk) channel is available for general discussion. | ||
--- | ||
|
||
### Reporting bugs | ||
### Latest versions | ||
|
||
Please make a [github issue](https://github.com/splewis/get5/issues) and fill out as much information as possible. Reproducible steps and a clear version number will help tremendously! | ||
#### Stable | ||
If you don't know which one you need, this is the one you need. | ||
|
||
### Contributions | ||
[![Latest version](https://img.shields.io/github/v/release/splewis/get5?label=Latest)](https://github.com/splewis/get5/releases/latest) | ||
|
||
Pull requests are welcome. Please follow the general coding formatting style as much as possible. | ||
#### Prerelease | ||
:warning: Pre-releases are meant for development and testing only. | ||
|
||
### Building | ||
[![Latest version](https://img.shields.io/github/v/release/splewis/get5?include_prereleases&label=Latest)](https://github.com/splewis/get5/releases) | ||
|
||
You can use Docker to Build get5. First you need to build the container image locally: Go to the repository folder and run: | ||
--- | ||
|
||
docker build . -t get5build:latest | ||
### Discord | ||
|
||
Afterwards you can build get5 with the following command: (specify /path/to/your/build/output and /path/to/your/get5src) | ||
A Discord server is available for general discussion. | ||
|
||
docker run --rm -v /path/to/your/get5src:/get5src -v /path/to/your/build/output:/get5/builds get5build:latest | ||
|
||
[![Discord](https://dcbadge.vercel.app/api/server/zmqEa4keCk?style=flat)](https://discord.gg/zmqEa4keCk) | ||
|
||
--- | ||
|
||
### Reporting bugs | ||
|
||
Please file a [GitHub issue](https://github.com/splewis/get5/issues) and fill out as much information as possible. | ||
Reproducible steps and a clear version number will help tremendously. The Get5 version can be displayed | ||
with [`get5_status`](https://splewis.github.io/get5/latest/commands/#get5_status). | ||
|
||
### Contributions | ||
|
||
Pull requests are welcome. Please follow the general coding formatting style as much as possible. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.