diff --git a/changelog.md b/changelog.md index 248f148..d55b58c 100644 --- a/changelog.md +++ b/changelog.md @@ -6,6 +6,10 @@ - Standardize dialogs - 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 ### Fixed - Explicitly require Python 3 diff --git a/dzgui.sh b/dzgui.sh index dd40d75..1127d4c 100755 --- a/dzgui.sh +++ b/dzgui.sh @@ -1,7 +1,7 @@ #!/bin/bash set -o pipefail -version=3.1.3 +version=3.1.4 aid=221100 game="dayz" @@ -579,7 +579,7 @@ connect(){ compare [[ $auto_install -eq 2 ]] && merge_modlists 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 1|2) auto_mod_install ;; *) manual_mod_install ;; @@ -1108,7 +1108,7 @@ options_menu(){ force_update=1 force_update_mods 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 fi }