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

fix: changelog URL

This commit is contained in:
aclist 2024-01-13 11:20:40 +09:00
parent 0ca94a68d0
commit bb07cf3ac7
3 changed files with 9 additions and 9 deletions

View file

@ -1,7 +1,7 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-16 version=5.0.0.rc-17
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -527,7 +527,7 @@ fetch_dzq(){
fetch_helpers_by_sum(){ fetch_helpers_by_sum(){
declare -A sums declare -A sums
sums=( sums=(
["ui.py"]="275629a53b5b7c28d897eb9902c23d19" ["ui.py"]="1c0c003c2dd9e5ed53c6bf193127d42d"
["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197"
["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397"
["funcs"]="d9b0e6fa68314c18ac7aad565645948f" ["funcs"]="d9b0e6fa68314c18ac7aad565645948f"

View file

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -o pipefail set -o pipefail
version=5.0.0.rc-16 version=5.0.0.rc-17
#CONSTANTS #CONSTANTS
aid=221100 aid=221100
@ -723,7 +723,7 @@ dl_changelog(){
local mdbranch local mdbranch
local file="CHANGELOG.md" local file="CHANGELOG.md"
[[ $branch == "stable" ]] && mdbranch="dzgui" [[ $branch == "stable" ]] && mdbranch="dzgui"
[[ $branch == "" ]] && mdbranch="testing" [[ $branch == "testing" ]] && mdbranch="testing"
local md="https://raw.githubusercontent.com/$author/$repo/${mdbranch}/$file" local md="https://raw.githubusercontent.com/$author/$repo/${mdbranch}/$file"
curl -Ls "$md" > "$state_path/$file" curl -Ls "$md" > "$state_path/$file"
} }
@ -1162,7 +1162,7 @@ manual_mod_install(){
if [[ -z $diff ]]; then if [[ -z $diff ]]; then
launch "$ip" "$gameport" "$sanitized_mods" launch "$ip" "$gameport" "$sanitized_mods"
else else
printf "Some mods may have failed to download. Try connecting again to resync" printf "Some mods may have failed to download. Try connecting again to resync."
exit 1 exit 1
fi fi
} }

View file

@ -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.16 # 5.0.0-rc.17
app_name = "DZGUI" app_name = "DZGUI"
cache = {} cache = {}
@ -489,13 +489,13 @@ class RightPanel(Gtk.Box):
self.pack_start(self.filters_vbox, False, False, 0) self.pack_start(self.filters_vbox, False, False, 0)
self.question_button = Gtk.Button(label="?") self.question_button = Gtk.Button(label="?")
#TODO: too big on top
self.question_button.set_margin_top(10) self.question_button.set_margin_top(10)
self.question_button.set_margin_start(50) self.question_button.set_margin_start(50)
self.question_button.set_margin_end(50) self.question_button.set_margin_end(50)
# set_surrounding_margins(self.question_label, 50)
self.pack_start(self.question_button, False, True, 0)
self.question_button.connect("clicked", self._on_button_clicked) self.question_button.connect("clicked", self._on_button_clicked)
set_surrounding_margins(self.question_label, 50)
if is_steam_deck is False:
self.pack_start(self.question_button, False, True, 0)
def _on_button_clicked(self, button): def _on_button_clicked(self, button):
grid = self.get_parent() grid = self.get_parent()