mirror of
https://github.com/aclist/dztui.git
synced 2025-04-05 12:03:00 +02:00
Strip text in header
This commit is contained in:
parent
c9391352b5
commit
c3354b71c0
2 changed files with 8 additions and 3 deletions
|
@ -5,6 +5,11 @@
|
||||||
- Custom query API
|
- Custom query API
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
|
|
||||||
|
## [2.7.0-rc.19] 2022-09-26
|
||||||
|
### Fixed
|
||||||
|
- Strip text from "all maps" option in header
|
||||||
|
|
||||||
|
|
||||||
## [2.7.0-rc.18] 2022-09-26
|
## [2.7.0-rc.18] 2022-09-26
|
||||||
### Changed
|
### Changed
|
||||||
- Move lockfile check earlier in pipeline
|
- Move lockfile check earlier in pipeline
|
||||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=2.7.0-rc.18
|
version=2.7.0-rc.19
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -790,7 +790,7 @@ debug_menu(){
|
||||||
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[2]}" ]]; then
|
elif [[ $debug_sel == "${debug_list[2]}" ]]; then
|
||||||
konsole -e man ls
|
konsole -hold -e echo "test"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
query_and_connect(){
|
query_and_connect(){
|
||||||
|
@ -918,7 +918,7 @@ choose_filters(){
|
||||||
[[ -z $search ]] && { ret=97; return; }
|
[[ -z $search ]] && { ret=97; return; }
|
||||||
fi
|
fi
|
||||||
[[ -z $sels ]] && return
|
[[ -z $sels ]] && return
|
||||||
filters=$(echo "$sels" | sed 's/|/, /g')
|
filters=$(echo "$sels" | sed 's/|/, /g;s/ (untick to select from map list)//')
|
||||||
echo "[DZGUI] Filters: $filters"
|
echo "[DZGUI] Filters: $filters"
|
||||||
}
|
}
|
||||||
get_dist(){
|
get_dist(){
|
||||||
|
|
Loading…
Reference in a new issue