Conversation
Batch 4 of the parity build-out (branch feature/parity-v2). Builds clean in Debug and Release. Feed / compose: - Scheduled posts — date/time picker in compose + a header toggle that shows your scheduled posts (GET /api/messages/scheduled; post with scheduledAt) - Video upload — attach from disk, pending chips, "Play video" link in cards Direct Messages: - Image attachments (upload + display in bubbles) - Trash / restore own messages - 5s live polling of the open thread (/updates, deduped by id) Lists: - "Shared with me" — lists others shared with you (GET /api/lists/watching), read-only row viewing (verified the bearer token can read a shared list's rows) Services: video/image DM upload (multipart), scheduled fetch, DM restore + thread-updates, videoUrls on PostMessageAsync, GetWatchingListsAsync + WatchedList model. Shapes verified live 2026-08-01. See the-gaps.md for remaining post-v1 items. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Batch 5 of the parity build-out (branch feature/parity-v3). Builds clean in
Debug and Release.
Sharing:
- Public share links for Lists and Documents — create / list / revoke / copy
the URL, gated to items you own. Shape verified live 2026-08-01
(POST -> {token,url,role,expiresAt}, GET -> {shareLinks}, DELETE by token).
Auth self-service (login window):
- Register (email / username / password / display name), then auto-login
- Forgot password (reset-request), with a login/register mode toggle
Services: RegisterAsync, ForgotPasswordAsync, list + document share-link
create/list/delete, ShareLink model. See the-gaps.md for remaining post-v1
items (watcher/collaborator member management needs a second test account +
undocumented request bodies).
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Batch 6 of the parity build-out (branch feature/parity-v4). Builds clean in
Debug and Release. Watcher/collaborator shapes verified live 2026-08-01
(POST {userId,role} -> 201, GET -> {...:[{id,userId,role,createdAt,user}]},
DELETE .../{userId}, /users?q= search).
Collaboration:
- List watchers — invite a user to a list you own via search, list, remove
- Document collaborators — same for documents
(both added as sibling sections to the share-link panels from batch 5)
Profile / account:
- Mutual connections on a profile (clickable chips that open that user)
- "Manage account on the web" handoff in Settings (billing is cookie-only
server-side, so hand off to the site like OAuth linking)
Services: list watcher + doc collaborator CRUD + user-search, Collaborator
model, GetMutualAsync surfaced. Materialize deferred (opaque {source} request).
See the-gaps.md.
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
Batch 7 (branch feature/parity-v5). Builds clean Debug + Release.
- Account deletion — a guarded "Danger zone" in Settings (type your exact
username to enable) -> POST /api/user/delete {username,email}, then clears the
token and returns the shell to the login screen via a new Navigator.OnLoggedOut
hook.
This closes the last non-blocked user feature. Remaining gaps are genuinely
blocked, not unbuilt: Materialize (opaque {source} request), per-list schema
DSL (not reverse-engineered), GitHub (account not linked + undocumented shapes),
DM inbox-folder (needs real DMs to learn shape), billing (cookie-only -> web
handoff). See the-gaps.md "Effective feature parity reached".
Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
release.yml fires on a pushed v* tag: runs the same publish -> WiX MSI build as CI, then creates a GitHub Release for the tag with InterlinedList-Setup.msi attached (auto-generated notes). Documented in CLAUDE.md. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Brings main up to the feature-complete, CI-green state on
devfor the v1.0.0 release.Includes the full API parity build-out (PRs #1, #3, #4, #5, #6) plus the tag-triggered release workflow. Every core user-facing surface of interlinedlist.com is implemented; remaining gaps are API-/verification-blocked (see
the-gaps.md).dev(build-app + build-msi + build-msix all pass).v1.0.0tag has been pushed and buildsInterlinedList-Setup.msiinto a GitHub Release via.github/workflows/release.yml.Merging this fast-forwards
mainto the released commit.🤖 Generated with Claude Code