mirror of
https://github.com/aclist/dztui.git
synced 2025-04-06 12:33:01 +02:00
fix: automod toggle
This commit is contained in:
parent
858bd066d7
commit
ecedc4e147
3 changed files with 5 additions and 11 deletions
4
dzgui.sh
4
dzgui.sh
|
@ -536,10 +536,10 @@ fetch_dzq(){
|
||||||
fetch_helpers_by_sum(){
|
fetch_helpers_by_sum(){
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="52005a27aa00eb2801068b08838eb58f"
|
["ui.py"]="4dc76532cd01c221755e59e803456b57"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="2668e6d1df5cb68e35202471228bb1fc"
|
["funcs"]="a41432675455a4983c7ba6d2e6681f05"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.0.0.rc-25
|
version=5.0.0.rc-26
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -1025,7 +1025,7 @@ try_connect(){
|
||||||
logger INFO "Connection attempt for $ip:$qport"
|
logger INFO "Connection attempt for $ip:$qport"
|
||||||
update_history "$record"
|
update_history "$record"
|
||||||
|
|
||||||
if [[ -z $auto_install ]]; then
|
if [[ -n $auto_install ]]; then
|
||||||
diff=$(merge_modlists "$diff")
|
diff=$(merge_modlists "$diff")
|
||||||
fi
|
fi
|
||||||
if [[ -n $diff ]]; then
|
if [[ -n $diff ]]; then
|
||||||
|
@ -1169,8 +1169,6 @@ check_timestamps(){
|
||||||
for((i = 0; i < ${remote_ids[@]}; ++i)); do
|
for((i = 0; i < ${remote_ids[@]}; ++i)); do
|
||||||
remote_version[$remote_ids[$i]]=${remote_times[$i]}
|
remote_version[$remote_ids[$i]]=${remote_times[$i]}
|
||||||
done
|
done
|
||||||
#TODO: if flag is update all
|
|
||||||
#fetch list again and write all new stamps into it
|
|
||||||
|
|
||||||
needs_update=()
|
needs_update=()
|
||||||
for((i=0;i<${#old_ids[@]};i++)); do
|
for((i=0;i<${#old_ids[@]};i++)); do
|
||||||
|
@ -1179,10 +1177,6 @@ check_timestamps(){
|
||||||
if [[ $time != ${remote_version[$id]} ]]; then
|
if [[ $time != ${remote_version[$id]} ]]; then
|
||||||
logger WARN "Mod '$id' timestamp '$time' != '${remote_version[$id]}'"
|
logger WARN "Mod '$id' timestamp '$time' != '${remote_version[$id]}'"
|
||||||
needs_update+=($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
|
fi
|
||||||
done
|
done
|
||||||
echo "${needs_update[@]}"
|
echo "${needs_update[@]}"
|
||||||
|
|
|
@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '')
|
||||||
gi.require_version("Gtk", "3.0")
|
gi.require_version("Gtk", "3.0")
|
||||||
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
from gi.repository import Gtk, GLib, Gdk, GObject, Pango
|
||||||
|
|
||||||
# 5.0.0-rc.25
|
# 5.0.0-rc.26
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
cache = {}
|
cache = {}
|
||||||
|
|
Loading…
Reference in a new issue