Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Feature request] See reading progress on Folder Level for YACLibraryServer webinterface/IOS app and YacReader Library #391

Open
hackgins opened this issue Jul 19, 2023 · 0 comments

Comments

@hackgins
Copy link

I'm using YACLibraryServer and IOS YacReader, I read lots of series that are currently in progress (webcomics for example) and I would like to be able to see the read status on the folder level if all issues in the directory are all read, in progress or not started.

in the foldercontroller.cpp, there is this logic per comic
if (comic->info.read)
show red mark
else if (comic->info.hasBeenOpened)
show yellow mark
else
show nothing

I though, the same logic for directory could improve an already nice user experience.
the logic could be like this below.
if (folder->children.read == folder->children.count)
show red mark
else if (folder->children.read > 0)
show yellow mark
else
show nothing

On the technical solution, I thought about either:

  • using the "finished" parameter (but it would require to automatically update it when the user has read all the content in this folder)
  • getting the information of all folder children to check their "read" value
@hackgins hackgins changed the title [Feature request] See reading progress on YACLibraryServer webinterface/IOS app and YacReader Library [Feature request] See reading progress on Folder Level for YACLibraryServer webinterface/IOS app and YacReader Library Jul 20, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant