mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 03:53:01 +02:00
Compare commits
No commits in common. "0562d8230d29650d4d80a065e8261b9c45153132" and "36753e02f1bf2be58609841071efb51e53c25ecd" have entirely different histories.
0562d8230d
...
36753e02f1
4 changed files with 3 additions and 49 deletions
|
@ -1,13 +1,5 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
## [5.6.2] 2024-01-22
|
|
||||||
### Fixed
|
|
||||||
- Resolve regression introduced with IP resolution feature in 5.6.0 (restores functionality of right-click action: Add to My Servers)
|
|
||||||
|
|
||||||
## [5.6.1] 2024-01-10
|
|
||||||
### Fixed
|
|
||||||
- Add fallback support for jq 1.6
|
|
||||||
|
|
||||||
## [5.6.0] 2024-01-06
|
## [5.6.0] 2024-01-06
|
||||||
### Added
|
### Added
|
||||||
- Application header bar and controls
|
- Application header bar and controls
|
||||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.6.2
|
version=5.6.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -587,10 +587,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=(
|
||||||
["ui.py"]="5a876efacf208d12b5fe761996425412"
|
["ui.py"]="d3ad9153d8599bea0eede9fd3121ee8e"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="417bd5eaffbefc905a843985c691dc64"
|
["funcs"]="6a1c7ce585d9b76e2e75dba9d4295f8d"
|
||||||
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
|
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
|
|
|
@ -130,7 +130,6 @@ declare -A funcs=(
|
||||||
["Remove from my servers"]="update_favs_from_table"
|
["Remove from my servers"]="update_favs_from_table"
|
||||||
["Remove from history"]="remove_from_history"
|
["Remove from history"]="remove_from_history"
|
||||||
["Force update local mods"]="force_update"
|
["Force update local mods"]="force_update"
|
||||||
["Resolve IP"]="resolve_ip"
|
|
||||||
["Handshake"]="final_handshake"
|
["Handshake"]="final_handshake"
|
||||||
["get_player_count"]="get_player_count"
|
["get_player_count"]="get_player_count"
|
||||||
["lan_scan"]="lan_scan"
|
["lan_scan"]="lan_scan"
|
||||||
|
@ -162,33 +161,6 @@ find_stale_mods(){
|
||||||
printf ""
|
printf ""
|
||||||
return 99
|
return 99
|
||||||
}
|
}
|
||||||
resolve_ip(){
|
|
||||||
shift
|
|
||||||
local res
|
|
||||||
local record="$1"
|
|
||||||
local ip=$(<<< "$record" awk -F: '{print $1}')
|
|
||||||
local qport=$(<<< "$record" awk -F: '{print $3}')
|
|
||||||
res=$(a2s $ip $qport info)
|
|
||||||
if [[ ! $? -eq 0 ]]; then
|
|
||||||
printf "Server timed out \n"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
local gport=$(<<< "$res" jq -r '.[].gameport')
|
|
||||||
if [[ -z $gport ]]; then
|
|
||||||
printf "Failed to resolve server metadata\n"
|
|
||||||
return 1
|
|
||||||
fi
|
|
||||||
|
|
||||||
# incoming input can only be 'remove' or 'add'
|
|
||||||
# record is in favs => implies deletion
|
|
||||||
# record not in favs => implies addition
|
|
||||||
resolved_record="$ip:$gport:$qport"
|
|
||||||
if [[ ${ip_list[*]} =~ $resolved_record ]]; then
|
|
||||||
remove_from_favs "$resolved_record"
|
|
||||||
else
|
|
||||||
add_to_favs "$resolved_record"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
get_player_count(){
|
get_player_count(){
|
||||||
shift
|
shift
|
||||||
local res
|
local res
|
||||||
|
|
|
@ -1814,16 +1814,10 @@ class TreeView(Gtk.TreeView):
|
||||||
|
|
||||||
|
|
||||||
def format_metadata(row_sel):
|
def format_metadata(row_sel):
|
||||||
# this function is recycled for the add by ip/id methods +
|
|
||||||
# the right-click context menu (add/remove servers)
|
|
||||||
# in the latter case, there is no metadata to update
|
|
||||||
# see grid.update_statusbar(), so the returned row is None
|
|
||||||
row = None
|
|
||||||
for i in RowType:
|
for i in RowType:
|
||||||
if i.dict["label"] == row_sel:
|
if i.dict["label"] == row_sel:
|
||||||
row = i
|
row = i
|
||||||
prefix = i.dict["tooltip"]
|
prefix = i.dict["tooltip"]
|
||||||
break
|
|
||||||
vals = {
|
vals = {
|
||||||
"branch": config_vals[0],
|
"branch": config_vals[0],
|
||||||
"debug": config_vals[1],
|
"debug": config_vals[1],
|
||||||
|
@ -1833,8 +1827,6 @@ def format_metadata(row_sel):
|
||||||
"preferred_client": config_vals[5],
|
"preferred_client": config_vals[5],
|
||||||
"fullscreen": config_vals[6]
|
"fullscreen": config_vals[6]
|
||||||
}
|
}
|
||||||
if row is None:
|
|
||||||
return None
|
|
||||||
try:
|
try:
|
||||||
alt = row.dict["alt"]
|
alt = row.dict["alt"]
|
||||||
default = row.dict["default"]
|
default = row.dict["default"]
|
||||||
|
@ -2404,8 +2396,6 @@ class Grid(Gtk.Grid):
|
||||||
return True
|
return True
|
||||||
|
|
||||||
def update_statusbar(self, string):
|
def update_statusbar(self, string):
|
||||||
if string is None:
|
|
||||||
return
|
|
||||||
meta = self.bar.get_context_id("Statusbar")
|
meta = self.bar.get_context_id("Statusbar")
|
||||||
self.bar.push(meta, string)
|
self.bar.push(meta, string)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue