Skip to main content

Changelog

Every improvement, automatically tracked from our commit history.

Subscribe via Atom feed
← Prev Page 45 of 117 Next →
February 22, 2026
patch Desktop Shell

Restructure main layout to use DockPanel for reliable status bar sizing

Desktop 1.60.6 → 1.60.7 | 619eb542
Details

Replace the outer Grid (RowDefinitions) with a DockPanel to ensure

the status bar is docked to the bottom BEFORE the remaining space is

allocated to the sidebar+content area. This guarantees the content

area height is calculated as: window height minus title bar minus

status bar, with no possibility of the content area extending behind

the status bar.

Previous Grid-based layouts (both nested and outer) resulted in the

ScrollViewer viewport being larger than the actual visible area,

causing the last items in scrollable plugin views to be permanently

clipped. DockPanel's explicit dock-then-fill behavior should resolve

this measurement discrepancy.

patch Desktop Shell

Move status bar to outer grid to fix content overlap

Desktop 1.60.5 → 1.60.6 | 40b5aa48
Details

The status bar was nested inside the content column grid alongside

plugin views. Despite using RowDefinitions="*,Auto", the plugin

content was not being properly constrained above the status bar,

causing the bottom of scrollable plugin views (Finance reports, budget,

etc.) to be clipped behind the status bar.

Restructured the layout so the status bar is in Row 3 of the outer

window grid (RowDefinitions="Auto,Auto,*,Auto"), completely outside

the sidebar+content area. The content column is now a simple Panel

with ClipToBounds, and the status bar spans the full window width

below both the sidebar and content area. This guarantees the content

area is always constrained above the status bar.

patch Desktop Shell

Add bottom margin to plugin content area to prevent status bar overlap

Desktop 1.60.4 → 1.60.5 | 510faa4a
Details

Plugin views were rendering flush against the bottom status bar with no

spacing, causing the last items in scrollable content to appear clipped

or overlapped by the status bar. Added a 4px bottom margin to the

ContentControl that hosts plugin views in MainWindow.axaml, so all

plugins automatically get breathing room above the status bar.

patch Desktop Shell

Add bottom padding to Dashboard Overview ScrollViewer

Desktop 1.60.3 → 1.60.4 | 0122190d
Details

The Overview tab's ScrollViewer had insufficient bottom padding (24px),

causing the last plugin card row to be clipped behind the status bar.

Increased to 32px to match the spacing used elsewhere. The Data tab

already had adequate padding (80px).

patch Desktop Shell

Increase local model token and sentence limits

Desktop 1.60.2 → 1.60.3 | 2113553a
Details

Medium tier responses were getting cut off mid-sentence (e.g.

actionable budget advice truncated at item 3). The system prompt

already instructs the model to be concise, so the hard limits

were redundant safety nets causing premature truncation.

Bumped local model limits:

  • Short: 60→80 tokens, 2→3 sentences
  • Medium: 250→400 tokens, 5→8 sentences
  • Default: 150→200 tokens, 3→4 sentences

Mistral 7B has sufficient context window for these increases.

Bumped desktop to 1.60.3.

← Prev Page 45 of 117 Next →

Get notified about new releases