From bb07cf3ac7f2e3f7d215c2dc65a98635b0ad735c Mon Sep 17 00:00:00 2001 From: aclist <92275929+aclist@users.noreply.github.com> Date: Sat, 13 Jan 2024 11:20:40 +0900 Subject: [PATCH] fix: changelog URL --- dzgui.sh | 4 ++-- helpers/funcs | 6 +++--- helpers/ui.py | 8 ++++---- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/dzgui.sh b/dzgui.sh index cd85428..df3ecff 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-16 +version=5.0.0.rc-17 #CONSTANTS aid=221100 @@ -527,7 +527,7 @@ fetch_dzq(){ fetch_helpers_by_sum(){ declare -A sums sums=( - ["ui.py"]="275629a53b5b7c28d897eb9902c23d19" + ["ui.py"]="1c0c003c2dd9e5ed53c6bf193127d42d" ["query_v2.py"]="1822bd1769ce7d7cb0d686a60f9fa197" ["vdf2json.py"]="2f49f6f5d3af919bebaab2e9c220f397" ["funcs"]="d9b0e6fa68314c18ac7aad565645948f" diff --git a/helpers/funcs b/helpers/funcs index 2618194..9119ddf 100755 --- a/helpers/funcs +++ b/helpers/funcs @@ -1,6 +1,6 @@ #!/usr/bin/env bash set -o pipefail -version=5.0.0.rc-16 +version=5.0.0.rc-17 #CONSTANTS aid=221100 @@ -723,7 +723,7 @@ dl_changelog(){ local mdbranch local file="CHANGELOG.md" [[ $branch == "stable" ]] && mdbranch="dzgui" - [[ $branch == "" ]] && mdbranch="testing" + [[ $branch == "testing" ]] && mdbranch="testing" local md="https://raw.githubusercontent.com/$author/$repo/${mdbranch}/$file" curl -Ls "$md" > "$state_path/$file" } @@ -1162,7 +1162,7 @@ manual_mod_install(){ if [[ -z $diff ]]; then launch "$ip" "$gameport" "$sanitized_mods" 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 fi } diff --git a/helpers/ui.py b/helpers/ui.py index 8001283..9300e9e 100644 --- a/helpers/ui.py +++ b/helpers/ui.py @@ -15,7 +15,7 @@ locale.setlocale(locale.LC_ALL, '') gi.require_version("Gtk", "3.0") from gi.repository import Gtk, GLib, Gdk, GObject, Pango -# 5.0.0-rc.16 +# 5.0.0-rc.17 app_name = "DZGUI" cache = {} @@ -489,13 +489,13 @@ class RightPanel(Gtk.Box): self.pack_start(self.filters_vbox, False, False, 0) self.question_button = Gtk.Button(label="?") - #TODO: too big on top self.question_button.set_margin_top(10) self.question_button.set_margin_start(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) + 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): grid = self.get_parent()