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

Add dependency check

This commit is contained in:
aclist 2022-10-08 20:09:33 +09:00
parent 98f2e7e809
commit b7b75b1f52

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=2.8.0-rc.18 version=2.8.0-rc.19
aid=221100 aid=221100
game="dayz" game="dayz"
@ -62,7 +62,7 @@ print_news(){
#TODO: abstract zenity title params and dimensions #TODO: abstract zenity title params and dimensions
declare -A deps declare -A deps
deps=([awk]="5.1.1" [curl]="7.80.0" [jq]="1.6" [tr]="9.0" [zenity]="3.42.1" [steam]="1.0.0") deps=([awk]="5.1.1" [curl]="7.80.0" [jq]="1.6" [tr]="9.0" [zenity]="3.42.1" [steam]="1.0.0" [wmctrl]="1.07")
changelog(){ changelog(){
if [[ $branch == "stable" ]]; then if [[ $branch == "stable" ]]; then
md="https://raw.githubusercontent.com/aclist/dztui/dzgui/changelog.md" md="https://raw.githubusercontent.com/aclist/dztui/dzgui/changelog.md"
@ -291,6 +291,7 @@ run_depcheck(){
if [[ -z $(depcheck) ]]; then if [[ -z $(depcheck) ]]; then
: :
else else
echo "100"
zenity --warning --ok-label="Exit" --title="DZGUI" --text="$(depcheck)" zenity --warning --ok-label="Exit" --title="DZGUI" --text="$(depcheck)"
exit exit
fi fi
@ -1465,6 +1466,7 @@ check_version(){
if [[ $version == $upstream ]]; then if [[ $version == $upstream ]]; then
check_unmerged check_unmerged
else else
echo "100"
echo "[DZGUI] Upstream ($upstream) != local ($version)" echo "[DZGUI] Upstream ($upstream) != local ($version)"
if [[ $enforce_dl -eq 1 ]]; then if [[ $enforce_dl -eq 1 ]]; then
enforce_dl enforce_dl
@ -1530,6 +1532,7 @@ check_map_count(){
count=1048576 count=1048576
echo "[DZGUI] Checking system map count" echo "[DZGUI] Checking system map count"
if [[ $(sysctl -q vm.max_map_count | awk -F"= " '{print $2}') -lt $count ]]; then if [[ $(sysctl -q vm.max_map_count | awk -F"= " '{print $2}') -lt $count ]]; then
echo "100"
map_warning=$(zenity --question --width 500 --title="DZGUI" --text "System map count must be $count or higher to run DayZ with Wine. Increase map count and make this change permanent? (will prompt for sudo password)" 2>/dev/null) map_warning=$(zenity --question --width 500 --title="DZGUI" --text "System map count must be $count or higher to run DayZ with Wine. Increase map count and make this change permanent? (will prompt for sudo password)" 2>/dev/null)
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
pass=$(zenity --password) pass=$(zenity --password)