this post was submitted on 19 Jan 2025
5 points (100.0% liked)

Arctic

444 readers
1 users here now

Arctic is a Lemmy client for iOS built on pure Swift. It currently supports iOS 15+ and Lemmy v0.17+

Get the latest version on TestFlight, or check it out on the AppStore.

If you would like to support Arctic’s development, feel free to Buy Me A Coffee

founded 2 years ago
MODERATORS
 

Can someone verify: The Post Feed widget stopped working some weeks ago. It won‘t show subscribed posts. „All“ works, but not „subscribed“.

iPhone 12 18.2 iPad Air2 15.8.3

top 4 comments
sorted by: hot top controversial new old
[–] [email protected] 1 points 2 weeks ago (1 children)

Actually it won‘t work at all, as soon as I once chose my account.

[–] [email protected] 1 points 1 week ago

Unbelievable. Now it works again?! Week long outage. Widget erased and added multiple times. No effect. Todays uninstall of Arctic might have done the trick. BUT only after same background refreshes. 🥳 I should have posted earlier.

[–] CreatureSurvive 1 points 1 week ago (1 children)

I’m looking into this right now. As far as I can tell so far, the issue is not directly related to the feed settings. It appears to be crashing due to strict memory constraints (30mb) for widgets.

When the feed is loading, all images are resized to the size required for the widget style. However, resizing an image increases memory usage during the process. This seems to be the cause of the crash.

I’ve done a bit of refactoring, images are now cached to disk rather than memory, and I’m working on a more efficient way to resize images. In the past, I used Lemmy’s pictrs API to resize the image before downloading, but the resulting images are very low quality, and grainy when resizing via api.

[–] [email protected] 2 points 1 week ago

Thank you for your efforts!