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
b696659f
Commit
b696659f
authored
Nov 24, 2021
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
###Scripts version 2054###
parent
f54644ea
Show whitespace changes
Inline
Side-by-side
Showing
18 changed files
with
148 additions
and
5 deletions
+148
-5
changelog
data_from_portwine/changelog
+3
-0
citra.png
data_from_portwine/img/gui/citra.png
+0
-0
dolphin.png
data_from_portwine/img/gui/dolphin.png
+0
-0
itch.png
data_from_portwine/img/gui/itch.png
+0
-0
mame.png
data_from_portwine/img/gui/mame.png
+0
-0
ppsspp.png
data_from_portwine/img/gui/ppsspp.png
+0
-0
retroarch.png
data_from_portwine/img/gui/retroarch.png
+0
-0
scummvm.png
data_from_portwine/img/gui/scummvm.png
+0
-0
PW_CITRA
data_from_portwine/scripts/pw_autoinstall/PW_CITRA
+18
-0
PW_DOLPHIN
data_from_portwine/scripts/pw_autoinstall/PW_DOLPHIN
+18
-0
PW_ITCH
data_from_portwine/scripts/pw_autoinstall/PW_ITCH
+19
-0
PW_MAME
data_from_portwine/scripts/pw_autoinstall/PW_MAME
+17
-0
PW_PPSSPP
data_from_portwine/scripts/pw_autoinstall/PW_PPSSPP
+18
-0
PW_RETROARCH
data_from_portwine/scripts/pw_autoinstall/PW_RETROARCH
+17
-0
PW_SCUMMVM
data_from_portwine/scripts/pw_autoinstall/PW_SCUMMVM
+24
-0
runlib
data_from_portwine/scripts/runlib
+1
-1
start.sh
data_from_portwine/scripts/start.sh
+12
-3
var
data_from_portwine/scripts/var
+1
-1
No files found.
data_from_portwine/changelog
View file @
b696659f
...
...
@@ -7,6 +7,9 @@
* добавить проверку количества db файлов на один exe
* заниматься только развитием проекта за счет вашей подписки на https://boosty.to/portwine-linux.ru
-----------------------------------------
###Scripts version 2054###
* добавлен новый пунк в меню PortProton для установки эмуляторов (спасибо chal55rus)
###Scripts version 2053###
* HOTFIX - исправлены ошибки создания симлинков некоторых библиоткек из plugins_v1
...
...
data_from_portwine/img/gui/citra.png
0 → 100644
View file @
b696659f
2.14 KB
data_from_portwine/img/gui/dolphin.png
0 → 100644
View file @
b696659f
729 Bytes
data_from_portwine/img/gui/itch.png
0 → 100644
View file @
b696659f
1.58 KB
data_from_portwine/img/gui/mame.png
0 → 100644
View file @
b696659f
953 Bytes
data_from_portwine/img/gui/ppsspp.png
0 → 100644
View file @
b696659f
2 KB
data_from_portwine/img/gui/retroarch.png
0 → 100644
View file @
b696659f
787 Bytes
data_from_portwine/img/gui/scummvm.png
0 → 100644
View file @
b696659f
1.76 KB
data_from_portwine/scripts/pw_autoinstall/PW_CITRA
0 → 100755
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
########################################################################
#export LAUNCH_PARAMETERS=("")
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/citra-setup-windows.exe"
start_portwine
if
try_download
"https://github.com/citra-emu/citra-web/releases/download/1.0/citra-setup-windows.exe"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the Citra. Please wait..."
pw_run
"
${
PW_AUTOINSTALL_EXE
}
"
portwine_exe
=
"
$WINEPREFIX
/drive_c/users/steamuser/AppData/Local/Citra/nightly-mingw/citra-qt.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"Citra"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_DOLPHIN
0 → 100644
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
##########################################################################
export
LAUNCH_PARAMETERS
=(
"/S"
)
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/dolphin-x64-5.0.exe"
start_portwine
if
try_download
"https://dl-mirror.dolphin-emu.org/5.0/dolphin-x64-5.0.exe"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the Dolphin 5.0. Please wait..."
pw_run
"
${
PW_AUTOINSTALL_EXE
}
"
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files/Dolphin/Dolphin.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"Dolphin 5.0"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_ITCH
0 → 100644
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
##########################################################################
export
LAUNCH_PARAMETERS
=(
"--silent"
)
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/itch-setup.exe"
start_portwine
if
try_download
"https://itch.io/app/download?platform=windows"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the ITCH.IO. Please wait..."
pw_kill_autostart itch.exe &
pw_run
"
${
PW_AUTOINSTALL_EXE
}
"
portwine_exe
=
"
$WINEPREFIX
/drive_c/users/steamuser/AppData/Local/itch/app-25.5.1/itch.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"Itch"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_MAME
0 → 100755
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
########################################################################
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/mame0237b_64bit.exe"
start_portwine
if
try_download
"https://github.com/mamedev/mame/releases/download/mame0237/mame0237b_64bit.exe"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the MAME. Please wait..."
"
$pw_7z
"
x
-y
"
${
PW_AUTOINSTALL_EXE
}
"
-o
"
$WINEPREFIX
/drive_c/Program Files (x86)/Mame"
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files (x86)/Mame/mame.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"MAME"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_PPSSPP
0 → 100644
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
##########################################################################
export
LAUNCH_PARAMETERS
=(
"/VERYSILENT"
)
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/PPSSPPSetup.exe"
start_portwine
if
try_download
"https://www.ppsspp.org/files/1_12_3/PPSSPPSetup.exe"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the PPSSPPS. Please wait..."
pw_run
"
${
PW_AUTOINSTALL_EXE
}
"
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files/PPSSPP/PPSSPPWindows64.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"PPSSPPWindows"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_RETROARCH
0 → 100755
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
########################################################################
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/RetroArch.7z"
start_portwine
if
try_download
"https://buildbot.libretro.com/stable/1.9.13/windows/x86_64/RetroArch.7z"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the RetroArch. Please wait..."
"
$pw_7z
"
x
-y
"
${
PW_AUTOINSTALL_EXE
}
"
-o
"
$WINEPREFIX
/drive_c/Program Files (x86)"
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files (x86)/RetroArch-Win64/retroarch.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"RetroArch"
portwine_create_shortcut
fi
stop_portwine
data_from_portwine/scripts/pw_autoinstall/PW_SCUMMVM
0 → 100644
View file @
b696659f
#!/bin/bash
# Author: chal55rus (Sergey P.)
##########################################################################
export
LAUNCH_PARAMETERS
=(
"/VERYSILENT"
)
export
PW_AUTOINSTALL_EXE
=
"
${
PW_USER_TEMP
}
/scummvm-2.5.0-win32.exe"
start_portwine
if
try_download
"https://downloads.scummvm.org/frs/scummvm/2.5.0/scummvm-2.5.0-win32.exe"
"
${
PW_AUTOINSTALL_EXE
}
"
then
pw_start_progress_bar_block
"Installing the ScummVM. Please wait..."
#pw_kill_autostart launcher101xp.exe &
pw_run
"
${
PW_AUTOINSTALL_EXE
}
"
portwine_exe
=
"
$WINEPREFIX
/drive_c/Program Files/ScummVM/scummvm.exe"
try_remove_file
"
${
PW_AUTOINSTALL_EXE
}
"
kill_portwine
pw_stop_progress_bar
export
PORTWINE_CREATE_SHORTCUT_NAME
=
"ScummVM"
portwine_create_shortcut
fi
stop_portwine
#/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP-
#https://downloads.scummvm.org/frs/scummvm/2.5.0/scummvm-2.5.0-win32.exe
data_from_portwine/scripts/runlib
View file @
b696659f
#!/bin/bash
# Author: Castro-Fidel (PortWINE-Linux.ru)
# Development assistants: Cefeiko; Dezert1r; Taz_mania; Anton_Famillianov; Rus_Nor; gavr; RidBowt; VHSgunzo
# Development assistants: Cefeiko; Dezert1r; Taz_mania; Anton_Famillianov; Rus_Nor; gavr; RidBowt; VHSgunzo
; chal55rus
########################################################################
echo
'
████─████─████─███─█───█─███─█──█─███
...
...
data_from_portwine/scripts/start.sh
View file @
b696659f
...
...
@@ -332,12 +332,20 @@ else
export
-f
gui_open_var
export
KEY
=
$RANDOM
"
${
pw_yad
}
"
--plug
=
$KEY
--tabnum
=
3
--form
--columns
=
2
\
"
${
pw_yad
}
"
--plug
=
$KEY
--tabnum
=
4
--form
--columns
=
2
\
--field
=
"CLEAR PREFIX"
:
"BTN"
'@bash -c "button_click gui_clear_pfx"'
\
--field
=
"EDIT SCRIPT VAR"
:
"BTN"
'@bash -c "button_click gui_open_var"'
\
--field
=
"WINE UNINSTALLER"
:
"BTN"
'@bash -c "button_click gui_wine_uninstaller"'
\
--field
=
"REMOVE PORTPROTON"
:
"BTN"
'@bash -c "button_click gui_rm_portproton"'
&
"
${
pw_yad
}
"
--plug
=
$KEY
--tabnum
=
3
--form
--columns
=
3
--scroll
--height
=
500
\
--field
=
" Dolphin 5.0"
!
"
$PW_GUI_ICON_PATH
/dolphin.png"
:
"BTN"
'@bash -c "button_click PW_DOLPHIN"'
\
--field
=
" MAME"
!
"
$PW_GUI_ICON_PATH
/mame.png"
:
"BTN"
'@bash -c "button_click PW_MAME"'
\
--field
=
" ScummVM"
!
"
$PW_GUI_ICON_PATH
/scummvm.png"
:
"BTN"
'@bash -c "button_click PW_SCUMMVM"'
\
--field
=
" RetroArch"
!
"
$PW_GUI_ICON_PATH
/retroarch.png"
:
"BTN"
'@bash -c "button_click PW_RETROARCH"'
\
--field
=
" PPSSPP Windows"
!
"
$PW_GUI_ICON_PATH
/ppsspp.png"
:
"BTN"
'@bash -c "button_click PW_PPSSPP"'
\
--field
=
" Citra"
!
"
$PW_GUI_ICON_PATH
/citra.png"
:
"BTN"
'@bash -c "button_click PW_CITRA"'
\
&
"
${
pw_yad
}
"
--plug
=
$KEY
--tabnum
=
2
--form
--columns
=
3
--scroll
--height
=
500
\
--field
=
" Wargaming Game Center"
!
"
$PW_GUI_ICON_PATH
/wgc.png"
:
"BTN"
'@bash -c "button_click PW_WGC"'
\
--field
=
" Battle.net Launcher"
!
"
$PW_GUI_ICON_PATH
/battle_net.png"
:
"BTN"
'@bash -c "button_click PW_BATTLE_NET"'
\
...
...
@@ -354,7 +362,8 @@ else
--field
=
" Glyph Client"
!
"
$PW_GUI_ICON_PATH
/glyph.png"
:
"BTN"
'@bash -c "button_click PW_GLYPH"'
\
--field
=
" Ankama Launcher"
!
"
$PW_GUI_ICON_PATH
/ankama.png"
:
"BTN"
'@bash -c "button_click PW_ANKAMA"'
\
--field
=
" League of Legends"
!
"
$PW_GUI_ICON_PATH
/lol.png"
:
"BTN"
'@bash -c "button_click PW_LOL"'
\
--field
=
" Gameforge Client"
!
"
$PW_GUI_ICON_PATH
/gameforge.png"
:
"BTN"
'@bash -c "button_click PW_GAMEFORGE"'
&
--field
=
" Gameforge Client"
!
"
$PW_GUI_ICON_PATH
/gameforge.png"
:
"BTN"
'@bash -c "button_click PW_GAMEFORGE"'
\
--field
=
" ITCH.IO"
!
"
$PW_GUI_ICON_PATH
/itch.png"
:
"BTN"
'@bash -c "button_click PW_ITCH"'
&
"
${
pw_yad
}
"
--plug
=
${
KEY
}
--tabnum
=
1
--columns
=
3
--form
--separator
=
";"
\
--image
"
$PW_GUI_ICON_PATH
/port_proton.png"
\
...
...
@@ -373,7 +382,7 @@ else
"
${
pw_yad
}
"
--key
=
$KEY
--notebook
--borders
=
10
--width
=
1000
--height
=
168
--no-buttons
--text-align
=
center
\
--window-icon
=
"
$PW_GUI_ICON_PATH
/port_proton.png"
--title
"
${
portname
}
-
${
install_ver
}
(
${
scripts_install_ver
}
)"
--separator
=
";"
\
--tab-pos
=
right
--tab
=
"PORT_PROTON"
--tab
=
"AUTOINSTALL"
--tab
=
" SETTINGS"
--center
--tab-pos
=
right
--tab
=
"PORT_PROTON"
--tab
=
"AUTOINSTALL"
--tab
=
"
EMULATORS"
--tab
=
"
SETTINGS"
--center
YAD_STATUS
=
"
$?
"
if
[[
"
$YAD_STATUS
"
==
"1"
||
"
$YAD_STATUS
"
==
"252"
]]
;
then
exit
0
;
fi
...
...
data_from_portwine/scripts/var
View file @
b696659f
#!/bin/bash
#Author: Castro-Fidel (PortWINE-Linux.ru)
#SCRIPTS_NEXT_VERSION=205
3
#SCRIPTS_NEXT_VERSION=205
4
#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