mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +01:00
fix: hotfix for remote file paths
This commit is contained in:
parent
b09505120e
commit
4c7237264a
4 changed files with 13 additions and 6 deletions
|
@ -1,6 +1,10 @@
|
||||||
# Changelog
|
# 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
|
### Added
|
||||||
- Make columns in the server browser user-resizable (affects Server Browser, My Servers, and Recent Servers)
|
- Make columns in the server browser user-resizable (affects Server Browser, My Servers, and Recent Servers)
|
||||||
- Save dragged position of user-resized columns
|
- Save dragged position of user-resized columns
|
||||||
|
|
9
dzgui.sh
9
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
|
|
||||||
version=5.1.0
|
version=5.1.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
@ -537,10 +537,10 @@ fetch_helpers_by_sum(){
|
||||||
source "$config_file"
|
source "$config_file"
|
||||||
declare -A sums
|
declare -A sums
|
||||||
sums=(
|
sums=(
|
||||||
["ui.py"]="7189aff7b37e19561c6cfc3f486ca031"
|
["ui.py"]="7ffd38571285a92fea00faea8027612b"
|
||||||
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
|
||||||
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
|
||||||
["funcs"]="5940b8276f67a45ddb413adc42263e6a"
|
["funcs"]="e56b8da82177ff6e6269701229bd6442"
|
||||||
)
|
)
|
||||||
local author="aclist"
|
local author="aclist"
|
||||||
local repo="dztui"
|
local repo="dztui"
|
||||||
|
@ -555,6 +555,9 @@ fetch_helpers_by_sum(){
|
||||||
else
|
else
|
||||||
realbranch="$branch"
|
realbranch="$branch"
|
||||||
fi
|
fi
|
||||||
|
if [[ $realbranch == "stable" ]]; then
|
||||||
|
realbranch="dzgui"
|
||||||
|
fi
|
||||||
|
|
||||||
for i in "${!sums[@]}"; do
|
for i in "${!sums[@]}"; do
|
||||||
file="$i"
|
file="$i"
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=5.1.0
|
version=5.1.1
|
||||||
|
|
||||||
#CONSTANTS
|
#CONSTANTS
|
||||||
aid=221100
|
aid=221100
|
||||||
|
|
|
@ -17,7 +17,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.1.0
|
# 5.1.1
|
||||||
app_name = "DZGUI"
|
app_name = "DZGUI"
|
||||||
|
|
||||||
cache = {}
|
cache = {}
|
||||||
|
|
Loading…
Reference in a new issue