Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore: Release 1.11.2 #48

Merged
merged 1 commit into from
Dec 12, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,14 +39,14 @@ Counter-Strike 2 is supported (mostly).
`web` image (See [./src/web/config.php](./src/web/config.php) for supported environment variables):

```sh
docker run --rm -it -e DB_ADDR=db -e DB_NAME=hlstatsxce -e DB_USER=hlstatsxce -e DB_PASS=hlstatsxce -p 80:80 startersclan/hlstatsx-community-edition:1.11.1-web
docker run --rm -it -e DB_ADDR=db -e DB_NAME=hlstatsxce -e DB_USER=hlstatsxce -e DB_PASS=hlstatsxce -p 80:80 startersclan/hlstatsx-community-edition:1.11.2-web
```

`daemon` image:

```sh
# Use --help for usage
docker run --rm -it -p 27500:27500/udp startersclan/hlstatsx-community-edition:1.11.1-daemon --db-host=db:3306 --db-name=hlstatsxce --db-username=hlstatsxce --db-password=hlstatsxce #--help
docker run --rm -it -p 27500:27500/udp startersclan/hlstatsx-community-edition:1.11.2-daemon --db-host=db:3306 --db-name=hlstatsxce --db-username=hlstatsxce --db-password=hlstatsxce #--help
```

### Docker Compose
Expand Down
8 changes: 4 additions & 4 deletions docker-compose.example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ services:
# 3. HLStatsX:CE perl daemon accepts the gameserver logs. Gameserver Logs are parsed and stats are recorded
# The daemon's proxy_key secret can only be setup in the HLStatsX:CE Web Admin Panel Settings under 'Proxy Settings' section
daemon:
image: startersclan/hlstatsx-community-edition:1.11.1-daemon
image: startersclan/hlstatsx-community-edition:1.11.2-daemon
ports:
- 27500:27500/udp # For external servers to send logs to the daemon
networks:
Expand All @@ -87,7 +87,7 @@ services:

# Cron - awards
awards:
image: startersclan/hlstatsx-community-edition:1.11.1-daemon
image: startersclan/hlstatsx-community-edition:1.11.2-daemon
stop_signal: SIGKILL
entrypoint:
- /bin/sh
Expand Down Expand Up @@ -134,7 +134,7 @@ services:
# Available at http://localhost:8081, or https://web.example.com
# Admin Panel username: admin, password: 123456
web:
image: startersclan/hlstatsx-community-edition:1.11.1-web
image: startersclan/hlstatsx-community-edition:1.11.2-web
labels:
- "traefik.enable=true"
- "traefik.docker.network=hlstatsx-community-edition_traefik-network"
Expand Down Expand Up @@ -168,7 +168,7 @@ services:

# Cron - Heatmaps
heatmaps:
image: startersclan/hlstatsx-community-edition:1.11.1-web
image: startersclan/hlstatsx-community-edition:1.11.2-web
volumes:
- games-volume:/web/hlstatsimg/games # Stateful games volume, which also contains heatmaps
environment:
Expand Down
4 changes: 2 additions & 2 deletions src/sql/install.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

-- This file is only needed for new installations.

SET @DBVERSION="86";
SET @VERSION="1.11.1";
SET @DBVERSION="87";
SET @VERSION="1.11.2";

-- --------------------------------------------------------

Expand Down
14 changes: 14 additions & 0 deletions src/web/updater/87.php
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
<?php
if ( !defined('IN_UPDATER') )
{
die('Do not access this file directly.');
}

$dbversion = 87;
$version = "1.11.2";

// Perform database schema update notification
print "Updating database and verion schema numbers.<br />";
$db->query("UPDATE hlstats_Options SET `value` = '$version' WHERE `keyname` = 'version'");
$db->query("UPDATE hlstats_Options SET `value` = '$dbversion' WHERE `keyname` = 'dbversion'");
?>