Add "Browse the Wiki" to dev menu

This commit is contained in:
icenine451 2023-03-31 15:56:02 -04:00
parent 0e46fe679f
commit 3bd150a953
2 changed files with 7 additions and 2 deletions

@ -1 +1 @@
Subproject commit ae5d7192c6a37f2c754fd92685a72d514931131a
Subproject commit a2441b964afefd8cd1cebcdf562c7878670daf42

View file

@ -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
;;