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
e623b589
Commit
e623b589
authored
Mar 15, 2024
by
Mikhail Tergoev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Scripts version 2263
parent
1280cb9a
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
13 additions
and
4 deletions
+13
-4
changelog_eng
data_from_portwine/changelog_eng
+4
-0
changelog_rus
data_from_portwine/changelog_rus
+4
-0
runlib
data_from_portwine/scripts/runlib
+4
-3
var
data_from_portwine/scripts/var
+1
-1
No files found.
data_from_portwine/changelog_eng
View file @
e623b589
...
@@ -2,6 +2,10 @@ You can help us in the development of the project on the website: https://linux-
...
@@ -2,6 +2,10 @@ You can help us in the development of the project on the website: https://linux-
----------------------------------------
----------------------------------------
Changelog:
Changelog:
###Scripts version 2263### Date: 15.03.2024 / Download update size: 15 megabytes
* the lock file of the second session has been moved to "/tmp/portproton.lock"
* when starting from the terminal, it is clearly indicated that the lock file and its location have been found
###Scripts version 2262### Date: 14.03.2024 / Download update size: 230 megabytes
###Scripts version 2262### Date: 14.03.2024 / Download update size: 230 megabytes
* added a warning when starting the second PortProton session
* added a warning when starting the second PortProton session
* added the ability to disable the container
* added the ability to disable the container
...
...
data_from_portwine/changelog_rus
View file @
e623b589
...
@@ -2,6 +2,10 @@
...
@@ -2,6 +2,10 @@
-----------------------------------------
-----------------------------------------
История изменений:
История изменений:
###Scripts version 2263### Дата: 15.03.2024 / Размер скачиваемого обновления: 15 мегабайт
* файл блокировки второй сессии перенесен в "/tmp/portproton.lock"
* при запуске с терминала, явно указано что найден файл блокировки и его месторасположение
###Scripts version 2262### Дата: 14.03.2024 / Размер скачиваемого обновления: 230 мегабайт
###Scripts version 2262### Дата: 14.03.2024 / Размер скачиваемого обновления: 230 мегабайт
* добавлено предупреждение при запуске второй сессии PortProton
* добавлено предупреждение при запуске второй сессии PortProton
* добавлена возможность отключения контейнера
* добавлена возможность отключения контейнера
...
...
data_from_portwine/scripts/runlib
View file @
e623b589
...
@@ -865,14 +865,15 @@ check_user_conf
...
@@ -865,14 +865,15 @@ check_user_conf
check_variables PW_LOG
"0"
check_variables PW_LOG
"0"
if
[[
-z
"
${
INSTALLING_PORT
}
"
]]
;
then
if
[[
-z
"
${
INSTALLING_PORT
}
"
]]
;
then
if
[[
-f
"
$HOME
/.config/.portproton.lock"
]]
;
then
if
[[
-f
"/tmp/portproton.lock"
]]
;
then
print_warning
"Found lock file: /tmp/portproton.lock"
yad_info
"
$loc_gui_portproton_lock
"
yad_info
"
$loc_gui_portproton_lock
"
exit
0
exit
0
fi
fi
touch
"
$HOME
/.config/.
portproton.lock"
touch
"
/tmp/
portproton.lock"
rm_lock_file
()
{
rm_lock_file
()
{
echo
"Removing the lock file..."
echo
"Removing the lock file..."
rm
"
$HOME
/.config/.
portproton.lock"
&&
echo
"OK"
rm
-fv
"/tmp/
portproton.lock"
&&
echo
"OK"
}
}
trap
"rm_lock_file"
EXIT
trap
"rm_lock_file"
EXIT
...
...
data_from_portwine/scripts/var
View file @
e623b589
#!/usr/bin/env bash
#!/usr/bin/env bash
#Author: Castro-Fidel (linux-gaming.ru)
#Author: Castro-Fidel (linux-gaming.ru)
#SCRIPTS_NEXT_VERSION=226
2
#SCRIPTS_NEXT_VERSION=226
3
########################################################################
########################################################################
export
PW_MANGOHUD
=
"0"
export
PW_MANGOHUD
=
"0"
export
DEFAULT_MANGOHUD_CONFIG
=
"cpu_stats,cpu_temp,cpu_mhz,gpu_stats,gpu_temp,gpu_core_clock,gpu_mem_clock,vulkan_driver,gpu_name,vram,ram,frame_timing=1,time,arch,wine,toggle_hud=Shift_R+F12,resolution,vkbasalt,gamemode"
export
DEFAULT_MANGOHUD_CONFIG
=
"cpu_stats,cpu_temp,cpu_mhz,gpu_stats,gpu_temp,gpu_core_clock,gpu_mem_clock,vulkan_driver,gpu_name,vram,ram,frame_timing=1,time,arch,wine,toggle_hud=Shift_R+F12,resolution,vkbasalt,gamemode"
...
...
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