mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12:36 +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
|
||||
|
||||
## [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
|
||||
|
|
9
dzgui.sh
9
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"
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
#!/usr/bin/env bash
|
||||
set -o pipefail
|
||||
version=5.1.0
|
||||
version=5.1.1
|
||||
|
||||
#CONSTANTS
|
||||
aid=221100
|
||||
|
|
|
@ -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 = {}
|
||||
|
|
Loading…
Reference in a new issue