mirror of
https://github.com/aclist/dztui.git
synced 2025-09-06 13:42:28 +02:00
fix: changelog URL
This commit is contained in:
parent
0ca94a68d0
commit
bb07cf3ac7
3 changed files with 9 additions and 9 deletions
|
@ -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…
Add table
Add a link
Reference in a new issue