Codex/misc fixes#116
Merged
Merged
Conversation
Analyzes the current API sync pipeline and proposes targeted fixes for two issues: the ~10s blocking sync spinner on app open, and the N+1 database insert pattern in BookmarkDao. Preserves the existing deferred content load model. Includes phased implementation plan. https://claude.ai/code/session_01WsQFgiU2b4TMFxayW6Q2s7 Co-authored-by: Claude <noreply@anthropic.com>
Address implementation gaps identified during feasibility review: - Fix subsection heading levels for proper markdown hierarchy - Specify suspend fun (not Flow) for DAO duplicate lookup - Add ShareActivity architectural approach (local compose state) - Place duplicate fields on CreateBookmarkUiState.Open for in-app path - Expand title match semantics table for blank existing titles - Add navigate-away UX guidance (explicit Open button per row) - Clarify duplicate Open vs View save action relationship - Move url index from optional to required for V2 - Resolve date format: relative within 7 days, absolute after - Remove resolved items from open decisions list https://claude.ai/code/session_01PcGXsUwaCgAm4VvSTavsaC Co-authored-by: Claude <noreply@anthropic.com>
* Add mini spec for reader & delete bugfixes (v0.11.1) Covers six items from user feedback: rapid successive delete race condition, text-size shift when margins change, reproducible layout glitch, video fullscreen for article embeds, narrower minimum margin, and theme-switch reflow elimination via CSS custom properties. https://claude.ai/code/session_015xCk9LrWSrxxmCEWudcMkm * Correct spec item #4: embedded videos are stripped server-side The issue is not about fullscreen callbacks for article types — Readeck's extraction pipeline strips iframe/embed tags from article HTML entirely. The video content never reaches the app. Updated to document as a server-side limitation with options for future consideration. https://claude.ai/code/session_015xCk9LrWSrxxmCEWudcMkm * Update spec item #4: video fullscreen UX polish Fullscreen works correctly for all providers. Revised to focus on the actual UX issues: discoverability (non-obvious path to fullscreen) and auto-rotation (sensor-based rotation instead of manual rotate button). Dropped server-side extraction limitation note as out of scope. https://claude.ai/code/session_015xCk9LrWSrxxmCEWudcMkm * Expand spec item #4 with video fullscreen improvements Added four sub-items: app-controlled fullscreen entry for discoverability, enabling "open in service" links by relaxing iframe sandbox, auto-rotation via Activity orientation, and repositioned pill-shaped overlay controls to avoid provider control overlap. https://claude.ai/code/session_015xCk9LrWSrxxmCEWudcMkm --------- Co-authored-by: Claude <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.
Summary
This PR follows up on the
v0.11.0reader/background-theme work with a set of user-facing fixes and refinements. It addresses a release-only navigation regression, improves the labels multi-select flow, redesigns and expands the reader typography sheet, restores dynamic accent behavior for non-Sepia reader themes, and fixes reader search navigation so matches reliably scroll into view. Also recovered a lost design spec.What This Fixes
Navigation drawer
Labels multi-select sheet
Reader typography sheet
Text,Layout, andThemetabs.Text: font, font size, line spacingLayout: width, justification, hyphenationTheme: Paper, Sepia, Dark, BlackReset textReset layoutReset themeN / M / W=75% / 85% / 95%.Reader theming and accents
Paper,Dark, andBlackon supported Android versions.v0.11.0rather than reverting to fully dynamic themes.Sepiafully curated.Reader search navigation
Duplicate URL Detection spec
Additional reader and delete fixes
Widetext width preset from95%to98%.Documentation and polish