Skip to main content

Changelog

Every improvement, automatically tracked from our commit history.

Subscribe via Atom feed
← Prev Page 6 of 266 Next →
March 1, 2026
patch Desktop Shell

Group Subsystems tab by category with section headers

Desktop 1.69.0 | dbfc0c24
Details

The flat list of ~30 subsystem rows was unmanageable and lacked visual

structure. Now grouped by category (Core, AI, Services, UI, Runtime,

Plugin) with each group showing a bold header, item count + active

summary, per-group column headers, and compact item rows.

  • New SubsystemGroupViewModel holds category name, summary, and items
  • RefreshSubsystemMetrics builds grouped collections instead of flat list
  • XAML uses nested ItemsControl: outer for groups, inner for items
  • Dropped the redundant Category column from each row (header shows it)
  • Tighter row padding (6,8) and smaller font sizes for compact layout
  • Inactive dots at 40% opacity for visual hierarchy
  • Bottom padding (24,24,24,80) already handles the lower bar overlap
patch Desktop ShellServices

Use explicit BridgeEnabled setting for IPC server guard

Desktop 1.69.0 | Services 1.68.6 | 7702f4d0
Details

The previous guard checked BridgeAuthToken, but that token gets

auto-generated by NativeMessagingRegistrar.EnsureAuthToken() whenever

the bridge binary exists on disk — which it always does in dev builds.

So the check was always true.

Added BridgeEnabled (bool, default false) to AppSettings. The IPC server

now only starts when ApiEnabled || BridgeEnabled. The native messaging

registrar accepts an enableBridge flag to flip the setting when the user

explicitly installs the browser extension.

patch Desktop Shell

Fix IPC server starting when bridge binary exists but extension not paired

Desktop 1.69.0 | 468e57be
Details

FindBridgePath() finds the privstack-bridge binary in the build output

directory even in dev builds where the browser extension isn't installed.

This caused the IPC server to always start.

Changed the guard: IPC server now starts only when ApiEnabled is true OR

BridgeAuthToken is non-empty (meaning the browser extension has actually

been paired). The bridge binary existence is still used for native

messaging host registration (writing manifests to browser directories),

which is harmless.

patch Desktop Shell

Only start IPC server when bridge binary exists or local API is enabled

Desktop 1.69.0 | 93425e28
Details

The IPC named-pipe server was starting unconditionally on every launch,

even when neither the browser extension bridge binary is installed nor

the local API is enabled. This wastes a background thread listening on

a pipe nobody will connect to.

Now guarded: IPC server only starts if FindBridgePath() finds the

privstack-bridge binary (meaning the web clipper extension is installed)

OR if appSettings.ApiEnabled is true (local dev API).

patch Desktop ShellServices

Sort Subsystems tab by category, skip Intent Engine when AI is off

Desktop 1.69.0 | Services 1.68.6 | 7814ec42
Details

Subsystem items now sorted by category (Core → AI → Services → UI →

Runtime → Plugin), then alphabetically within each group. Previously

items appeared in random insertion order.

Intent Engine's consumer task was starting unconditionally in the

constructor even when AI was disabled. The task sat forever on an empty

channel reader, showing a green "active" dot in the Subsystems tab

despite doing no work. Now only starts when AiEnabled && AiIntentEnabled.

IPC Server still shows active — that's correct, it always runs for

browser extension / CLI pipe connections.

← Prev Page 6 of 266 Next →

Get notified about new releases