Skip to content

Commit

Permalink
1.18.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
crazy-max committed Feb 3, 2025
1 parent 4f5cccb commit 57592b7
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## 1.18.0 (2025/02/03)

* Fix chown command (#133)

## 1.17.0 (2023/05/18)

* Move `force_install_dir` before logon (#116)
Expand Down
2 changes: 1 addition & 1 deletion csgo-server-launcher.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

##################################################################################
# #
# CSGO Server Launcher v1.17.0 #
# CSGO Server Launcher v1.18.0 #
# #
# A simple script to launch your Counter-Strike : Global Offensive #
# Dedicated Server. #
Expand Down
6 changes: 3 additions & 3 deletions doc/installation.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ Docker image 🐳 is available for CSGO Server Launcher. For usage and info, see
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.17.0/install.sh | sudo bash
$ sudo curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.18.0/install.sh | sudo bash
```

This should output something like this:
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 dnsutils gdb lib32gcc-s1 lib32stdc++6 lib32z1 libsdl2-2.0-0:i386 screen tar
$ curl -sSLk https://github.com/crazy-max/csgo-server-launcher/releases/download/v1.17.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.18.0/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.17.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.18.0/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
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ if ! apt-get install -q -y $instpkgs; then
exit 1
fi

: "${CSGOSL_VERSION=v1.17.0}"
: "${CSGOSL_VERSION=v1.18.0}"
: "${CSGOSL_DOWNLOAD_URL=https://github.com/crazy-max/csgo-server-launcher/releases/download/$CSGOSL_VERSION}"
: "${CSGOSL_BASE_DIR=}"

Expand Down

0 comments on commit 57592b7

Please sign in to comment.