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:
parent
0ca94a68d0
commit
bb07cf3ac7
3 changed files with 9 additions and 9 deletions
4
dzgui.sh
4
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"
|
||||
|
|
|
@ -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
|
||||
}
|
||||
|
|
|
@ -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()
|
||||
|
|
Loading…
Reference in a new issue