mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12:36 +01:00
Clean up messages
This commit is contained in:
parent
67c3ad3990
commit
0940ea82fd
2 changed files with 7 additions and 2 deletions
|
@ -5,6 +5,10 @@
|
|||
- Custom query API
|
||||
- Standardize dialogs
|
||||
|
||||
## [2.7.0-rc.21] 2022-10-01
|
||||
### Fixed
|
||||
- Clarify some menu messages and behavior
|
||||
|
||||
## [2.7.0-rc.20] 2022-09-29
|
||||
### Added
|
||||
- List total disk size used on mods list
|
||||
|
|
5
dzgui.sh
5
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=2.7.0-rc.20
|
||||
version=2.7.0-rc.21
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -294,6 +294,7 @@ run_varcheck(){
|
|||
if [[ $code -eq 1 ]]; then
|
||||
exit
|
||||
else
|
||||
echo "100"
|
||||
create_config
|
||||
fi
|
||||
fi
|
||||
|
@ -553,7 +554,7 @@ connect_by_ip(){
|
|||
return_from_table=0
|
||||
return
|
||||
fi
|
||||
ip=$(zenity --entry --text="Enter server IP" --title="DZGUI" 2>/dev/null)
|
||||
ip=$(zenity --entry --text="Enter server IP (omit port)" --title="DZGUI" 2>/dev/null)
|
||||
[[ $? -eq 1 ]] && return
|
||||
if validate_ip "$ip"; then
|
||||
fetch_ip_metadata
|
||||
|
|
Loading…
Reference in a new issue