feat: remove the unwatched orange dot and show watched#485
Merged
PartyDonut merged 2 commits intoDonutWare:developfrom Sep 13, 2025
Merged
feat: remove the unwatched orange dot and show watched#485PartyDonut merged 2 commits intoDonutWare:developfrom
PartyDonut merged 2 commits intoDonutWare:developfrom
Conversation
Contributor
Reviewer's guide (collapsed on small PRs)Reviewer's GuideThis PR removes the ambiguous amber “unwatched” dot overlay and replaces it with a clear watched marker for movies, while preserving series behavior by only hiding the dot for isolated unwatched episodes. The changes import the MovieModel, delete the old status blob, and update the overlay logic. Class diagram for updated poster overlay logicclassDiagram
class PosterImage {
+poster
+inlineTitle
}
class SeriesModel {
+unPlayedItemCount
}
class MovieModel {
+unWatched
}
PosterImage --> SeriesModel : uses
PosterImage --> MovieModel : uses
Flow diagram for poster overlay decision logic after PRflowchart TD
A["Is poster a SeriesModel?"] -->|Yes| B["unPlayedItemCount != null"]
B -->|Yes| D["Show top-right count overlay"]
A -->|No| C["Is poster a MovieModel?"]
C -->|Yes| E["Is movie watched?"]
E -->|Yes| F["Show watched mark overlay"]
E -->|No| G["No overlay shown"]
B -->|No| G
C -->|No| G
File-Level Changes
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
PartyDonut
approved these changes
Sep 13, 2025
Collaborator
PartyDonut
left a comment
There was a problem hiding this comment.
Looks good to me. Also makes more sense given that recently added movies only shows unWatched movies.
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.
I propose removing the orange dot that shows the unwatched status on the poster. Actually, before looking at the code, I wasn’t sure what this dot meant, and in my opinion, it’s much clearer this way.
So I propose showing the watched status consistently instead of this dot (as it’s done in the official client).
For shows, I only remove the dot for isolated unwatched episodes.
For movies, I remove the dot and add the mark icon for watched movies.
see pictures bellow.
Screenshots / Recordings
Home view
before

after

Films view
before

after

Checklist