From 5ce4930df7d682663a3dd86e5e0c4df58550619d Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Tue, 26 Mar 2024 22:30:53 +0100 Subject: [PATCH 1/3] Update board wiki URL --- src/js/tabs/firmware_flasher.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/js/tabs/firmware_flasher.js b/src/js/tabs/firmware_flasher.js index 7628a245f1..7d21fd5f88 100644 --- a/src/js/tabs/firmware_flasher.js +++ b/src/js/tabs/firmware_flasher.js @@ -993,8 +993,8 @@ firmware_flasher.initialize = function (callback) { const targetSupportInfo = $('#targetSupportInfoUrl'); targetSupportInfo.on('click', function() { - let urlSupport = 'https://betaflight.com/docs/wiki/boards/missing'; // general board missing - const urlBoard = `https://betaflight.com/docs/wiki/boards/${self.selectedBoard}`; // board description + let urlSupport = 'https://betaflight.com/docs/wiki/boards/archive/Missing'; // general board missing + const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}`; // board description if (urlExists(urlBoard)) { urlSupport = urlBoard; } From c4f3bd7f3111bca47f813ded45ec82a29807c3c0 Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 27 Mar 2024 14:48:08 +0100 Subject: [PATCH 2/3] Update src/js/tabs/firmware_flasher.js --- src/js/tabs/firmware_flasher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/tabs/firmware_flasher.js b/src/js/tabs/firmware_flasher.js index 7d21fd5f88..9058310912 100644 --- a/src/js/tabs/firmware_flasher.js +++ b/src/js/tabs/firmware_flasher.js @@ -994,7 +994,7 @@ firmware_flasher.initialize = function (callback) { targetSupportInfo.on('click', function() { let urlSupport = 'https://betaflight.com/docs/wiki/boards/archive/Missing'; // general board missing - const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}`; // board description + const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}/${self.selectedBoard}`; // board description if (urlExists(urlBoard)) { urlSupport = urlBoard; } From f4bb2b548f8dbb189431ffe831bf6ff46ac214be Mon Sep 17 00:00:00 2001 From: Mark Haslinghuis Date: Wed, 27 Mar 2024 19:50:32 +0100 Subject: [PATCH 3/3] Update src/js/tabs/firmware_flasher.js --- src/js/tabs/firmware_flasher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/js/tabs/firmware_flasher.js b/src/js/tabs/firmware_flasher.js index 9058310912..7d21fd5f88 100644 --- a/src/js/tabs/firmware_flasher.js +++ b/src/js/tabs/firmware_flasher.js @@ -994,7 +994,7 @@ firmware_flasher.initialize = function (callback) { targetSupportInfo.on('click', function() { let urlSupport = 'https://betaflight.com/docs/wiki/boards/archive/Missing'; // general board missing - const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}/${self.selectedBoard}`; // board description + const urlBoard = `https://betaflight.com/docs/wiki/boards/current/${self.selectedBoard}`; // board description if (urlExists(urlBoard)) { urlSupport = urlBoard; }