Compare commits

..

No commits in common. "6425f3d8e3d7d131d19130aa276e9c0a3baae1d6" and "81c2d19a0963692c8b13b9e2ee9119f759d63c99" have entirely different histories.

3 changed files with 7 additions and 8 deletions

View File

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

View File

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

View File

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