diff --git a/data_from_portwine/changelog_ru b/data_from_portwine/changelog_ru index e97a7b61..21945543 100755 --- a/data_from_portwine/changelog_ru +++ b/data_from_portwine/changelog_ru @@ -2,6 +2,8 @@ ----------------------------------------- История изменений: +* добавлена возможность замещения аргументов переменной WINEDEBUG в user.conf или .ppdb файлах настроек + ###Scripts version 2386### / Дата: 09.01.2025 / Размер скачиваемого обновления: 4 мегабайта * исправление прав при создании desktop файлов (спасибо Boria138) * исправлена функция отката скриптов из архива, если нет каталога scripts_backup (спасибо Boria138) diff --git a/data_from_portwine/scripts/functions_helper b/data_from_portwine/scripts/functions_helper index 862b4b72..b8f589bf 100755 --- a/data_from_portwine/scripts/functions_helper +++ b/data_from_portwine/scripts/functions_helper @@ -3140,18 +3140,18 @@ start_portwine () { var_winedlloverride_update "winegstreamer=" fi - check_variables VKD3D_DEBUG none - check_variables VKD3D_SHADER_DEBUG none - check_variables DXVK_LOG_LEVEL none - check_variables DXVK_NVAPI_LOG_LEVEL none - check_variables VK_LOADER_DEBUG none - check_variables VKBASALT_LOG_LEVEL none + check_variables VKD3D_DEBUG "none" + check_variables VKD3D_SHADER_DEBUG "none" + check_variables DXVK_LOG_LEVEL "none" + check_variables DXVK_NVAPI_LOG_LEVEL "none" + check_variables VK_LOADER_DEBUG "none" + check_variables VKBASALT_LOG_LEVEL "none" if [[ "${PW_LOG}" == 1 ]] \ || [[ -n "$PW_DEBUG" ]] then - export WINEDEBUG="+loaddll,+gstreamer" - export WINE_MONO_TRACE="E:System.NotImplementedException" - export VKBASALT_LOG_LEVEL="error" + check_variables WINEDEBUG "+loaddll" + check_variables WINE_MONO_TRACE "E:System.NotImplementedException" + check_variables VKBASALT_LOG_LEVEL "error" else export WINEDEBUG="-all" unset WINE_MONO_TRACE