YACReader / yacreader

This repo contains the code of YACReader's desktop version.
https://www.yacreader.com
GNU General Public License v3.0
919 stars 94 forks source link

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

Open hackgins opened 11 months ago

hackgins commented 11 months ago

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: