forked from CastroFidel/PortWINE
Scripts version 2330
This commit is contained in:
@ -1317,7 +1317,12 @@ pw_init_db () {
|
||||
if [[ -f "${portwine_exe}" ]] ; then
|
||||
PORTWINE_DB="$(basename "${portwine_exe}" .exe)"
|
||||
export PORTWINE_DB
|
||||
if [[ -f "${portwine_exe}".ppdb ]] ; then
|
||||
if echo "${PORTWINE_DB}" | grep -i "_vo_\|_gv_" &>/dev/null ; then
|
||||
print_warning "Force use gamesvoice.ppdb file!"
|
||||
PORTWINE_DB_FILE="${PORT_SCRIPTS_PATH}/portwine_db/gamesvoice.ppdb"
|
||||
# shellcheck source=/dev/null
|
||||
source "${PORTWINE_DB_FILE}"
|
||||
elif [[ -f "${portwine_exe}".ppdb ]] ; then
|
||||
PORTWINE_DB_FILE="${portwine_exe}".ppdb
|
||||
# shellcheck source=/dev/null
|
||||
source "${PORTWINE_DB_FILE}"
|
||||
|
16
data_from_portwine/scripts/portwine_db/gamesvoice.ppdb
Normal file
16
data_from_portwine/scripts/portwine_db/gamesvoice.ppdb
Normal file
@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env bash
|
||||
#Author: xuser
|
||||
#Rating=5
|
||||
#####################examples###########################
|
||||
export PW_COMMENT_DB="<b>!!! ВНИМАНИЕ !!!</b>
|
||||
Для установки руссификаторов от <b>\"GAMESVOICE\"</b> автоматически выбран префикс <b>\"DOTNET\"</b>.
|
||||
Для русификации игры в <b>\"STEAM\"</b>, выберите в установщике диск <b>\"S:\"</b> и в нём нужную игру."
|
||||
export PW_VULKAN_USE="1"
|
||||
export PW_MANGOHUD="0"
|
||||
export PW_NO_FSYNC="1"
|
||||
export PW_NO_ESYNC="1"
|
||||
export PW_USE_GAMEMODE="0"
|
||||
export PW_PREFIX_NAME="DOTNET"
|
||||
export PW_DLL_INSTALL=""
|
||||
export PW_DISABLED_CREATE_DB="1"
|
||||
|
@ -4,13 +4,13 @@
|
||||
#.msi
|
||||
#Rating=5
|
||||
################################################
|
||||
export PW_DISABLED_CREATE_DB=1
|
||||
export PW_VULKAN_USE=1
|
||||
export PW_MANGOHUD=0
|
||||
export PW_NO_FSYNC=1 # Do not use futex-based in-process synchronization primitives. (Automatically disabled on systems with no FUTEX_WAIT_MULTIPLE support.
|
||||
export PW_NO_ESYNC=1 # Do not use eventfd-based in-process synchronization primitives
|
||||
export PW_USE_GAMEMODE=0 # Force disabele gamemod
|
||||
export PW_FORCE_LARGE_ADDRESS_AWARE=1 # Force Wine to enable the LARGE_ADDRESS_AWARE flag for all executables. Enabled by default.
|
||||
export PW_DISABLED_CREATE_DB="1"
|
||||
export PW_VULKAN_USE="1"
|
||||
export PW_MANGOHUD="0"
|
||||
export PW_NO_FSYNC="1"
|
||||
export PW_NO_ESYNC="1"
|
||||
export PW_USE_GAMEMODE="0"
|
||||
export PW_FORCE_LARGE_ADDRESS_AWARE="1"
|
||||
export PW_DLL_INSTALL=""
|
||||
# export WINEDLLOVERRIDES="mscoree,mshtml="
|
||||
export PW_WINE_USE=WINE_LG
|
||||
export PW_WINE_USE="WINE_LG"
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#Author: Castro-Fidel (linux-gaming.ru)
|
||||
#SCRIPTS_NEXT_VERSION=2329
|
||||
#SCRIPTS_NEXT_VERSION=2330
|
||||
#SCRIPTS_STABLE_VERSION=2327
|
||||
########################################################################
|
||||
export LANGUAGES_LIST="ru es"
|
||||
|
Reference in New Issue
Block a user