diff --git a/CHANGELOG.md b/CHANGELOG.md index bfca4dc..b4ade6c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,10 @@ # Changelog -## [5.1.0] +## [5.1.1] 2024-03-18 +### Fixed +- Hotfix for remote helper files not being fetched correctly + +## [5.1.0] 2024-03-18 ### Added - Make columns in the server browser user-resizable (affects Server Browser, My Servers, and Recent Servers) - Save dragged position of user-resized columns diff --git a/dzgui.sh b/dzgui.sh index d7dec28..3d25e6c 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.1.0 +version=5.1.1 #CONSTANTS aid=221100 @@ -537,10 +537,10 @@ fetch_helpers_by_sum(){ source "$config_file" declare -A sums sums=( - ["ui.py"]="7189aff7b37e19561c6cfc3f486ca031" + ["ui.py"]="7ffd38571285a92fea00faea8027612b" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" - ["funcs"]="5940b8276f67a45ddb413adc42263e6a" + ["funcs"]="e56b8da82177ff6e6269701229bd6442" ) local author="aclist" local repo="dztui" @@ -555,6 +555,9 @@ fetch_helpers_by_sum(){ else realbranch="$branch" fi + if [[ $realbranch == "stable" ]]; then + realbranch="dzgui" + fi for i in "${!sums[@]}"; do file="$i" diff --git a/helpers/funcs b/helpers/funcs index 72243b1..0802284 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.1.0 +version=5.1.1 #CONSTANTS aid=221100 diff --git a/helpers/ui.py b/helpers/ui.py index c4a98c9..7414b1a 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -17,7 +17,7 @@ locale.setlocale(locale.LC_ALL, '') gi.require_version("Gtk", "3.0") from gi.repository import Gtk, GLib, Gdk, GObject, Pango -# 5.1.0 +# 5.1.1 app_name = "DZGUI" cache = {}