mirror of
https://github.com/aclist/dztui.git
synced 2025-04-03 02:53:00 +02:00
Compare commits
2 commits
4a1d827047
...
808a47ec37
Author | SHA1 | Date | |
---|---|---|---|
|
808a47ec37 | ||
|
3c235e22ed |
4 changed files with 18 additions and 9 deletions
|
@ -6,6 +6,7 @@
|
||||||
## Fixed
|
## Fixed
|
||||||
- Grid scaling causes table to exceeds bounds of display viewport
|
- Grid scaling causes table to exceeds bounds of display viewport
|
||||||
- Window exceeds taskbar on Steam Deck
|
- Window exceeds taskbar on Steam Deck
|
||||||
|
- Reduce possibility of timeouts when pinging servers
|
||||||
## Changed
|
## Changed
|
||||||
- Packed filter checkbox buttons into a 3x3 grid
|
- Packed filter checkbox buttons into a 3x3 grid
|
||||||
- Updated IP database to 2025-03 records
|
- Updated IP database to 2025-03 records
|
||||||
|
|
4
dzgui.sh
4
dzgui.sh
|
@ -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"]="dfec256412be2bfb83d69ad873f244e1"
|
["ui.py"]="121f27e51c945d78e97b77397d3c5173"
|
||||||
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
["query_v2.py"]="55d339ba02512ac69de288eb3be41067"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="0d2d7a2b08f1112dc2474ba81a489002"
|
["funcs"]="fd7c23e39a70099a7f0006afd8919508"
|
||||||
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
|
["lan"]="c62e84ddd1457b71a85ad21da662b9af"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
|
|
|
@ -784,12 +784,18 @@ logger(){
|
||||||
}
|
}
|
||||||
test_ping(){
|
test_ping(){
|
||||||
shift
|
shift
|
||||||
|
local time
|
||||||
local ip="$1"
|
local ip="$1"
|
||||||
local qport="$2"
|
local qport="$2"
|
||||||
local res
|
log "$ip"
|
||||||
res=$(ping -c1 -4 -W0.5 $1 | grep time= | awk -F= '{print $4}')
|
log "$qport"
|
||||||
[[ ! $? -eq 0 ]] && res="Timed out"
|
res=$(a2s $ip $qport info)
|
||||||
printf "%s" "$res"
|
if [[ -z $res ]]; then
|
||||||
|
time="Timed out"
|
||||||
|
else
|
||||||
|
time=$(<<< "$res" jq -r '.[].ping')
|
||||||
|
fi
|
||||||
|
printf "%s" "$time"
|
||||||
}
|
}
|
||||||
show_server_modlist(){
|
show_server_modlist(){
|
||||||
shift
|
shift
|
||||||
|
|
|
@ -1091,12 +1091,13 @@ class ButtonBox(Gtk.Box):
|
||||||
|
|
||||||
|
|
||||||
class CalcDist(multiprocessing.Process):
|
class CalcDist(multiprocessing.Process):
|
||||||
def __init__(self, widget, addr, result_queue, cache):
|
def __init__(self, widget, addr, qport, result_queue, cache):
|
||||||
super().__init__()
|
super().__init__()
|
||||||
|
|
||||||
self.widget = widget
|
self.widget = widget
|
||||||
self.result_queue = result_queue
|
self.result_queue = result_queue
|
||||||
self.addr = addr
|
self.addr = addr
|
||||||
|
self.qport = str(qport)
|
||||||
self.ip = addr.split(':')[0]
|
self.ip = addr.split(':')[0]
|
||||||
|
|
||||||
def run(self):
|
def run(self):
|
||||||
|
@ -1105,7 +1106,7 @@ class CalcDist(multiprocessing.Process):
|
||||||
self.result_queue.put([self.addr, cache[self.addr][0], cache[self.addr][1]])
|
self.result_queue.put([self.addr, cache[self.addr][0], cache[self.addr][1]])
|
||||||
return
|
return
|
||||||
proc = call_out(self.widget, "get_dist", self.ip)
|
proc = call_out(self.widget, "get_dist", self.ip)
|
||||||
proc2 = call_out(self.widget, "test_ping", self.ip)
|
proc2 = call_out(self.widget, "test_ping", self.ip, self.qport)
|
||||||
km = proc.stdout
|
km = proc.stdout
|
||||||
ping = proc2.stdout
|
ping = proc2.stdout
|
||||||
self.result_queue.put([self.addr, km, ping])
|
self.result_queue.put([self.addr, km, ping])
|
||||||
|
@ -1332,6 +1333,7 @@ class TreeView(Gtk.TreeView):
|
||||||
|
|
||||||
if self.view == WindowContext.TABLE_API or self.view == WindowContext.TABLE_SERVER:
|
if self.view == WindowContext.TABLE_API or self.view == WindowContext.TABLE_SERVER:
|
||||||
addr = self.get_column_at_index(7)
|
addr = self.get_column_at_index(7)
|
||||||
|
qport = self.get_column_at_index(8)
|
||||||
if addr is None:
|
if addr is None:
|
||||||
server_tooltip[0] = format_tooltip()
|
server_tooltip[0] = format_tooltip()
|
||||||
grid.update_statusbar(server_tooltip[0])
|
grid.update_statusbar(server_tooltip[0])
|
||||||
|
@ -1345,7 +1347,7 @@ class TreeView(Gtk.TreeView):
|
||||||
grid.update_statusbar(tooltip)
|
grid.update_statusbar(tooltip)
|
||||||
return
|
return
|
||||||
self.emit("on_distcalc_started")
|
self.emit("on_distcalc_started")
|
||||||
self.current_proc = CalcDist(self, addr, self.queue, cache)
|
self.current_proc = CalcDist(self, addr, qport, self.queue, cache)
|
||||||
self.current_proc.start()
|
self.current_proc.start()
|
||||||
else:
|
else:
|
||||||
tooltip = format_metadata(row_sel)
|
tooltip = format_metadata(row_sel)
|
||||||
|
|
Loading…
Reference in a new issue