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

fix: reword button

This commit is contained in:
aclist 2023-05-10 17:06:28 +09:00
parent fe4d80ad9b
commit 0a5e6730fc
2 changed files with 5 additions and 5 deletions

View file

@ -6,9 +6,9 @@
- Custom query API - Custom query API
- Store favorites by IP - Store favorites by IP
## [3.2.8] 2023-05-10 ## [3.2.9] 2023-05-10
### Fixed ### Changed
- Allow user to retry with filepicker if auto path discovery resulted in false positive - Reword button to "Choose path manually" instead of "Retry"
## [3.2.7] 2023-05-10 ## [3.2.7] 2023-05-10
### Changed ### Changed

View file

@ -1,7 +1,7 @@
#!/bin/bash #!/bin/bash
set -o pipefail set -o pipefail
version=3.2.8 version=3.2.9
aid=221100 aid=221100
game="dayz" game="dayz"
@ -271,7 +271,7 @@ create_config(){
find_default_path find_default_path
find_library_folder find_library_folder
if [[ -z $steam_path ]]; then if [[ -z $steam_path ]]; then
zenity --question --text="DayZ not found or not installed at the chosen path." --ok-label="Retry" --cancel-label="Exit" zenity --question --text="DayZ not found or not installed at the chosen path." --ok-label="Choose path manually" --cancel-label="Exit"
if [[ $? -eq 0 ]]; then if [[ $? -eq 0 ]]; then
file_picker file_picker
else else