1
0
Fork 0
mirror of https://github.com/aclist/dztui.git synced 2025-04-05 20:13:00 +02:00

fix: automod toggle

This commit is contained in:
aclist 2024-01-23 15:21:43 +09:00
parent 858bd066d7
commit ecedc4e147
3 changed files with 5 additions and 11 deletions

View file

@ -536,10 +536,10 @@ fetch_dzq(){
fetch_helpers_by_sum(){
declare -A sums
sums=(
["ui.py"]="52005a27aa00eb2801068b08838eb58f"
["ui.py"]="4dc76532cd01c221755e59e803456b57"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="2668e6d1df5cb68e35202471228bb1fc"
["funcs"]="a41432675455a4983c7ba6d2e6681f05"
)
local author="aclist"
local repo="dztui"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash
set -o pipefail
version=5.0.0.rc-25
version=5.0.0.rc-26
#CONSTANTS
aid=221100
@ -1025,7 +1025,7 @@ try_connect(){
logger INFO "Connection attempt for $ip:$qport"
update_history "$record"
if [[ -z $auto_install ]]; then
if [[ -n $auto_install ]]; then
diff=$(merge_modlists "$diff")
fi
if [[ -n $diff ]]; then
@ -1169,8 +1169,6 @@ check_timestamps(){
for((i = 0; i < ${remote_ids[@]}; ++i)); do
remote_version[$remote_ids[$i]]=${remote_times[$i]}
done
#TODO: if flag is update all
#fetch list again and write all new stamps into it
needs_update=()
for((i=0;i<${#old_ids[@]};i++)); do
@ -1179,10 +1177,6 @@ check_timestamps(){
if [[ $time != ${remote_version[$id]} ]]; then
logger WARN "Mod '$id' timestamp '$time' != '${remote_version[$id]}'"
needs_update+=($id)
#awk -v var=$id -v var2=$time '$1 == var {$2=var2;print $1","$2; next;};{print}' "$version_file" > "$version_file.new" &&
#mv "$versions_file.new" "$version_file"
#TODO: but what if they cancel
#TODO: update timestamps AFTER downloading
fi
done
echo "${needs_update[@]}"

View file

@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '')
gi.require_version("Gtk", "3.0")
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
# 5.0.0-rc.25
# 5.0.0-rc.26
app_name = "DZGUI"
cache = {}