From df01f440a9a9d305cb1774b089b43c62f229b1f0 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 30 May 2026 07:41:21 +0000 Subject: [PATCH 1/2] Initial plan From 9d52f8fa446c9196ba6fc4e71577a4b869efea4e Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Sat, 30 May 2026 07:42:34 +0000 Subject: [PATCH 2/2] fix: update deprecated API example and pinned release link - Replace removed system/version guest API with currency/get_pairs - Fix changelog release link to point to tag/0.8.0 instead of latest --- src/content/docs/extensions-and-development/javascript.mdoc | 6 +++--- src/content/docs/maintenance/changelog.mdoc | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/content/docs/extensions-and-development/javascript.mdoc b/src/content/docs/extensions-and-development/javascript.mdoc index 3bda7a8..6cdb813 100644 --- a/src/content/docs/extensions-and-development/javascript.mdoc +++ b/src/content/docs/extensions-and-development/javascript.mdoc @@ -67,14 +67,14 @@ API.{role}.{method}(endpoint, params, onSuccess, onError, showSpinner) ## Examples -### Get System Version (Guest) +### Get Currency Pairs (Guest) ```javascript API.guest.get( - "system/version", + "currency/get_pairs", {}, function(response) { - console.log("Version:", response); + console.log("Currency pairs:", response); }, function(error) { console.error("Error:", error); diff --git a/src/content/docs/maintenance/changelog.mdoc b/src/content/docs/maintenance/changelog.mdoc index 6bbcbfc..ae99013 100644 --- a/src/content/docs/maintenance/changelog.mdoc +++ b/src/content/docs/maintenance/changelog.mdoc @@ -35,7 +35,7 @@ For the latest changes, start with the [most recent release](https://github.com/ | **Patcher** | Extended through patch 64 (was 43) | | **Uploads & Public Assets** | Uploads moved from `/uploads` to `/data/uploads`; gateway and default branding assets moved to `/public` | -[View the full 0.8.0 release notes](https://github.com/FOSSBilling/FOSSBilling/releases/latest) for the complete list of changes. +[View the full 0.8.0 release notes](https://github.com/FOSSBilling/FOSSBilling/releases/tag/0.8.0) for the complete list of changes. ## Breaking Changes