Compare commits
2 Commits
a9666512f2
...
38d9a88bbb
Author | SHA1 | Date | |
---|---|---|---|
|
38d9a88bbb | ||
|
c15c43eb0a |
@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://linux-
|
||||
----------------------------------------
|
||||
Changelog:
|
||||
|
||||
###Scripts version 2412### / Date: 14.04.2025 / Download update size: 4 megabytes
|
||||
* temporary fixes of the entrance to the game "Genshin Impact" (auto shutdown and connection to the network before launching the game - does not work in Flatpak)
|
||||
|
||||
###Scripts version 2411### / stable / Date: 11.04.2025 / Download update size: 280 megabytes
|
||||
* cumulative update to the stable version of PortProton scripts
|
||||
|
||||
|
@ -2,6 +2,9 @@
|
||||
-----------------------------------------
|
||||
История изменений:
|
||||
|
||||
###Scripts version 2412### / Дата: 14.04.2025 / Размер скачиваемого обновления: 4 мегабайта
|
||||
* временный фикс входа в игру "Genshin Impact" (автоотключение и подключение к сети перед запуском игры - не работает во flatpak)
|
||||
|
||||
###Scripts version 2411### / stable / Дата: 11.04.2025 / Размер скачиваемого обновления: 380 мегабайт
|
||||
* кумулятивное обновление стабильной версии скриптов PortProton
|
||||
|
||||
|
@ -4318,9 +4318,6 @@ pw_run () {
|
||||
if file "$portwine_exe" | grep -q "x86-64" ; then
|
||||
print_info "file: $portwine_exe is x86-64, force set WINE_LARGE_ADDRESS_AWARE to 0"
|
||||
export WINE_LARGE_ADDRESS_AWARE="0"
|
||||
if [[ -f "${WINELOADER}64" ]]
|
||||
then export WINELOADER="${WINELOADER}64"
|
||||
fi
|
||||
else
|
||||
print_info "file: $portwine_exe not x86-64, force set WINE_LARGE_ADDRESS_AWARE to 1"
|
||||
export WINE_LARGE_ADDRESS_AWARE="1"
|
||||
@ -6412,7 +6409,7 @@ pw_auto_create_shortcut () {
|
||||
if [[ "${PW_CHECK_AUTOINSTALL}" == "1" ]] \
|
||||
|| [[ "${PW_NO_AUTO_CREATE_SHORTCUT}" == "1" ]] \
|
||||
|| [[ -z "${portwine_exe}" ]] \
|
||||
|| echo "${portwine_exe}" | grep -i "gc_api.exe\|vkplay\|pulseonline" &>/dev/null
|
||||
|| echo "${portwine_exe}" | grep -i "gc_api.exe\|vkplay\|pulseonline\|hoyoplay_launcher_pp" &>/dev/null
|
||||
then
|
||||
print_warning "Skipping auto create shortcut"
|
||||
return 0
|
||||
|
@ -7,3 +7,22 @@
|
||||
export PW_WINDOWS_VER="10"
|
||||
export PW_VULKAN_USE="2"
|
||||
export PW_PREFIX_NAME="HO_YO_PLAY"
|
||||
export PW_WINE_USE="WINE_LG"
|
||||
add_in_start_portwine() {
|
||||
genshin_hack() {
|
||||
if command -v nmcli &>/dev/null ; then
|
||||
while true ; do
|
||||
if pgrep -i genshinimp ; then
|
||||
nmcli networking off
|
||||
sleep 10
|
||||
nmcli networking on
|
||||
break
|
||||
else
|
||||
sleep 0.5
|
||||
fi
|
||||
done
|
||||
fi
|
||||
}
|
||||
genshin_hack &
|
||||
}
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
#!/usr/bin/env bash
|
||||
#Author: Castro-Fidel (linux-gaming.ru)
|
||||
#SCRIPTS_NEXT_VERSION=2411
|
||||
#SCRIPTS_NEXT_VERSION=2412
|
||||
#SCRIPTS_STABLE_VERSION=2411
|
||||
########################################################################
|
||||
export AI_TOP_GAMES="PW_LGC PW_VKPLAY PW_EPIC PW_BATTLE_NET PW_WORLD_OF_SEA_BATTLE PW_RUSSIAN_FISHING PW_HO_YO_PLAY PW_FARLIGHT84 PW_WARFRAME PW_WGC PW_UBISOFT"
|
||||
|
Loading…
Reference in New Issue
Block a user