- Added native confirmation sheets in the Mac client.

Manual content actions now confirm clearly:
Draft shows “Draft Saved”
Publish shows “Published”
Update shows “Updated”
Delete first asks “Delete Post/Page?” and then shows “Deleted” after the 
API succeeds
Autosave stays quiet so it does not spam popups.
Updated:
[macclient/AppKitClient/main.m](/Users/tyemeclifford/Documents/GH/blog/macclient/AppKitClient/main.m)
[macclient/README.md](/Users/tyemeclifford/Documents/GH/blog/macclient/README.md)
[CHANGELOG.md](/Users/tyemeclifford/Documents/GH/blog/CHANGELOG.md)
This commit is contained in:
Ty Clifford
2026-07-05 21:22:17 -04:00
parent 3e7cea4491
commit df56bfd57c
8 changed files with 366 additions and 38 deletions
+4
View File
@@ -10,6 +10,9 @@ All notable changes to Ty Clifford's Content Management System are documented he
- Added a native AppKit macOS 12+ client under `macclient/` for editing posts/pages, uploading media, moderating comments, local autosave, and optional remote draft autosave.
- Added Mac client post/page list pagination with configurable per-page counts.
- Added Mac client media pagination plus native image preview and audio/video playback.
- Added Mac client editor-screen media upload with automatic Markdown/shortcode insertion.
- Added Mac client Media context-menu actions to copy a file URL or a ready-to-paste Markdown embed.
- Added Mac client confirmation sheets for saving drafts, publishing, updating, and deleting posts/pages.
- Added Mac client editor spell-check and auto-correct options.
- Added a Mac client Update action for saving existing posts/pages without changing their current draft/published status.
- Added a public post lightbox slideshow for images, native videos, video embeds, and direct media links within the same post.
@@ -19,6 +22,7 @@ All notable changes to Ty Clifford's Content Management System are documented he
### Changed
- Simplified API and Mac client authentication to `.env` username/password only, removing token-based auth.
- Rebranded the native Mac client bundle and menus to `TCMS`.
- Fixed Mac client resizing, maximized editor text reflow, startup layout refresh, guarded undo/redo behavior, keyboard focus traversal, and standard Command-key shortcuts including Settings and Update.
- Fixed Mac client Update so edited Markdown is read from the live text storage and stale save responses no longer overwrite the editor.
- Expanded the API content save endpoint to accept `markdown`, `content`, or `body` payload fields for editor content.