diff --git a/README.md b/README.md index 4da78a3..5184753 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/docker-compose.example.yml b/docker-compose.example.yml index cf19d92..df30e70 100644 --- a/docker-compose.example.yml +++ b/docker-compose.example.yml @@ -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: @@ -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 @@ -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" @@ -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: diff --git a/src/sql/install.sql b/src/sql/install.sql index 36d48a1..432bee4 100644 --- a/src/sql/install.sql +++ b/src/sql/install.sql @@ -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"; -- -------------------------------------------------------- diff --git a/src/web/updater/87.php b/src/web/updater/87.php new file mode 100644 index 0000000..27292da --- /dev/null +++ b/src/web/updater/87.php @@ -0,0 +1,14 @@ +"; + $db->query("UPDATE hlstats_Options SET `value` = '$version' WHERE `keyname` = 'version'"); + $db->query("UPDATE hlstats_Options SET `value` = '$dbversion' WHERE `keyname` = 'dbversion'"); +?>