1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2024-12-27 21:02:36 +01:00

fix: backport hotfix (#168)

This commit is contained in:
aclist 2024-12-03 20:09:19 +09:00
parent 3bdc0057a2
commit c3c8872fad
3 changed files with 7 additions and 3 deletions

View file

@ -1,5 +1,9 @@
# Changelog
## [5.5.1] 2024-12-03
### Fixed
- Support localized decimal separators when parsing installed mod sizes
## [5.5.0] 2024-11-10
### Added
- Support servers running DLC content (fixes Frostline servers)

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=5.5.0
version=5.5.1
#CONSTANTS
aid=221100
@ -572,7 +572,7 @@ fetch_helpers_by_sum(){
["ui.py"]="dd7aa34df1d374739127cca3033a3f67"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="d8ae2662fbc3c62bdb5a51dec1935705"
["funcs"]="ad4d7b4bf2e8ef0ac7637183876dbec6"
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
)
local author="aclist"

View file

@ -332,7 +332,7 @@ list_mods(){
base_dir=$(basename $(readlink -f $game_dir/$symlink))
size=$(du -s "$(readlink -f "$game_dir/$symlink")" | awk '{print $1}')
size=$(python3 -c "n=($size/1024) +.005; print(round(n,4))")
printf "%s$sep%s$sep%s$sep%3.3f\n" "$name" "$symlink" "$base_dir" "$size"
LC_NUMERIC=C printf "%s$sep%s$sep%s$sep%3.3f\n" "$name" "$symlink" "$base_dir" "$size"
done | sort -k1
fi
}