From b7fb6a5a9cbf44fae2c0de1e0428bb305b5ac129 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Nov 2019 22:51:34 +0000 Subject: [PATCH 1/2] fix(stats): remove roundup for serverfiles that is not required --- lgsm/functions/info_stats.sh | 3 --- 1 file changed, 3 deletions(-) diff --git a/lgsm/functions/info_stats.sh b/lgsm/functions/info_stats.sh index d300c8bec..f31db13d7 100644 --- a/lgsm/functions/info_stats.sh +++ b/lgsm/functions/info_stats.sh @@ -23,9 +23,6 @@ uuid=$(cat "${datadir}/uuid.txt") cpuusedmhzroundup=$(((cpuusedmhz + 99) / 100 * 100)) # nearest 100MB memusedroundup=$(((memused + 99) / 100 * 100)) -# nearest 100MB -serverfilesduroundup=$(((serverfilesdu + 99) / 100 * 100)) -# https://developers.google.com/analytics/devguides/collection/protocol/v1/parameters # Level 1 Stats ## Distro From c29604a6486e2309e738b65f005e66f7724396d6 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 30 Nov 2019 22:53:34 +0000 Subject: [PATCH 2/2] release v19.12.2 --- linuxgsm.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linuxgsm.sh b/linuxgsm.sh index 4c7ae764a..e6a50fb88 100755 --- a/linuxgsm.sh +++ b/linuxgsm.sh @@ -20,7 +20,7 @@ if [ -f ".dev-debug" ]; then set -x fi -version="v19.12.0" +version="v19.12.2" shortname="core" gameservername="core" rootdir=$(dirname "$(readlink -f "${BASH_SOURCE[0]}")")