Compare commits

...

4 Commits

Author SHA1 Message Date
aclist
236a5dd0a3
Merge pull request #256 from aclist/fix/unlink-loop
Some checks failed
Mirror to Codeberg / mirror-to-codeberg (push) Has been cancelled
chore: normalize checksums
2026-01-04 21:34:41 +09:00
aclist
4c10958d10 chore: normalize checksums 2026-01-04 21:33:56 +09:00
aclist
23f7140c66
Merge pull request #255 from aclist/fix/unlink-loop
fix: regression introduced in 5.8.1
2026-01-04 21:25:38 +09:00
aclist
fbcfa1fb34 fix: regression introduced in 5.8.1. 2026-01-04 21:24:06 +09:00
3 changed files with 15 additions and 6 deletions

View File

@ -1,5 +1,13 @@
# Changelog # 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 ## [5.8.1] 2025-12-27
## Fixed ## Fixed
- Path discovery during first-time setup when parsing filepaths with whitespaces - Path discovery during first-time setup when parsing filepaths with whitespaces

View File

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

View File

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