mirror of
https://github.com/an-anime-team/an-anime-game-launcher.git
synced 2025-02-16 15:22:01 +03:00
feat(ui): added debugger to wine tools
This commit is contained in:
parent
f64d60128c
commit
38e285ce32
5 changed files with 15 additions and 2 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -69,6 +69,7 @@ registry-editor = Редактор реестра
|
|||
explorer = Проводник
|
||||
task-manager = Диспетчер задач
|
||||
configuration = Настройки
|
||||
debugger = Отладчик
|
||||
|
||||
dxvk-version = Версия DXVK
|
||||
dxvk-selection-disabled = Выбор версии DXVK отключен настройками выбранного вами Wine
|
||||
|
|
|
@ -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>",
|
||||
|
|
|
@ -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"])
|
||||
}
|
||||
}
|
||||
},
|
||||
|
|
Loading…
Add table
Reference in a new issue