From 6235b59e378c4b5e66c4402f89914550efecfbfc Mon Sep 17 00:00:00 2001 From: RDW Date: Mon, 17 Feb 2025 13:14:25 +0100 Subject: [PATCH] UI: Link to release changelogs in the API docs --- src/components/API/API.jsx | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/src/components/API/API.jsx b/src/components/API/API.jsx index aab8cd95..85595fa3 100644 --- a/src/components/API/API.jsx +++ b/src/components/API/API.jsx @@ -16,9 +16,13 @@ class Function extends React.Component { if (!since) throw new Error(message); } + // All of this should later be automated. For now, bite the bullet and do it manually... + const releaseLink = `https://github.com/evo-lua/evo-runtime/releases/tag/${since}`; const sinceBlock = (since && ( <> - Available since: {since} + + Available since: {since} + )) || ( <>