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
Mikhail Tergoev
PortWINE
Commits
96b5d84e
Commit
96b5d84e
authored
Jan 22, 2022
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
###Scripts version 2065###
parent
9be06fb1
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
34 additions
and
21 deletions
+34
-21
changelog_eng
data_from_portwine/changelog_eng
+3
-0
changelog_rus
data_from_portwine/changelog_rus
+3
-0
functions_helper
data_from_portwine/scripts/functions_helper
+27
-20
var
data_from_portwine/scripts/var
+1
-1
No files found.
data_from_portwine/changelog_eng
View file @
96b5d84e
...
...
@@ -2,6 +2,9 @@ You can help us in the development of the project on the website: https://boosty
-----------------------------------------
Changelog:
###Scripts version 2065###
* HOTFIX - correcting the termination of the yad and yad_new processes
###Scripts version 2064###
* added notification to the user about possible problems when starting in a Wayland session (once and only under Wayland)
* added display of the current session type in debug
...
...
data_from_portwine/changelog_rus
View file @
96b5d84e
...
...
@@ -10,6 +10,9 @@
* добавить выбор языка в PortProton и about us
* заниматься только развитием проекта за счет вашей подписки на https://boosty.to/portwine-linux.ru
-----------------------------------------
###Scripts version 2065###
* HOTFIX - корректировка завершения процессов yad и yad_new
###Scripts version 2064###
* добавлено уведомление пользователю о возможных проблемах при запуске в Wayland сессии (один раз и только под Wayland)
* в debug добавлено отображение текущего типа сессии
...
...
data_from_portwine/scripts/functions_helper
View file @
96b5d84e
...
...
@@ -9,20 +9,24 @@ pw_ping_test () {
print_error
()
{
echo
"ERROR:
$@
"
}
export
-f
print_error
zenity_error
()
{
echo
"ERROR:
$@
"
zenity
--error
--no-wrap
--text
"
$@
"
2> /dev/null
}
export
-f
zenity_error
print_info
()
{
echo
"INFO:
$@
"
}
export
-f
print_info
zenity_info
()
{
echo
"INFO:
$@
"
zenity
--info
--no-wrap
--text
"
$@
"
2> /dev/null
}
export
-f
zenity_info
print_var
()
{
for
vp
in
$@
;
do
echo
"
${
vp
}
=
${
!vp
}
"
;
done
...
...
@@ -40,6 +44,7 @@ try_copy_file () {
fi
fi
}
export
-f
try_copy_file
try_copy_dir
()
{
if
[
!
-d
"
$1
"
]
;
then
print_info
"directory
$1
not found for copy"
...
...
@@ -50,6 +55,7 @@ try_copy_dir () {
fi
return
1
}
export
-f
try_copy_dir
try_remove_file
()
{
if
[
-f
"
$1
"
]
;
then
...
...
@@ -58,6 +64,7 @@ try_remove_file () {
fi
return
1
}
export
-f
try_remove_file
try_remove_dir
()
{
if
[
-d
"
$1
"
]
;
then
...
...
@@ -66,6 +73,7 @@ try_remove_dir () {
fi
return
1
}
export
-f
try_remove_dir
try_force_link_file
()
{
if
[
!
-f
"
$1
"
]
;
then
print_info
"file
$1
not found for link"
...
...
@@ -76,6 +84,7 @@ try_force_link_file () {
fi
return
1
}
export
-f
try_force_link_file
check_symlink
()
{
CHK_SYMLINK_FILE
=
`
file
"
$1
"
`
...
...
@@ -89,6 +98,7 @@ check_symlink () {
return
1
fi
}
export
-f
check_symlink
try_force_link_dir
()
{
if
[
!
-d
"
$1
"
]
;
then
print_info
"directory
$1
not found for link"
...
...
@@ -99,10 +109,12 @@ try_force_link_dir () {
fi
return
1
}
export
-f
try_force_link_dir
check_process
()
{
[
!
-n
"
`
ps cax |
grep
"
$1
"
|
awk
'{print $1}'
`
"
]
&&
return
0
||
return
1
}
export
-f
check_process
try_download
()
{
set
-o
pipefail
...
...
@@ -350,6 +362,7 @@ pw_start_progress_bar_cover () {
PW_GIF_SIZE_Y
=
`
file
"
${
PW_GIF_FILE
}
"
|
awk
'{print $9 + 20}'
`
"
${
pw_yad
}
"
--picture
--filename
=
"
${
PW_GIF_FILE
}
"
--close-on-unfocus
--no-buttons
--undecorated
--center
\
--skip-taskbar
--width
=
$PW_GIF_SIZE_X
--height
=
$PW_GIF_SIZE_Y
>
/dev/null 2>&1 &
export
PW_YAD_PID_PROGRESS_BAR_COVER
=
"
$!
"
}
pw_update_pfx_cover_gui
()
{
...
...
@@ -368,28 +381,24 @@ pw_update_pfx_cover_gui () {
"
${
pw_yad_new
}
"
--notebook
--key
=
"
$PW_KEY_PROGRESS_BAR
"
--tab
=
LOGO
--tab
=
TERMINAL
--no-buttons
--undecorated
\
--center
--auto-close
--skip-taskbar
--width
=
$PW_GIF_SIZE_X
--height
=
$PW_GIF_SIZE_Y
--tab-pos
=
bottom &
e
cho
"
"
e
xport
PW_YAD_PID_PFX_COVER_UI
=
"
$!
"
}
pw_start_progress_bar_cs
()
{
"
${
pw_yad
}
"
--progress
--progress-text
=
"
$@
"
--pulsate
--close-on-unfocus
\
--no-buttons
--undecorated
--center
--skip-taskbar
--width
=
500
--wrap-width
=
500
>
/dev/null 2>&1 &
e
cho
"
"
e
xport
PW_YAD_PID_PROGRESS_BAR_CS
=
"
$!
"
}
pw_start_progress_bar_block
()
{
"
${
pw_yad
}
"
--progress
--progress-text
=
"
$@
"
--pulsate
\
--no-buttons
--undecorated
--center
--skip-taskbar
--width
=
500
--wrap-width
=
500
>
/dev/null 2>&1 &
e
cho
"
"
e
xport
PW_YAD_PID_PROGRESS_BAR_BLOCK
=
"
$!
"
}
pw_stop_progress_bar
()
{
if
[[
!
-z
"
`
pgrep
-a
yad |
grep
"progress"
|
awk
'{print $1}'
`
"
]]
;
then
kill
-s
SIGTERM
`
pgrep
-a
yad |
grep
"progress"
|
awk
'{print $1}'
`
>
/dev/null 2>&1
fi
if
[[
!
-z
"
`
pgrep
-a
yad |
grep
key
=
$PW_KEY_PROGRESS_BAR
|
awk
'{print $1}'
`
"
]]
;
then
kill
-s
SIGTERM
"
`
pgrep
-a
yad |
grep
key
=
$PW_KEY_PROGRESS_BAR
|
awk
'{print $1}'
`
"
>
/dev/null 2>&1
fi
kill
-s
SIGUSR1
"
$PW_YAD_PID_PROGRESS_BAR_BLOCK
"
"
$PW_YAD_PID_PROGRESS_BAR_CS
"
\
"
$PW_YAD_PID_PFX_COVER_UI
""
$PW_YAD_PID_PROGRESS_BAR_COVER
""
$PW_YAD_PID_TRAY
"
>
/dev/null 2>&1
return
0
}
export
-f
pw_stop_progress_bar
...
...
@@ -399,6 +408,7 @@ wait_wineserver () {
sleep
1
done
}
export
-f
wait_wineserver
kill_portwine
()
{
wine_pids
=
"
`
ls
-l
/proc/
*
/exe 2>/dev/null |
grep
-ie
${
portname
}
|
grep
-E
'wine(64)?-preloader|wineserver'
|
awk
-F
/
'{print $3}'
`
"
...
...
@@ -439,9 +449,9 @@ pw_kill_autostart () {
rm
-f
"
${
WINEPREFIX
}
"
/drive_c/
*
.tmp
fi
}
export
-f
pw_kill_autostart
stop_portwine
()
{
wait_wineserver
&&
add_in_stop_portwine
if
[
"
$int_xneur
"
=
"1"
]
;
then
xneur &
...
...
@@ -453,19 +463,17 @@ stop_portwine () {
try_remove_file
"
${
PORT_SCRIPTS_PATH
}
/0"
try_remove_file
"
${
PORT_SCRIPTS_PATH
}
/1"
kill_portwine
&&
if
[
!
-z
"
`
pgrep
-a
yad_new |
grep
"
\-\-
notification"
|
awk
'{print $1}'
`
"
]
then
kill
-s
SIGUSR1
"
`
pgrep
-a
yad_new |
grep
"
\-\-
notification"
|
awk
'{print $1}'
`
"
>
/dev/null 2>&1
fi
kill
-s
SIGUSR1
"
$PW_YAD_PID_TRAY
"
>
/dev/null 2>&1
if
[
!
-z
"
`
ls
"
${
WINEPREFIX
}
"
/drive_c/users/steamuser/Temp/ |
head
-n
1
`
"
]
;
then
chmod
-R
755
"
${
WINEPREFIX
}
"
/drive_c/users/steamuser/Temp/
rm
-fr
"
${
WINEPREFIX
}
"
/drive_c/users/steamuser/Temp/
*
fi
try_remove_dir
"
${
PW_WINELIB
}
/var"
find
"
${
WINEPREFIX
}
/drive_c/"
-maxdepth
1
-type
f
-name
"*.tmp"
-delete
if
[[
!
-z
"
`
pgrep
-a
start.sh |
grep
-i
portproton |
awk
'{print $1}'
`
"
]]
then
kill
-s
KILL
`
pgrep
-a
start.sh |
grep
-i
portproton |
awk
'{print $1}'
`
>
/dev/null 2>&1
fi
kill
-n
9
`
pgrep
-a
start.sh |
grep
'/PortProton/'
|
awk
'{print $1}'
`
>
/dev/null 2>&1
exit
0
}
export
-f
stop_portwine
pw_download_libs
()
{
if
[
!
-z
"
`
ls
${
PORT_WINE_TMP_PATH
}
|
grep
libs_v |
grep
-v
libs
${
PW_LIBS_VER
}
`
"
]
;
then
...
...
@@ -585,10 +593,8 @@ pw_tray_icon () {
tray_icon_click_exit
()
{
pw_stop_progress_bar
kill_portwine
if
[
!
-z
"
`
pgrep
-a
yad_new |
grep
"
\-\-
notification"
|
awk
'{print $1}'
`
"
]
then
kill
-s
SIGUSR1
"
`
pgrep
-a
yad_new |
grep
"
\-\-
notification"
|
awk
'{print $1}'
`
"
>
/dev/null 2>&1
fi
kill
-n
9
`
pgrep
-a
start.sh |
awk
'/PortWINE/ && /PortProton/'
|
awk
'{print $1}'
`
>
/dev/null 2>&1
kill
-s
SIGUSR1
"
$PW_YAD_PID_TRAY
"
>
/dev/null 2>&1
stop_portwine
}
export
-f
tray_icon_click_exit
...
...
@@ -601,6 +607,7 @@ pw_tray_icon () {
<<< WINEFILE >>>!bash -c pw_tray_winefile!"
$PW_GUI_ICON_PATH
/port_winefile.png
"|
\
<<< CHANGE LOG >>>!bash -c open_changelog!"
$PW_GUI_ICON_PATH
/port_changelog.png
"|
\
<<< FORCE EXIT >>>!bash -c tray_icon_click_exit!"
$PW_GUI_ICON_PATH
/port_exit.png
"|"
&
export
PW_YAD_PID_TRAY
=
"
$!
"
}
pw_init_db
()
{
...
...
data_from_portwine/scripts/var
View file @
96b5d84e
#!/bin/bash
#Author: Castro-Fidel (PortWINE-Linux.ru)
#SCRIPTS_NEXT_VERSION=206
4
#SCRIPTS_NEXT_VERSION=206
5
#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