From 9abd328cb87edc0affea992ccbc78d4ead1ad830 Mon Sep 17 00:00:00 2001 From: Serhii Snitsaruk Date: Sun, 29 Dec 2024 23:49:52 +0100 Subject: [PATCH] Fix documentation links in the editor --- limboai_version.py | 2 +- util/limbo_utility.cpp | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/limboai_version.py b/limboai_version.py index 92678074..a76fd631 100644 --- a/limboai_version.py +++ b/limboai_version.py @@ -4,7 +4,7 @@ minor = 3 patch = 0 status = "dev" -doc_branch = "master" +doc_branch = "latest" godot_cpp_ref = "godot-4.3-stable" # Code that generates version header diff --git a/util/limbo_utility.cpp b/util/limbo_utility.cpp index e5f16f61..d5ec4a1b 100644 --- a/util/limbo_utility.cpp +++ b/util/limbo_utility.cpp @@ -575,7 +575,7 @@ inline void _open_online_doc_page(const String &p_page) { } void LimboUtility::open_doc_introduction() { - _open_online_doc_page("getting-started/introduction.html"); + _open_online_doc_page("behavior-trees/introduction.html"); } void LimboUtility::open_doc_online() { @@ -583,11 +583,11 @@ void LimboUtility::open_doc_online() { } void LimboUtility::open_doc_gdextension_limitations() { - _open_online_doc_page("getting-started/gdextension.html#limitations-of-the-gdextension-version"); + _open_online_doc_page("getting-started/getting-limboai.html#get-gdextension-version"); } void LimboUtility::open_doc_custom_tasks() { - _open_online_doc_page("getting-started/custom-tasks.html"); + _open_online_doc_page("behavior-trees/custom-tasks.html"); } void LimboUtility::open_doc_class(const String &p_class_name) {