Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
PortWINE-old
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-old
Commits
8aee21ac
Commit
8aee21ac
authored
Jul 16, 2024
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
minor fixed NVAPI func.
parent
8783e800
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
23 additions
and
13 deletions
+23
-13
changelog_ru
data_from_portwine/changelog_ru
+3
-0
functions_helper
data_from_portwine/scripts/functions_helper
+19
-12
var
data_from_portwine/scripts/var
+1
-1
No files found.
data_from_portwine/changelog_ru
View file @
8aee21ac
...
...
@@ -2,6 +2,9 @@
-----------------------------------------
История изменений:
###Scripts version 2322### / Дата: 16.07.2024 / Размер скачиваемого обновления: 4 мегабайта
* обновлен испанский перевод
###Scripts version 2321### / Дата: 15.07.2024 / Размер скачиваемого обновления: 190 мегабайт
* обновлен WINE_LG до версии "9-12"
* обновлены версии:
...
...
data_from_portwine/scripts/functions_helper
View file @
8aee21ac
...
...
@@ -142,24 +142,30 @@ try_copy_file_with_checksums () {
then
checksum1
=(
$(
sha256sum
"
$1
"
)
)
if
[[
!
-f
"
$2
"
]]
;
then
cp
-f
"
$1
"
"
$2
"
\
&&
echo
$checksum1
>
"
$2
.sha256sum"
\
&&
return
0
||
return
1
if
cp
-f
"
$1
"
"
$2
"
;
then
echo
"
${
checksum1
[0]
}
"
>
"
$2
.sha256sum"
return
0
else
return
1
fi
else
if
[[
!
-f
"
$2
.sha256sum"
]]
;
then
checksum2
=(
$(
sha256sum
"
$2
"
)
)
echo
$checksum2
>
"
$2
.sha256sum"
echo
"
${
checksum2
[0]
}
"
>
"
$2
.sha256sum"
else
checksum2
=
$(
<
"
$2
.sha256sum"
)
fi
fi
if
[[
"
$
checksum1
"
==
"
$checksum2
"
]]
;
then
if
[[
"
$
{
checksum1
[0]
}
"
==
"
${
checksum2
[0]
}
"
]]
;
then
return
0
else
try_remove_file
"
$2
"
\
&&
cp
-f
"
$1
"
"
$2
"
\
&&
echo
$checksum1
>
"
$2
.sha256sum"
\
&&
return
0
||
return
1
try_remove_file
"
$2
"
if
cp
-f
"
$1
"
"
$2
"
;
then
echo
"
${
checksum1
[0]
}
"
>
"
$2
.sha256sum"
return
0
else
return
1
fi
fi
else
[[
-e
"
$2
/
$(
basename
"
$1
"
)
"
]]
&&
rm
-f
"
$2
/
$(
basename
"
$1
"
)
"
...
...
@@ -1887,9 +1893,6 @@ start_portwine () {
fi
}
try_remove_file
"
${
WINEPREFIX
}
/drive_c/windows/syswow64/nvml.dll"
try_remove_file
"
${
WINEPREFIX
}
/drive_c/windows/system32/nvml.dll"
if
[[
"
${
PW_USE_FAKE_DLSS
}
"
==
"1"
]]
\
&&
[[
-d
"
${
PW_PLUGINS_PATH
}
/fake_dlss/
${
PW_FAKE_DLSS_VER
}
/"
]]
then
...
...
@@ -1916,6 +1919,10 @@ start_portwine () {
var_winedlloverride_update
"nvngx,_nvngx,nvapi,nvapi64=n;nvcuda=b"
else
DXVK_ENABLE_NVAPI
=
"0"
for
rm_dll
in
"nvngx.ini"
"nvngx.dll"
"_nvngx.dll"
;
do
try_remove_file
"
${
WINEPREFIX
}
/drive_c/windows/syswow64/
$rm_dll
"
try_remove_file
"
${
WINEPREFIX
}
/drive_c/windows/system32/
$rm_dll
"
done
enabled_fake_nvidia_videocard 0
var_winedlloverride_update
"nvngx,_nvngx="
fi
...
...
data_from_portwine/scripts/var
View file @
8aee21ac
#!/usr/bin/env bash
#Author: Castro-Fidel (linux-gaming.ru)
#SCRIPTS_NEXT_VERSION=232
1
#SCRIPTS_NEXT_VERSION=232
2
#SCRIPTS_STABLE_VERSION=2320
########################################################################
export
LANGUAGES_LIST
=
"ru es"
...
...
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