mirror of
https://github.com/aclist/dztui.git
synced 2025-01-01 15:12:05 +01:00
Bump version
This commit is contained in:
parent
4769b6741a
commit
f9c00f3522
2 changed files with 8 additions and 4 deletions
|
@ -5,6 +5,11 @@
|
||||||
- Custom query API
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
|
## [3.1.0-rc.10] 2022-11-09
|
||||||
|
### Changed
|
||||||
|
- More verbose logs
|
||||||
|
- Rename log file for clarity
|
||||||
|
|
||||||
## [3.1.0-rc.8] 2022-10-26
|
## [3.1.0-rc.8] 2022-10-26
|
||||||
### Changed
|
### Changed
|
||||||
- Foreground mod progress watcher
|
- Foreground mod progress watcher
|
||||||
|
|
7
dzgui.sh
7
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.1.0-rc.9
|
version=3.1.0-rc.10
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -1014,6 +1014,7 @@ toggle_branch(){
|
||||||
}
|
}
|
||||||
generate_log(){
|
generate_log(){
|
||||||
cat <<-DOC
|
cat <<-DOC
|
||||||
|
Linux: $(uname -mrs)
|
||||||
Version: $version
|
Version: $version
|
||||||
Branch: $branch
|
Branch: $branch
|
||||||
Whitelist: $whitelist
|
Whitelist: $whitelist
|
||||||
|
@ -1021,8 +1022,6 @@ generate_log(){
|
||||||
Workshop path: $workshop_dir
|
Workshop path: $workshop_dir
|
||||||
Game path: $game_dir
|
Game path: $game_dir
|
||||||
|
|
||||||
Linux: $(uname -mrs)
|
|
||||||
|
|
||||||
Mods:
|
Mods:
|
||||||
$(list_mods)
|
$(list_mods)
|
||||||
DOC
|
DOC
|
||||||
|
@ -1144,7 +1143,7 @@ options_menu(){
|
||||||
elif [[ $debug_sel == "${debug_list[2]}" ]]; then
|
elif [[ $debug_sel == "${debug_list[2]}" ]]; then
|
||||||
source_script=$(realpath "$0")
|
source_script=$(realpath "$0")
|
||||||
source_dir=$(dirname "$source_script")
|
source_dir=$(dirname "$source_script")
|
||||||
generate_log > "$source_dir/log"
|
generate_log > "$source_dir/DZGUI.log"
|
||||||
printf "[DZGUI] Wrote log file to %s/log\n" "$source_dir"
|
printf "[DZGUI] Wrote log file to %s/log\n" "$source_dir"
|
||||||
zenity --info --width 500 --title="DZGUI" --text="Wrote log file to \n$source_dir/log" 2>/dev/null
|
zenity --info --width 500 --title="DZGUI" --text="Wrote log file to \n$source_dir/log" 2>/dev/null
|
||||||
elif [[ $debug_sel == "${debug_list[3]}" ]]; then
|
elif [[ $debug_sel == "${debug_list[3]}" ]]; then
|
||||||
|
|
Loading…
Reference in a new issue