From c5cc3597b94c19bbc08bbccd2155debc821fb0c3 Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 6 Jul 2026 21:45:33 +0000 Subject: [PATCH 1/2] chore: switch to new SierraSoftworks analytics tracking script Replaces the website-id based tracker registration with the new data-api based script, enabling automatic exception capture. Co-Authored-By: Claude Fable 5 --- docs/.vuepress/config.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 8dca884..0f31f99 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -23,9 +23,10 @@ export default defineUserConfig({ ['meta', { name: "description", content: "Automatically backup your GitHub repositories and releases, just in case." }], ['link', { rel: 'icon', href: '/favicon.ico' }], ["script", { - defer: "", + async: "", src: "https://analytics.sierrasoftworks.com/script.js", - "data-website-id": "0b7b161d-5120-44da-930c-bac4999e2fca" + "data-api": "https://analytics.sierrasoftworks.com", + "data-auto-capture-exceptions": "true" }], ], From 50371e027e304cc94e5e0ffa91eba7e1189d487e Mon Sep 17 00:00:00 2001 From: Claude Date: Mon, 6 Jul 2026 21:53:20 +0000 Subject: [PATCH 2/2] fix: point analytics script at tracker.js endpoint Co-Authored-By: Claude Fable 5 --- docs/.vuepress/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/.vuepress/config.ts b/docs/.vuepress/config.ts index 0f31f99..f614b2f 100644 --- a/docs/.vuepress/config.ts +++ b/docs/.vuepress/config.ts @@ -24,7 +24,7 @@ export default defineUserConfig({ ['link', { rel: 'icon', href: '/favicon.ico' }], ["script", { async: "", - src: "https://analytics.sierrasoftworks.com/script.js", + src: "https://analytics.sierrasoftworks.com/tracker.js", "data-api": "https://analytics.sierrasoftworks.com", "data-auto-capture-exceptions": "true" }],