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
+2 -2
View File
@@ -1,12 +1,12 @@
{
"name": "@shadowbroker/desktop-shell",
"version": "0.9.83",
"version": "0.9.84",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "@shadowbroker/desktop-shell",
"version": "0.9.83",
"version": "0.9.84",
"devDependencies": {
"typescript": "^5.6.0"
}
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "@shadowbroker/desktop-shell",
"version": "0.9.83",
"version": "0.9.84",
"private": true,
"description": "ShadowBroker desktop shell packaging, runtime bridge, and release tooling",
"scripts": {
@@ -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 = {};
+1 -1
View File
@@ -4201,7 +4201,7 @@ dependencies = [
[[package]]
name = "shadowbroker-tauri-shell"
version = "0.9.83"
version = "0.9.84"
dependencies = [
"axum",
"base64 0.22.1",
@@ -1,6 +1,6 @@
[package]
name = "shadowbroker-tauri-shell"
version = "0.9.83"
version = "0.9.84"
edition = "2021"
[build-dependencies]
@@ -1,7 +1,7 @@
{
"$schema": "https://schema.tauri.app/config/2",
"productName": "ShadowBroker",
"version": "0.9.83",
"version": "0.9.84",
"identifier": "com.shadowbroker.desktop",
"build": {
"frontendDist": "../../../frontend/out",