Skip to main content

Changelog

Every improvement, automatically tracked from our commit history.

Subscribe via Atom feed
← Prev Page 60 of 212 Next →
February 25, 2026
patch NotesTasks

Add tests for TaskToNoteService.BuildBlocksFromMarkdown and DocxExportService image helpers

Details

Extract pure logic from infrastructure classes for testing:

  • TaskToNoteService.BuildBlocksFromMarkdown: changed from private to internal static,

added InternalsVisibleTo for Tasks.Tests. 9 tests covering headings (all 3 levels),

paragraphs, multi-line joining, blank line separation, bullet lines as paragraph text,

empty input fallback, mixed content sequencing, and unique block IDs.

  • DocxExportService.GetImageDimensions and ParseJpegDimensions: changed from private to

internal static. 4 tests covering valid PNG dimension parsing, valid JPEG SOF0 parsing,

unrecognized format defaults, and direct ParseJpegDimensions extraction.

patch Email

Extract testable pure logic from ImapSyncService, add tests

Details

Refactor ImapSyncService to expose pure static methods for testing:

  • Extract ClassifyFolder(FolderAttributes, string) as internal static

overload; the private IMailFolder overload delegates to it

  • Change MapSecurity from private to internal static
  • MapProviderToConnectionId was already internal static

Add 22 tests in ImapSyncServiceTests covering:

  • ClassifyFolder: attribute-based and name-based classification for all

folder types (Inbox, Sent, Drafts, Trash, Junk, Archive, Starred,

All, Category, Other)

  • MapProviderToConnectionId: Gmail->google, Outlook->microsoft, and

throws for unsupported providers

  • MapSecurity: all three EmailSecurityMode variants

MapToEmailMessage skipped — requires constructing MailKit's

IMessageSummary with internal/sealed Envelope types, not worth the

fragility for a straightforward field-mapping method.

patch Notes

Replace list item reorder buttons with drag-to-reorder and right-click delete

Details

Replace hover-visible up/down/remove buttons in BulletListEditor,

NumberedListEditor, and TaskListEditor with:

  • Drag-to-reorder: hold and drag the list marker (bullet, number, or

checkbox) to reorder items within the same parent list. Uses Avalonia

DragDrop with 5px threshold, drop-above/drop-below indicators, and

same-parent validation to prevent cross-list moves.

  • Right-click context menu: "Delete List Item" on each row, reusing

existing RemoveItem logic.

Also fixes FocusItemAtFlatIndex to handle both Grid and StackPanel

children of rowBorder (the StackPanel case occurs when ChildBlocks

are present).

Removed: CreateReorderButton, MoveItemUp, MoveItemDown methods and

all reorder-controls/reorder-btn AXAML styles.

patch Notes

Fix list items indented too far from left edge

Details

Remove root-level left margin from BulletListEditor (20px),

NumberedListEditor (16px), and TaskListEditor (24px) ItemsPanel

containers. Top-level list items should align with other block content

(headings, paragraphs) — the BlockWrapper handle gutter already

provides the left offset. Nesting still works via depth * 24 on each

item row.

patch Notes

Compact BlockWrapper: smaller drag handle, remove up/down, relocate delete

Details
  • Drag handle: 28px → 20px width, 4-dot grip (was 6-dot), smaller padding
  • Insert handle: 24px → 20px
  • Removed MoveUp/MoveDown buttons entirely (drag reorder + context menu suffice)
  • Removed the action buttons column (Grid column 4)
  • Relocated RemoveButton under the drag handle in the handle column (20x20,

hidden by default, fades in on hover like the drag handle)

  • Handle column margin: 6px → 4px gap to content

Net effect: the handle gutter is ~10px narrower, block content gets more space,

and the UI is less cluttered — only insert, drag, and delete in a compact stack.

← Prev Page 60 of 212 Next →

Get notified about new releases