From 3bd150a9536c530a47d06d4602418350aba29a8f Mon Sep 17 00:00:00 2001 From: icenine451 <benjamin.r.shelton@protonmail.com> Date: Fri, 31 Mar 2023 15:56:02 -0400 Subject: [PATCH] Add "Browse the Wiki" to dev menu --- rd-submodules/shared-modules | 2 +- tools/configurator.sh | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) diff --git a/rd-submodules/shared-modules b/rd-submodules/shared-modules index ae5d7192..a2441b96 160000 --- a/rd-submodules/shared-modules +++ b/rd-submodules/shared-modules @@ -1 +1 @@ -Subproject commit ae5d7192c6a37f2c754fd92685a72d514931131a +Subproject commit a2441b964afefd8cd1cebcdf562c7878670daf42 diff --git a/tools/configurator.sh b/tools/configurator.sh index d826e9b1..911bce4a 100644 --- a/tools/configurator.sh +++ b/tools/configurator.sh @@ -1044,7 +1044,8 @@ configurator_developer_dialog() { --column="Choice" --column="Action" \ "Change Multi-user mode" "Enable or disable multi-user support" \ "Change Update Channel" "Change between normal and cooker builds" \ - "Change Update Check Setting" "Enable or disable online checks for new versions of RetroDECK" ) + "Change Update Check Setting" "Enable or disable online checks for new versions of RetroDECK" \ + "Browse the Wiki" "Browse the RetroDECK wiki online" ) case $choice in @@ -1060,6 +1061,10 @@ configurator_developer_dialog() { configurator_online_update_setting_dialog ;; + "Browse the Wiki" ) + xdg-open "https://github.com/XargonWan/RetroDECK/wiki" + ;; + "" ) # No selection made or Back button clicked configurator_welcome_dialog ;;