Release v0.9.84 with GT analytics, Telegram translate, full telemetry, and saved dashboard layout.

Bump version across frontend, backend, and desktop shell; update changelog modal, release digests, and updater manifest filtering for the current version only.
This commit is contained in:
BigBodyCobain
2026-08-05 13:20:59 -06:00
parent f81cf88ecb
commit 8676a98945
16 changed files with 114 additions and 69 deletions
@@ -94,6 +94,11 @@ function writeUpdaterManifest(files) {
};
})
.filter(Boolean)
.filter((artifact) => {
const version = readReleaseVersion();
const versionToken = `_${version}_`;
return artifact.relativePath.includes(versionToken) || artifact.relativePath.includes(`_${version}.`);
})
.sort((a, b) => updaterArtifactPriority(a.relativePath) - updaterArtifactPriority(b.relativePath));
const platforms = {};