Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions desktop/about.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -15,8 +15,8 @@ describe("version is single-sourced", () => {
expect(pkg.version).toBe(APP_VERSION);
});

test("app version is v1.10.1", () => {
expect(APP_VERSION).toBe("1.10.1");
test("app version is v1.10.2", () => {
expect(APP_VERSION).toBe("1.10.2");
});
});

Expand All @@ -25,7 +25,7 @@ describe("aboutHtml", () => {

test("shows the dynamic version with a v prefix", () => {
expect(html).toContain(`v${APP_VERSION}`);
expect(html).toContain("v1.10.1");
expect(html).toContain("v1.10.2");
});

test("carries the product + company identity", () => {
Expand Down
2 changes: 1 addition & 1 deletion desktop/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "lucidagentide-desktop",
"private": true,
"version": "1.10.1",
"version": "1.10.2",
"trustedDependencies": ["electron", "@resvg/resvg-js"],
"description": "Electron desktop shell for LucidAgentIDE + omp — gated agent chat + live security/memory dashboards.",
"homepage": "https://github.com/mlcyclops/lucidagentide",
Expand Down
11 changes: 10 additions & 1 deletion desktop/version.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,4 +120,13 @@
// (ADR-0162/0164), security review-ACKs + resumed-session history (ADR-0170/0171), a toolbox badge
// for failed tool calls (ADR-0163), the LUCID TUI theme + bare `lucid` (ADR-0160/0161), and the
// Plugin Marketplace popup (ADR-0158).
export const APP_VERSION = "1.10.1";
// v1.10.2 = the TRIVIA WIRE (P-TRIV.1-.3, ADR-0174/5/6): a role-aware word-game ticker in the status bar's
// idle gap - 100-question developer/security/manager banks + 50 executive, streak scoring, idle
// engagement, and the executive INTEL WIRE (curated defense/intel RSS, fetched first-party,
// scan-gated FAIL-CLOSED, host-only egress audit) interleaving live headlines between questions;
// status bar decluttered (model seg + gate-active pill removed, ticker text at chip white).
// Plus the SKILLS GOVERNANCE suite + compiled KNOWLEDGE BASE (P-SKILL.4/.5, P-SKILLREG.1/.2,
// P-KB.1/.2/.2b): the governed Skills directory + management menu, Skill Studio (draft skills
// from recent work, gated), the enterprise registry reader/publish seams (Ed25519 + scan-gate),
// and the compiled KB spine with graph migrations.
export const APP_VERSION = "1.10.2";