mirror of
https://github.com/aclist/dztui.git
synced 2024-12-29 13:52:03 +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
|
- Custom query API
|
||||||
- Standardize dialogs
|
- 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
|
## [3.2.1-rc.1] 2022-12-03
|
||||||
### Changed
|
### Changed
|
||||||
- Dropped legacy headless mode logic and refactor against new automod method
|
- Dropped legacy headless mode logic and refactor against new automod method
|
||||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.2.1-rc.2
|
version=3.3.0-rc.1
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -225,7 +225,7 @@ freedesktop_dirs(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
find_library_folder(){
|
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(){
|
file_picker(){
|
||||||
while true; do
|
while true; do
|
||||||
|
@ -296,7 +296,7 @@ run_depcheck(){
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
check_pyver(){
|
check_pyver(){
|
||||||
pyver=$(python --version | awk '{print $2}')
|
pyver=$(python3 --version | awk '{print $2}')
|
||||||
if [[ -z $pyver ]] || [[ ${pyver:0:1} -lt 3 ]]; then
|
if [[ -z $pyver ]] || [[ ${pyver:0:1} -lt 3 ]]; then
|
||||||
warn "Requires python >=3.0" &&
|
warn "Requires python >=3.0" &&
|
||||||
exit
|
exit
|
||||||
|
|
Loading…
Reference in a new issue