You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
GPodder recently added a feature for simultaneous refresh of podcast feeds.
It would be quite nice to have a similar feature in tidings, but I have no idea about how to implement it (haven't done any QML / C++ development since my Symbian days).
The text was updated successfully, but these errors were encountered:
Ok, it looks like there is already primitive async setup in place with
BackgroundWorker.qml (used by NewsBlendModel.qml). It seems to be queuing url fetches with a slight (30ms) offset.
But there are simultaneous actions like removing read items, updating stats, AND adding ListItems that happen while loading. So it looks like it is happening in parallel but not efficiently. Looks like it needs rebuilding of the
NewsBlendModel to, possibly, defer some things.
But I'm not certain yet. I also need to add debug flags since the app is constantly spewing debug at the console.
GPodder recently added a feature for simultaneous refresh of podcast feeds.
It would be quite nice to have a similar feature in tidings, but I have no idea about how to implement it (haven't done any QML / C++ development since my Symbian days).
The text was updated successfully, but these errors were encountered: