1
0
Fork 0
mirror of https://github.com/Orama-Interactive/Pixelorama.git synced 2025-02-12 08:43:08 +00:00

Added link to docs in the Help menu

This commit is contained in:
OverloadedOrama 2020-05-10 02:00:24 +03:00
parent e1142212fd
commit 74c238b0f5

View file

@ -71,6 +71,7 @@ func _ready() -> void:
} }
var help_menu_items := { var help_menu_items := {
"View Splash Screen" : 0, "View Splash Screen" : 0,
"Online Docs" : 0,
"Issue Tracker" : 0, "Issue Tracker" : 0,
"Changelog" : 0, "Changelog" : 0,
"About Pixelorama" : 0 "About Pixelorama" : 0
@ -447,11 +448,13 @@ func help_menu_id_pressed(id : int) -> void:
0: # Splash Screen 0: # Splash Screen
$SplashDialog.popup_centered() $SplashDialog.popup_centered()
Global.dialog_open(true) Global.dialog_open(true)
1: # Issue Tracker 1: # Online Docs
OS.shell_open("https://orama-interactive.github.io/Pixelorama-Docs/")
2: # Issue Tracker
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues") OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/issues")
2: # Changelog 3: # Changelog
OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/Changelog.md#v07---unreleased") OS.shell_open("https://github.com/Orama-Interactive/Pixelorama/blob/master/Changelog.md#v07---unreleased")
3: # About Pixelorama 4: # About Pixelorama
$AboutDialog.popup_centered() $AboutDialog.popup_centered()
Global.dialog_open(true) Global.dialog_open(true)