You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Decode all paragraph + inline attribute_run fields (corrects README's
earlier mapping: 0=Title not Body, 103=Checkbox not 101). Adds
DASHED_LIST style, font_weight/underline/strike/link/attachment fields.
- MergeableDataDecoder for table CKAttachments — walks the CRDT graph
(KeyItems, TypeItems, GraphObjects: List/Dict/String/CustomMap/
OrderedSet) and extracts a real 2D grid via cellColumns iteration.
- Image attachments fetched via Media CKReference → Asset downloadURL.
- FormattedNoteBody renders styled paragraphs + AnnotatedString inline,
table grids, inline images, attachment placeholder cards, clickable
links via LinkAnnotation, and tap-to-toggle checkboxes (auto-saves).
- Edit mode is WYSIWYG via VisualTransformation: heading sizes, inline
bold/italic/underline/strike/link styling, list markers (• – 1. ☐ ☑)
visible while editing, with OffsetMapping keeping cursor/selection
aligned to the underlying chars.
- Formatting toolbar (Material 3, animated) with paragraph style picker,
list style toggles, B/I/U/S, and link dialog. Save path threads new
AttrSpan list through NoteAppender; format-only changes use a
rewriteAttributeRunsOnly fast path that preserves the substring tree.
- 7 JVM unit tests round-trip a real iCloud-pulled fmt-baseline-1.proto
through encoder/decoder, asserting bold/heading/checkbox edits survive.
- GitHub Action builds debug APK on push/PR/dispatch and uploads it.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: README.md
+66-12Lines changed: 66 additions & 12 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,12 @@ report for the next person (or agent) who picks it up.
21
21
| Auto-save on lifecycle pause | Works (lifecycle `ON_PAUSE` only — see [AppleNotesApp.kt:1052](app/src/main/java/com/example/applenotes/ui/AppleNotesApp.kt)) |
22
22
| Share OUT (Android intent chooser) | Works (plaintext only) |
23
23
| Delete | Uses CloudKit `forceDelete`; Mac surfaces as "Recently Deleted" (server-managed, not a hard wipe) |
24
-
| Format display (headings, lists, checkboxes) | Decoded but not rendered yet (Phase D1 done; D2 pending) |
0 commit comments