mirror of
https://github.com/aclist/dztui.git
synced 2024-12-28 05:12:36 +01:00
Hotfix from stable
This commit is contained in:
parent
05f03c2b8f
commit
7648532da5
2 changed files with 7 additions and 3 deletions
|
@ -5,6 +5,10 @@
|
|||
- Custom query API
|
||||
- Standardize dialogs
|
||||
|
||||
## [3.3.0-rc.1] 2022-12-06
|
||||
### Fixed
|
||||
- Merge Python version hotfix from stable branch
|
||||
|
||||
## [3.2.1-rc.1] 2022-12-03
|
||||
### Changed
|
||||
- Dropped legacy headless mode logic and refactor against new automod method
|
||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
|||
#!/bin/bash
|
||||
|
||||
set -o pipefail
|
||||
version=3.2.1-rc.2
|
||||
version=3.3.0-rc.1
|
||||
|
||||
aid=221100
|
||||
game="dayz"
|
||||
|
@ -225,7 +225,7 @@ freedesktop_dirs(){
|
|||
fi
|
||||
}
|
||||
find_library_folder(){
|
||||
steam_path=$(python $helpers_path/vdf2json.py -i $default_steam_path/steamapps/libraryfolders.vdf | jq -r '.libraryfolders[]|select(.apps|has("221100")).path')
|
||||
steam_path=$(python3 $helpers_path/vdf2json.py -i $default_steam_path/steamapps/libraryfolders.vdf | jq -r '.libraryfolders[]|select(.apps|has("221100")).path')
|
||||
}
|
||||
file_picker(){
|
||||
while true; do
|
||||
|
@ -296,7 +296,7 @@ run_depcheck(){
|
|||
fi
|
||||
}
|
||||
check_pyver(){
|
||||
pyver=$(python --version | awk '{print $2}')
|
||||
pyver=$(python3 --version | awk '{print $2}')
|
||||
if [[ -z $pyver ]] || [[ ${pyver:0:1} -lt 3 ]]; then
|
||||
warn "Requires python >=3.0" &&
|
||||
exit
|
||||
|
|
Loading…
Reference in a new issue