Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PortWINE
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Vladislav
PortWINE
Commits
89b8c3cf
Commit
89b8c3cf
authored
Feb 06, 2022
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scripts version 2081
parent
8d042566
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
25 additions
and
16 deletions
+25
-16
changelog_eng
data_from_portwine/changelog_eng
+3
-0
changelog_rus
data_from_portwine/changelog_rus
+3
-0
EoCApp
data_from_portwine/scripts/portwine_db/EoCApp
+0
-2
League of Legends
data_from_portwine/scripts/portwine_db/League of Legends
+1
-1
PW_EPIC
data_from_portwine/scripts/pw_autoinstall/PW_EPIC
+10
-10
runlib
data_from_portwine/scripts/runlib
+7
-2
var
data_from_portwine/scripts/var
+1
-1
No files found.
data_from_portwine/changelog_eng
View file @
89b8c3cf
...
...
@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://boosty
-----------------------------------------
Changelog:
###Scripts version 2082###
* HOTFIX - AUTOINSTALL for EGS
###Scripts version 2081###
* fixed installing GOG Galaxy
* update WINE PROTON_GE to 7.1-2
...
...
data_from_portwine/changelog_rus
View file @
89b8c3cf
...
...
@@ -2,6 +2,9 @@
-----------------------------------------
История изменений:
###Scripts version 2082###
* HOTFIX - AUTOINSTALL для EGS
###Scripts version 2081###
* исправлена установка GOG при отсутствующем префиксе
* проверен и обновлен WINE PROTON_GE_7.1-2
...
...
data_from_portwine/scripts/portwine_db/EoCApp
View file @
89b8c3cf
...
...
@@ -19,8 +19,6 @@ export PW_FORCE_USE_VSYNC=0
export
PW_VIRTUAL_DESKTOP
=
0
##export VKD3D_CONFIG=force_bindless_texel_buffer,multi_queue
export
ENABLE_VKBASALT
=
1
export
PW_VKBASALT_EFFECTS
=
cas:AmbientLight
export
PW_VKBASALT_FFX_CAS
=
0
export
PW_NO_FSYNC
=
1
export
PW_NO_ESYNC
=
1
##export PULSE_LATENCY_MSEC=60 # Fix crackling audio in games
...
...
data_from_portwine/scripts/portwine_db/League of Legends
View file @
89b8c3cf
...
...
@@ -87,7 +87,7 @@ check_port_for_lol () {
add_in_start_portwine
()
{
if
[
"
$(
cat
/proc/sys/abi/vsyscall32
)
"
-ne
0
]
;
then
zenity
--question
--title
=
"Fix for LoL anti-cheat"
\
--text
=
'Root rights are required to execute the command: \n"sysctl -w abi.vsyscall32=0"
and "sysctl -p"
'
--no-wrap
--text
=
'Root rights are required to execute the command: \n"sysctl -w abi.vsyscall32=0"'
--no-wrap
[
"
$?
"
=
1
]
&&
exit
0
pkexec /usr/bin/env bash
-c
'sysctl -w abi.vsyscall32=0'
fi
...
...
data_from_portwine/scripts/pw_autoinstall/PW_EPIC
View file @
89b8c3cf
...
...
@@ -7,16 +7,16 @@ start_portwine
if
try_download
"https://launcher-public-service-prod06.ol.epicgames.com/launcher/api/installer/download/EpicGamesLauncherInstaller.msi"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing Epic Games Launcher. Please wait..."
pw_kill_autostart EpicGamesLauncher.exe &
pw_run msiexec /i
"
${
PW_AUTOINSTALL_EXE
}
"
&
sleep
10
if
[
!
-z
`
pgrep msiexec
*
|
head
-n
1
`
]
;
then
while
[
!
-z
`
pgrep msiexec
*
|
head
-n
1
`
]
||
[
!
-z
`
pgrep rundll32
*
|
head
-n
1
`
]
||
[
!
-z
`
pgrep
-a
wrap |
grep
${
portname
}
|
head
-n
1
`
]
do
[
!
-z
`
pgrep rundll32
*
|
head
-n
1
`
]
&&
kill
-n
9
`
pgrep rundll32
*
|
head
-n
1
`
&&
echo
"Kill rundll32.exe"
sleep
5
done
fi
#
pw_kill_autostart EpicGamesLauncher.exe &
pw_run msiexec /i
"
${
PW_AUTOINSTALL_EXE
}
"
#
sleep 10
#
if [ ! -z `pgrep msiexec* | head -n 1` ] ; then
#
while [ ! -z `pgrep msiexec* | head -n 1` ] || [ ! -z `pgrep rundll32* | head -n 1` ] || [ ! -z `pgrep -a wrap | grep ${portname} | head -n 1` ]
#
do
#
[ ! -z `pgrep rundll32* | head -n 1` ] && kill -n 9 `pgrep rundll32* | head -n 1` && echo "Kill rundll32.exe"
#
sleep 5
#
done
#
fi
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files (x86)/Epic Games/Launcher/Portal/Binaries/Win32/EpicGamesLauncher.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
...
...
data_from_portwine/scripts/runlib
View file @
89b8c3cf
...
...
@@ -475,6 +475,8 @@ start_portwine () {
# fi
${
pw_runtime
}
env
PATH
=
"
${
PATH
}
"
LD_LIBRARY_PATH
=
"
${
LD_LIBRARY_PATH
}
"
\
"
${
PORT_WINE_TMP_PATH
}
/winetricks"
-q
-r
-f
${
PW_DLL_NEED_INSTALL
}
&>>
"
${
PORT_WINE_TMP_PATH
}
/update_pfx_log"
wait_wineserver
kill_portwine
# if [ "${PW_WINE_VER_FROM_DB}" != "${PW_PROTON_STEAM_VER}" ] ; then
# export PW_SILENT_RESTART=1
# /usr/bin/env bash ${pw_full_command_line[*]} &
...
...
@@ -488,12 +490,15 @@ start_portwine () {
fi
${
pw_runtime
}
env
PATH
=
"
${
PATH
}
"
LD_LIBRARY_PATH
=
"
${
LD_LIBRARY_PATH
}
"
\
"
${
WINELOADER
}
"
winecfg
-v
`
echo
"win
${
PW_WINDOWS_VER
}
"
|
sed
's/.*/\L&/'
`
wait_wineserver
&&
wait_wineserver
kill_portwine
echo
"Set to win
${
PW_WINDOWS_VER
}
"
fi
pw_stop_progress_bar
&&
pw_tray_icon
&&
pw_start_progress_bar_cover
"
${
PW_GUI_ICON_PATH
}
/covers/pw_loading_cover.gif"
&&
if
[[
"
${
PW_CHECK_AUTOINSTAL
}
"
!=
"1"
]]
;
then
pw_start_progress_bar_cover
"
${
PW_GUI_ICON_PATH
}
/covers/pw_loading_cover.gif"
fi
add_in_start_portwine
}
...
...
data_from_portwine/scripts/var
View file @
89b8c3cf
#!/bin/env bash
#Author: Castro-Fidel (PortWINE-Linux.ru)
#SCRIPTS_NEXT_VERSION=208
1
#SCRIPTS_NEXT_VERSION=208
2
#PORT_NEXT_VERSION=97
########################################################################
export
PW_MANGOHUD
=
1
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment