Skip to content

Commit

Permalink
Update CHANGELOG
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Jun 22, 2020
1 parent 24880fe commit 94e03a8
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 6 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog

## 1.15.1 (2020/06/22)

* Minor text improvement (#75)

## 1.15.0 (2020/06/05)

* (docker) Docker image based on Debian buster
Expand Down
2 changes: 1 addition & 1 deletion csgo-server-launcher.sh
Expand Up @@ -10,7 +10,7 @@

##################################################################################
# #
# CSGO Server Launcher v1.15.0 #
# CSGO Server Launcher v1.15.1 #
# #
# A simple script to launch your Counter-Strike : Global Offensive #
# Dedicated Server. #
Expand Down
8 changes: 4 additions & 4 deletions doc/installation.md
Expand Up @@ -14,13 +14,13 @@ For usage and info, check the README in the [docker](https://github.com/crazy-ma
A script is available to perform an installation with a single command:

```
$ sudo curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.0/install.sh | sudo bash
$ sudo curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.1/install.sh | sudo bash
```

This should output something like this:

```
Starting CSGO Server Launcher install (v1.15.0)...
Starting CSGO Server Launcher install (v1.15.1)...
Adding i386 architecture...
Installing required packages...
Expand Down Expand Up @@ -51,11 +51,11 @@ Or you can install it manually as root or sudoer:
$ dpkg --add-architecture i386
$ apt-get update
$ apt-get install -y -q curl gdb libc?-i386 lib32stdc++? lib32gcc1 lib32ncurses? lib32z1 libsdl2-2.0-0:i386 screen tar
$ curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.0/csgo-server-launcher.sh -o /etc/init.d/csgo-server-launcher
$ curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.1/csgo-server-launcher.sh -o /etc/init.d/csgo-server-launcher
$ chmod +x /etc/init.d/csgo-server-launcher
$ update-rc.d csgo-server-launcher defaults
$ mkdir -p /etc/csgo-server-launcher/
$ curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.0/csgo-server-launcher.conf -o /etc/csgo-server-launcher/csgo-server-launcher.conf
$ curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.15.1/csgo-server-launcher.conf -o /etc/csgo-server-launcher/csgo-server-launcher.conf
```

> :warning: Replace lib32ncurses5 with lib32ncurses6 on Debian buster based distros
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Expand Up @@ -36,7 +36,7 @@ if [ "$EUID" -ne 0 ]; then
fi

### Vars
version=1.15.0
version=1.15.1
downloadUrl="https://github.com/crazy-max/csgo-server-launcher/releases/download/v$version"
scriptName="csgo-server-launcher"
scriptPath="/etc/init.d/$scriptName"
Expand Down

0 comments on commit 94e03a8

Please sign in to comment.