mirror of
https://github.com/aclist/dztui.git
synced 2025-01-01 15:12:05 +01:00
Hotfix for #43
This commit is contained in:
parent
90e518646b
commit
812211df5b
2 changed files with 7 additions and 3 deletions
|
@ -6,6 +6,10 @@
|
||||||
- Standardize dialogs
|
- Standardize dialogs
|
||||||
- Validate BM API key
|
- Validate BM API key
|
||||||
|
|
||||||
|
## [3.1.1-3] 2022-12-10
|
||||||
|
### Fixed
|
||||||
|
- Issue #43: Hotfix for workspace-driven WMs
|
||||||
|
|
||||||
## [3.1.1-3] 2022-12-06
|
## [3.1.1-3] 2022-12-06
|
||||||
### Fixed
|
### Fixed
|
||||||
- Explicitly require Python 3
|
- Explicitly require Python 3
|
||||||
|
|
6
dzgui.sh
6
dzgui.sh
|
@ -1,7 +1,7 @@
|
||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
set -o pipefail
|
set -o pipefail
|
||||||
version=3.1.3
|
version=3.1.4
|
||||||
|
|
||||||
aid=221100
|
aid=221100
|
||||||
game="dayz"
|
game="dayz"
|
||||||
|
@ -579,7 +579,7 @@ connect(){
|
||||||
compare
|
compare
|
||||||
[[ $auto_install -eq 2 ]] && merge_modlists
|
[[ $auto_install -eq 2 ]] && merge_modlists
|
||||||
if [[ -n $diff ]]; then
|
if [[ -n $diff ]]; then
|
||||||
[[ -z $(is_steam_running) ]] && { $steamsafe_zenity --info --text "Steam must be running on the current desktop to use this feature."; return; }
|
# [[ -z $(is_steam_running) ]] && { $steamsafe_zenity --info --text "Steam must be running on the current desktop to use this feature."; return; }
|
||||||
case $auto_install in
|
case $auto_install in
|
||||||
1|2) auto_mod_install ;;
|
1|2) auto_mod_install ;;
|
||||||
*) manual_mod_install ;;
|
*) manual_mod_install ;;
|
||||||
|
@ -1108,7 +1108,7 @@ options_menu(){
|
||||||
force_update=1
|
force_update=1
|
||||||
force_update_mods
|
force_update_mods
|
||||||
merge_modlists > >($steamsafe_zenity --pulsate --progress --no-cancel --auto-close --title=DZGUI --width=500 2>/dev/null)
|
merge_modlists > >($steamsafe_zenity --pulsate --progress --no-cancel --auto-close --title=DZGUI --width=500 2>/dev/null)
|
||||||
[[ -z $(is_steam_running) ]] && { $steamsafe_zenity --info --text "Steam must be running on the current desktop to use this feature."; return; }
|
# [[ -z $(is_steam_running) ]] && { $steamsafe_zenity --info --text "Steam must be running on the current desktop to use this feature."; return; }
|
||||||
auto_mod_install
|
auto_mod_install
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue