Compare commits

..

No commits in common. "236a5dd0a33bff94afded40ee1f3b36291c1e8ad" and "52f36e0d0a9e7d67c9d5e057703b019c71bfba75" have entirely different histories.

3 changed files with 6 additions and 15 deletions

View File

@ -1,13 +1,5 @@
# Changelog
## [5.8.3] 2026-01-04
## Fixed
- Normalize checksum numbers and dates
## [5.8.2] 2026-01-04
## Fixed
- Fix regression in symlink routine introduced by previous hotfix
## [5.8.1] 2025-12-27
## Fixed
- Path discovery during first-time setup when parsing filepaths with whitespaces

View File

@ -1,7 +1,7 @@
#!/usr/bin/env bash
set -o pipefail
version=5.8.3
version=5.8.1
#CONSTANTS
aid=221100
@ -488,10 +488,9 @@ migrate_files(){
}
stale_symlinks(){
local game_dir="$steam_path/steamapps/common/DayZ"
readarray -t links < <(find "$game_dir" -xtype l)
for link in "${links[@]}"; do
logger DEBUG "Updating stale symlink '$link'"
unlink "$link"
for l in "$(find "$game_dir" -xtype l)"; do
logger DEBUG "Updating stale symlink '$l'"
unlink "$l"
done
}
local_latlon(){
@ -589,7 +588,7 @@ fetch_helpers_by_sum(){
["ui.py"]="f128a97e744e9e11036d707198feb8a8"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="93402a7b9ebae2901debb5cc3bc011a6"
["funcs"]="94287c75a5ae0a06a95dd439711e6fba"
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
)
local author="aclist"

View File

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -o pipefail
version="5.8.3"
version="5.8.0"
#CONSTANTS
aid=221100