feat(ui): added debugger to wine tools

This commit is contained in:
Observer KRypt0n_ 2023-04-16 15:10:26 +02:00
parent f64d60128c
commit 38e285ce32
No known key found for this signature in database
GPG key ID: 844DA47BA25FE1E2
5 changed files with 15 additions and 2 deletions

View file

@ -10,6 +10,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Added
- Added game sandboxing feature
- Added debugger to wine tools
### Changed

View file

@ -69,6 +69,7 @@ registry-editor = Registry editor
explorer = Explorer
task-manager = Task manager
configuration = Configuration
debugger = Debugger
dxvk-version = DXVK version
dxvk-selection-disabled = DXVK selection is disabled by your wine group preferences

View file

@ -69,6 +69,7 @@ registry-editor = Редактор реестра
explorer = Проводник
task-manager = Диспетчер задач
configuration = Настройки
debugger = Отладчик
dxvk-version = Версия DXVK
dxvk-selection-disabled = Выбор версии DXVK отключен настройками выбранного вами Wine

View file

@ -86,6 +86,7 @@ impl SimpleComponent for AboutDialog {
"<ul>",
"<li>Added game sandboxing feature</li>",
"<li>Added debugger to wine tools</li>",
"</ul>",
"<p>Changed</p>",

View file

@ -705,11 +705,11 @@ impl SimpleAsyncComponent for GeneralApp {
add_row = &adw::ActionRow {
set_title: &tr("command-line"),
set_subtitle: "start cmd",
set_subtitle: "wineconsole",
set_activatable: true,
connect_activated => GeneralAppMsg::WineOpen(&["start", "cmd"])
connect_activated => GeneralAppMsg::WineOpen(&["wineconsole"])
},
add_row = &adw::ActionRow {
@ -746,6 +746,15 @@ impl SimpleAsyncComponent for GeneralApp {
set_activatable: true,
connect_activated => GeneralAppMsg::WineOpen(&["winecfg"])
},
add_row = &adw::ActionRow {
set_title: &tr("debugger"),
set_subtitle: "start winedbg",
set_activatable: true,
connect_activated => GeneralAppMsg::WineOpen(&["start", "winedbg"])
}
}
},