Scripts version 2289

This commit is contained in:
Mikhail Tergoev 2024-04-30 10:51:37 +03:00
parent 6baee4da62
commit be5fc19b72
4 changed files with 16 additions and 1 deletions

@ -2,6 +2,10 @@ You can help us in the development of the project on the website: https://linux-
---------------------------------------- ----------------------------------------
Changelog: Changelog:
###Scripts version 2289### Date: 30.04.2024 / Download update size: 3 megabytes
* the selection of the legacy version of DXVK is combined with DGVOODOO2 (thanks Htylol)
* fixed caching of VKD3D shaders for DirectX 12 games (thanks Htylol)
###Scripts version 2288### Date: 27.04.2024 / Download update size: 3 megabytes ###Scripts version 2288### Date: 27.04.2024 / Download update size: 3 megabytes
* refactoring of 3D API functions has been performed * refactoring of 3D API functions has been performed
* fixed the operation of PortProton in the absence of gettext.sh (thanks Boria138) * fixed the operation of PortProton in the absence of gettext.sh (thanks Boria138)

@ -2,6 +2,11 @@
----------------------------------------- -----------------------------------------
История изменений: История изменений:
###Scripts version 2289### Дата: 30.04.2024 / Размер скачиваемого обновления: 3 мегабайта
* выбор устаревшей версии DXVK объединён с DGVOODOO2 (спасибо Htylol)
* исправлено кеширование VKD3D шейдеров для игр DirectX 12 (спасибо Htylol)
* исравнены русские локализации в играх при запуске из steam (спасибо Мэлс и SDR)
###Scripts version 2288### Дата: 27.04.2024 / Размер скачиваемого обновления: 3 мегабайта ###Scripts version 2288### Дата: 27.04.2024 / Размер скачиваемого обновления: 3 мегабайта
* произведен рефакторинг функций 3D API * произведен рефакторинг функций 3D API
* исправлена работа PortProton при отсутствии gettext.sh (спасибо Boria138) * исправлена работа PortProton при отсутствии gettext.sh (спасибо Boria138)

@ -65,6 +65,12 @@ change_locale () {
fi fi
fi fi
export LANGUAGE export LANGUAGE
if [[ "$LANGUAGE" == "ru" ]] \
&& check_start_from_steam
then
export LC_ALL=ru_RU.UTF-8
fi
} }
export -f change_locale export -f change_locale

@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
#Author: Castro-Fidel (linux-gaming.ru) #Author: Castro-Fidel (linux-gaming.ru)
#SCRIPTS_NEXT_VERSION=2288 #SCRIPTS_NEXT_VERSION=2289
######################################################################## ########################################################################
export LANGUAGES_LIST="ru" export LANGUAGES_LIST="ru"
export PW_MANGOHUD="0" export PW_MANGOHUD="0"