mirror of
https://github.com/aclist/dztui.git
synced 2025-04-04 19:43:00 +02:00
Add forums link
This commit is contained in:
parent
69b7d82e1b
commit
c6962ebc37
2 changed files with 18 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
|||
- Custom query API
|
||||
- Standardize dialogs
|
||||
|
||||
## [2.8.0-rc.2] 2022-10-11
|
||||
### Added
|
||||
- Add forums link
|
||||
|
||||
## [2.8.0-rc.2] 2022-10-07
|
||||
### Added
|
||||
- Backend preparation for automods
|
||||
|
|
16
dzgui.sh
16
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=2.8.0-rc.25
|
||||
version=2.8.0-rc.3
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -34,6 +34,7 @@ sums_url="$testing_url/helpers/sums.md5"
|
|||
scmd_url="$testing_url/helpers/scmd.sh"
|
||||
notify_url="$testing_url/helpers/d.html"
|
||||
notify_img_url="$testing_url/helpers/d.webp"
|
||||
forum_url="https://github.com/aclist/dztui/discussions"
|
||||
|
||||
update_last_seen(){
|
||||
mv $config_file ${config_path}dztuirc.old
|
||||
|
@ -103,6 +104,7 @@ items=(
|
|||
" List installed mods"
|
||||
" Report bug (opens in browser)"
|
||||
" Help file (opens in browser)"
|
||||
" Forum (opens in browser)"
|
||||
" View changelog"
|
||||
" Advanced options"
|
||||
)
|
||||
|
@ -801,6 +803,14 @@ report_bug(){
|
|||
browser "$issues_url" 2>/dev/null &
|
||||
fi
|
||||
}
|
||||
forum(){
|
||||
echo "[DZGUI] Opening forum in browser"
|
||||
if [[ $is_steam_deck -eq 1 ]]; then
|
||||
steam steam://openurl/"$forum_url" 2>/dev/null
|
||||
elif [[ $is_steam_deck -eq 0 ]]; then
|
||||
browser "$forum_url" 2>/dev/null &
|
||||
fi
|
||||
}
|
||||
help_file(){
|
||||
echo "[DZGUI] Opening help file in browser"
|
||||
if [[ $is_steam_deck -eq 1 ]]; then
|
||||
|
@ -1323,8 +1333,10 @@ main_menu(){
|
|||
elif [[ $sel == "${items[12]}" ]]; then
|
||||
help_file
|
||||
elif [[ $sel == "${items[13]}" ]]; then
|
||||
changelog | zenity --text-info $sd_res --title="DZGUI" 2>/dev/null
|
||||
forum
|
||||
elif [[ $sel == "${items[14]}" ]]; then
|
||||
changelog | zenity --text-info $sd_res --title="DZGUI" 2>/dev/null
|
||||
elif [[ $sel == "${items[15]}" ]]; then
|
||||
options_menu
|
||||
main_menu
|
||||
return
|
||||
|
|
Loading…
Reference in a new issue