From de7eb5260de2cdf6850c05b826197914169667e1 Mon Sep 17 00:00:00 2001 From: Abdullah <89297042+AzazelSensei@users.noreply.github.com> Date: Tue, 8 Sep 2026 20:43:34 +0000 Subject: [PATCH] Point Administrator Help and homepage links at the docs site Help currently opens GitHub Discussions and Visit homepage opens the engine repo. Both now go to https://docs.openintegrationengine.org/engine/ so the Administrator lands on documentation first. Fixes #181 Signed-off-by: Abdullah <89297042+AzazelSensei@users.noreply.github.com> --- .../com/mirth/connect/client/ui/BrandingConstants.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/client/src/main/java/com/mirth/connect/client/ui/BrandingConstants.java b/client/src/main/java/com/mirth/connect/client/ui/BrandingConstants.java index 6e3f81c7ca..21d4aa95b8 100644 --- a/client/src/main/java/com/mirth/connect/client/ui/BrandingConstants.java +++ b/client/src/main/java/com/mirth/connect/client/ui/BrandingConstants.java @@ -22,13 +22,13 @@ public class BrandingConstants { // The URL that is opened when clicking the image in the Top right corner of the main administrator window - // The URL that is opened when clicking "Visit + PRODUCT_NAME" button in Administrator - public static final String PRODUCT_URL = "https://github.com/openintegrationengine/engine"; + // The URL that is opened when clicking "Visit homepage" in Administrator + public static final String PRODUCT_URL = "https://docs.openintegrationengine.org/engine/"; public static final String PRODUCT_TOOLTIP = "Open Integration Engine"; - // The URL that is opened when clicking "Help" button in Administrator - public static String HELP_URL_LOCATION = "https://github.com/OpenIntegrationEngine/engine/discussions"; + // The URL that is opened when clicking "Help" in Administrator + public static String HELP_URL_LOCATION = "https://docs.openintegrationengine.org/engine/"; // The URL that is opened when clicking "System Requirements" button in the error dialog when an unsupported Java version is detected public static final String SYSTEM_REQUIREMENTS_URL = "https://docs.openintegrationengine.org/engine/getting_started.html#system-requirements";