fix: truncate chapter names that are too long#422
Merged
daveallie merged 2 commits intocrosspoint-reader:masterfrom Jan 19, 2026
Merged
fix: truncate chapter names that are too long#422daveallie merged 2 commits intocrosspoint-reader:masterfrom
daveallie merged 2 commits intocrosspoint-reader:masterfrom
Conversation
ec4deff to
1bddad8
Compare
jdk2pq
added a commit
to jdk2pq/crosspoint-reader
that referenced
this pull request
Jan 20, 2026
* origin: fix: truncate chapter names that are too long (crosspoint-reader#422) feat: dict based Hyphenation (crosspoint-reader#305) fix: render U+FFFD replacement character instead of ? (crosspoint-reader#366) fix: Invert colors on home screen cover overlay when recent book is selected (crosspoint-reader#390) Adds KOReader Sync support (crosspoint-reader#232) feat: Change keyboard "caps" to "shift" & Wrap Keyboard (crosspoint-reader#377) fix: XTC 1-bit thumb BMP polarity inversion (crosspoint-reader#373)
yingirene
pushed a commit
to yingirene/crosspoint-reader
that referenced
this pull request
Jan 25, 2026
## Summary * **What is the goal of this PR?** (e.g., Implements the new feature for file uploading.) - Implements a fix to truncate chapter names that exceeds display width * **What changes are included?** - Implements a fix to truncate chapter names that exceeds display width ## Additional Context * Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, specific areas to focus on). - Prior to the fix, if the book contains multiple chapters with names longer than the display width, there is a noticeable delay when scrolling through the list of chapters. Serial output of the issue: ``` [25673] [ACT] Entering activity: EpubReaderChapterSelection [25693] [GFX] !! Outside range (485, 65) -> (65, -6) [25693] [GFX] !! Outside range (486, 65) -> (65, -7) [25693] [GFX] !! Outside range (487, 65) -> (65, -8) [25693] [GFX] !! Outside range (488, 65) -> (65, -9) [25693] [GFX] !! Outside range (485, 66) -> (66, -6) [25693] [GFX] !! Outside range (486, 66) -> (66, -7) [25694] [GFX] !! Outside range (487, 66) -> (66, -8) [25694] [GFX] !! Outside range (484, 67) -> (67, -5) [25694] [GFX] !! Outside range (485, 67) -> (67, -6) [25694] [GFX] !! Outside range (486, 67) -> (67, -7) [25694] [GFX] !! Outside range (483, 68) -> (68, -4) [25694] [GFX] !! Outside range (484, 68) -> (68, -5) [25694] [GFX] !! Outside range (485, 68) -> (68, -6) ``` --- ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**NO**_ Co-authored-by: Dave Allie <[email protected]>
Unintendedsideeffects
pushed a commit
to Unintendedsideeffects/crosspoint-reader
that referenced
this pull request
Feb 17, 2026
## Summary * **What is the goal of this PR?** (e.g., Implements the new feature for file uploading.) - Implements a fix to truncate chapter names that exceeds display width * **What changes are included?** - Implements a fix to truncate chapter names that exceeds display width ## Additional Context * Add any other information that might be helpful for the reviewer (e.g., performance implications, potential risks, specific areas to focus on). - Prior to the fix, if the book contains multiple chapters with names longer than the display width, there is a noticeable delay when scrolling through the list of chapters. Serial output of the issue: ``` [25673] [ACT] Entering activity: EpubReaderChapterSelection [25693] [GFX] !! Outside range (485, 65) -> (65, -6) [25693] [GFX] !! Outside range (486, 65) -> (65, -7) [25693] [GFX] !! Outside range (487, 65) -> (65, -8) [25693] [GFX] !! Outside range (488, 65) -> (65, -9) [25693] [GFX] !! Outside range (485, 66) -> (66, -6) [25693] [GFX] !! Outside range (486, 66) -> (66, -7) [25694] [GFX] !! Outside range (487, 66) -> (66, -8) [25694] [GFX] !! Outside range (484, 67) -> (67, -5) [25694] [GFX] !! Outside range (485, 67) -> (67, -6) [25694] [GFX] !! Outside range (486, 67) -> (67, -7) [25694] [GFX] !! Outside range (483, 68) -> (68, -4) [25694] [GFX] !! Outside range (484, 68) -> (68, -5) [25694] [GFX] !! Outside range (485, 68) -> (68, -6) ``` --- ### AI Usage While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it helps set the right context for reviewers. Did you use AI tools to help write this code? _**NO**_ Co-authored-by: Dave Allie <[email protected]>
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
What is the goal of this PR? (e.g., Implements the new feature for file uploading.)
What changes are included?
Additional Context
specific areas to focus on).
Serial output of the issue:
AI Usage
While CrossPoint doesn't have restrictions on AI tools in contributing, please be transparent about their usage as it
helps set the right context for reviewers.
Did you use AI tools to help write this code? NO