Compare commits

..

3 Commits

Author SHA1 Message Date
aclist
6425f3d8e3 chore: update checksums
Some checks are pending
Mirror to Codeberg / mirror-to-codeberg (push) Waiting to run
2025-09-11 18:35:12 +09:00
aclist
ad64ba75c9 chore: reword failure message 2025-09-11 18:34:12 +09:00
aclist
47f7622606 fix: return codes in manual mode 2025-09-11 18:33:59 +09:00
3 changed files with 8 additions and 7 deletions

View File

@ -585,10 +585,10 @@ fetch_helpers_by_sum(){
[[ -f "$config_file" ]] && source "$config_file"
declare -A sums
sums=(
["funcs"]="f1db0e8b1068defdf834e9c9510bf315"
["funcs"]="a286cc402bfccd39493fe32c53148a95"
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
["servers.py"]="7f83d5c1ca54acb12f1bd6657feb2ecf"
["ui.py"]="3258d5c85ef22517277c213ee2fc9b1d"
["ui.py"]="cd9f4b3bc9b1922bb10cbc0c579cf2c0"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["pefile.py"]="21531f2c0d9dfa5f110cf6779f9d22c0"
)

View File

@ -1084,7 +1084,7 @@ try_connect(){
local gameport=$(<<< $record awk -F: '{print $2}')
local qport=$(<<< $record awk -F: '{print $3}')
echo "$binary" > $_cache_binary
[[ $appid -eq $exp ]] && echo "$binary" > $_cache_binary
local remote_mods
remote_mods=$(a2s $ip $qport rules)
@ -1110,7 +1110,7 @@ try_connect(){
return 1
fi
case $auto_install in
"") manual_mod_install "$ip" "$gameport" "$diff" "$sanitized_mods" "$appid";;
"") manual_mod_install "$ip" "$gameport" "$diff" "$sanitized_mods" "" "$appid";;
1|2) manual_mod_install "$ip" "$gameport" "$diff" "$sanitized_mods" "auto" "$appid" ;;
esac
else

View File

@ -2889,9 +2889,10 @@ class TreeView(Gtk.TreeView):
f"'{prereqs.appid}' not found in user's libraryfolders"
)
msg = (
f"This server is running {build}. "
f"You can install {build} by searching for it in "
"your Steam library."
f"This server is running {build}. You can install "
f"{build} by searching for it in your Steam library. "
f"If you recently installed {build} or moved it to a different drive, "
"restart Steam to allow these changes to synchronize, then try again."
)
spawn_dialog(msg, Popup.NOTIFY)
return None