diff --git a/CHANGELOG.md b/CHANGELOG.md index 051fbb2..ac97adc 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/assets/locales/en/general.ftl b/assets/locales/en/general.ftl index a85cd76..53630d0 100644 --- a/assets/locales/en/general.ftl +++ b/assets/locales/en/general.ftl @@ -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 diff --git a/assets/locales/ru/general.ftl b/assets/locales/ru/general.ftl index 75b33f8..dfa744a 100644 --- a/assets/locales/ru/general.ftl +++ b/assets/locales/ru/general.ftl @@ -69,6 +69,7 @@ registry-editor = Редактор реестра explorer = Проводник task-manager = Диспетчер задач configuration = Настройки +debugger = Отладчик dxvk-version = Версия DXVK dxvk-selection-disabled = Выбор версии DXVK отключен настройками выбранного вами Wine diff --git a/src/ui/about.rs b/src/ui/about.rs index ac0458e..33bae89 100644 --- a/src/ui/about.rs +++ b/src/ui/about.rs @@ -86,6 +86,7 @@ impl SimpleComponent for AboutDialog { "", "

Changed

", diff --git a/src/ui/preferences/general.rs b/src/ui/preferences/general.rs index 7b7409d..9376a68 100644 --- a/src/ui/preferences/general.rs +++ b/src/ui/preferences/general.rs @@ -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"]) } } },