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
223b35c7
Commit
223b35c7
authored
Aug 08, 2024
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
STABLE: Scripts version 2336
parent
c4b44e30
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
15 additions
and
4 deletions
+15
-4
changelog_en
data_from_portwine/changelog_en
+3
-0
changelog_ru
data_from_portwine/changelog_ru
+3
-0
functions_helper
data_from_portwine/scripts/functions_helper
+2
-2
start.sh
data_from_portwine/scripts/start.sh
+5
-0
var
data_from_portwine/scripts/var
+2
-2
No files found.
data_from_portwine/changelog_en
View file @
223b35c7
...
@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://linux-
...
@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://linux-
----------------------------------------
----------------------------------------
Changelog:
Changelog:
###Scripts version 2336### / stable /Date: 08.08.2024 / Download update size: 4 megabytes
* improved verification of downloaded files
###Scripts version 2335### / stable /Date: 07.08.2024 / Download update size: 4 megabytes
###Scripts version 2335### / stable /Date: 07.08.2024 / Download update size: 4 megabytes
* cumulative update to the stable version of PortProton scripts
* cumulative update to the stable version of PortProton scripts
...
...
data_from_portwine/changelog_ru
View file @
223b35c7
...
@@ -2,6 +2,9 @@
...
@@ -2,6 +2,9 @@
-----------------------------------------
-----------------------------------------
История изменений:
История изменений:
###Scripts version 2336### / stable / Дата: 08.08.2024 / Размер скачиваемого обновления: 4 мегабайта
* улучшение работы верификации скачанных файлов
###Scripts version 2335### / stable / Дата: 07.08.2024 / Размер скачиваемого обновления: 185 мегабайт
###Scripts version 2335### / stable / Дата: 07.08.2024 / Размер скачиваемого обновления: 185 мегабайт
* кумулятивное обновление стабильной версии скриптов PortProton
* кумулятивное обновление стабильной версии скриптов PortProton
...
...
data_from_portwine/scripts/functions_helper
View file @
223b35c7
...
@@ -272,7 +272,7 @@ check_process () {
...
@@ -272,7 +272,7 @@ check_process () {
export
-f
check_process
export
-f
check_process
try_check_sha256sum
()
{
try_check_sha256sum
()
{
SHA256SUM_EXT
=
$(
curl
-
L
--silent
"
${
1
//.tar*/
}
.sha256sum"
|
awk
'{print $1}'
)
SHA256SUM_EXT
=
$(
curl
-
-silent
-L
"
${
1
//.tar*/
}
.sha256sum"
|
awk
'{print $1}'
)
if
[[
${#
SHA256SUM_EXT
}
==
64
]]
;
then
if
[[
${#
SHA256SUM_EXT
}
==
64
]]
;
then
SHA256SUM_INT
=
$(
sha256sum
"
$dest
"
|
awk
'{print $1}'
)
SHA256SUM_INT
=
$(
sha256sum
"
$dest
"
|
awk
'{print $1}'
)
if
[[
"
$SHA256SUM_EXT
"
==
"
$SHA256SUM_INT
"
]]
;
then
if
[[
"
$SHA256SUM_EXT
"
==
"
$SHA256SUM_INT
"
]]
;
then
...
@@ -366,7 +366,7 @@ try_download () {
...
@@ -366,7 +366,7 @@ try_download () {
fi
fi
fi
fi
print_ok
"File downloaded successfully:
$filename
from
${
FIRST_URL
[0]
}
"
print_ok
"File downloaded successfully:
$filename
from
${
FIRST_URL
[0]
}
"
if
try_check_sha256sum
${
SECOND
_URL
[@]
}
;
then
if
try_check_sha256sum
${
FIRST
_URL
[@]
}
;
then
return
0
return
0
else
else
try_remove_file
"
$dest
"
try_remove_file
"
$dest
"
...
...
data_from_portwine/scripts/start.sh
View file @
223b35c7
...
@@ -466,6 +466,11 @@ use: [--repair] [--reinstall] [--autoinstall]
...
@@ -466,6 +466,11 @@ use: [--repair] [--reinstall] [--autoinstall]
export
PW_DEBUG
=
"set -x"
export
PW_DEBUG
=
"set -x"
/usr/bin/env bash
-c
${
pw_full_command_line
[*]
}
2>&1 |
tee
"
$PORT_WINE_PATH
/scripts-debug.log"
&
/usr/bin/env bash
-c
${
pw_full_command_line
[*]
}
2>&1 |
tee
"
$PORT_WINE_PATH
/scripts-debug.log"
&
exit
0
;;
exit
0
;;
'--server-file-access'
)
echo
curl
-s
--list-only
"https://cloud.linux-gaming.ru/log/
$(
date
+20%y_%m
)
_file_access.log"
|
sort
-r
echo
exit
0
;;
esac
esac
### GUI ###
### GUI ###
...
...
data_from_portwine/scripts/var
View file @
223b35c7
#!/usr/bin/env bash
#!/usr/bin/env bash
#Author: Castro-Fidel (linux-gaming.ru)
#Author: Castro-Fidel (linux-gaming.ru)
#SCRIPTS_NEXT_VERSION=233
5
#SCRIPTS_NEXT_VERSION=233
6
#SCRIPTS_STABLE_VERSION=233
5
#SCRIPTS_STABLE_VERSION=233
6
########################################################################
########################################################################
export
LANGUAGES_LIST
=
"ru es"
export
LANGUAGES_LIST
=
"ru es"
export
PW_VKBASALT
=
"0"
export
PW_VKBASALT
=
"0"
...
...
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