Download online resources thumbnails in parallel
- previously thumbs have been loaded sequentially which wasn't the best experience. This change speeds it up by running these requests in parallel
- according to docs QNetworkAccessManager executes up to 6 requests in parallel which fits this purpose and shouldn't overload these APIs. Added rate limit handling in case User goes wild
- don't use temporary files to download the thumbnails before converting to pixmaps. Just do it in memory
Before:
online_resources_thumbnails_sequential
After: