Commit e7e48de9 authored by Mikhail Tergoev's avatar Mikhail Tergoev

Scripts version 2338

parent 36ed8768
......@@ -2,6 +2,13 @@ You can help us in the development of the project on the website: https://linux-
----------------------------------------
Changelog:
###Scripts version 2338### /Date: 12.08.2024 / Download update size: 4 megabytes
* updated lists of contributors in "PORTPROTON SETTINGS" --> "Authors and acknowledgments"
* added the ability to run .reg files (thanks Boria138)
* added icons for msi, bat and reg files (thanks to Dervart)
* fixed GUI alignment for XFCE (thanks to Htylol)
* added automatic disabling of downloading covers for STEAM if there is no access to the covers server
###Scripts version 2337### /Date: 09.08.2024 / Download update size: 4 megabytes
* fixed GUI alignment on SteamDeck (thanks to Htylol)
* added .bat file association (thanks to Boria138)
......
......@@ -2,6 +2,13 @@
-----------------------------------------
История изменений:
###Scripts version 2338### / Дата: 12.08.2024 / Размер скачиваемого обновления: 4 мегабайта
* обновлены списки помощников и благодарностей в "НАСТРОЙКИ PORTPROTON" --> "Авторы и благодарности"
* добавлена возможность запуска .reg файлов (спасибо Boria138)
* добавлены иконки для msi, bat и reg файлов (спасибо Dervart)
* исправлена центровка GUI для XFCE (спасибо Htylol)
* добавлено автоматическое отключение скачивания обложек для STEAM если нет доступа к серверу обложек
###Scripts version 2337### / Дата: 09.08.2024 / Размер скачиваемого обновления: 4 мегабайта
* исправлена центровка GUI на SteamDeck (спасибо Htylol)
* добавлена ассоциация .bat файлов (спасибо Boria138)
......
......@@ -3081,23 +3081,27 @@ pw_yad_form_vulkan () {
portwine_launch () {
start_portwine
unset PW_VD_TMP
if [[ "${PW_VIRTUAL_DESKTOP}" == "1" ]] ; then
pw_run explorer "/desktop=PortProton,${PW_SCREEN_RESOLUTION}" ${WINE_WIN_START} "$portwine_exe"
PW_VD_TMP=(explorer "/desktop=PortProton,${PW_SCREEN_RESOLUTION}")
fi
case "$portwine_exe" in
*.exe)
pw_run ${PW_VD_TMP[@]} ${WINE_WIN_START} "$portwine_exe"
;;
*.bat)
PW_USE_TERMINAL=1
pw_run cmd /c "$portwine_exe"
pw_run ${PW_VD_TMP[@]} cmd /c "$portwine_exe"
;;
*.msi)
pw_run msiexec /i "$portwine_exe"
pw_run ${PW_VD_TMP[@]} msiexec /i "$portwine_exe"
;;
*.reg)
pw_run regedit "$portwine_exe"
pw_run ${PW_VD_TMP[@]} regedit "$portwine_exe"
;;
*)
pw_run winefile
pw_run ${PW_VD_TMP[@]} winefile
;;
esac
}
......
#!/usr/bin/env bash
#Author: Castro-Fidel (linux-gaming.ru)
#SCRIPTS_NEXT_VERSION=2337
#SCRIPTS_NEXT_VERSION=2338
#SCRIPTS_STABLE_VERSION=2336
########################################################################
export LANGUAGES_LIST="ru es"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment