From 7528556381e7f0e3b4ec87ca7fb78fe58fa1c1d4 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Thu, 14 Aug 2025 09:08:47 -0400 Subject: [PATCH 1/2] link to documentation --- src/App.jsx | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/App.jsx b/src/App.jsx index 60f6c8e..399b42d 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1124,6 +1124,9 @@ const DnDFlow = () => { `• PathSim: ${pathsimVersion}\n` + `• PathView: ${fcsVersion}\n\n`; + // Open the documentation URL in a new tab + window.open('https://festim-dev.github.io/PathView/usage.html', '_blank'); + alert(message); }} title="Get help, documentation, and version information" From b29cb8fc847a796ce042bb515a3fc9ab13f69545 Mon Sep 17 00:00:00 2001 From: RemDelaporteMathurin Date: Thu, 14 Aug 2025 09:09:12 -0400 Subject: [PATCH 2/2] removed WIP --- src/App.jsx | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 399b42d..1ae99ee 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1119,8 +1119,7 @@ const DnDFlow = () => { const pathsimVersion = versionInfo?.pathsim_version || 'Loading...'; const fcsVersion = versionInfo?.pathview_version || 'Loading...'; - const message = `Help documentation coming soon!\n\n` + - `Version Information:\n` + + const message = `Version Information:\n` + `• PathSim: ${pathsimVersion}\n` + `• PathView: ${fcsVersion}\n\n`;