https://github.com/ploi-deploy/roadmap
Kanban-style roadmapping software is maintained by Ploi with a focuses on community feedback.
https://github.com/ploi-deploy/roadmap
Kanban-style roadmapping software is maintained by Ploi with a focuses on community feedback.
It does look nice.
Flarum is live with a stable release as of May 27
Looks nice!
When generation previews of larger images, Imagemagick can run into an error: convert-im6.q16: memory allocation failed
Expanding the allowed memory in the policy file would allow larger image files to have previews generated:
/etc/ImageMagick-6/policy.xml
<policy domain="resource" name="area" value="256MB"/>
<policy domain="resource" name="memory" value=“1GiB"/>
<policy domain="resource" name="map" value=“2GiB"/>
<policy domain="resource" name="disk" value=“4GiB"/>
It may be appropriate for the IM policy to be customized based on the system it runs on, since some servers may be resource limited.
@girish
I should mention that on certain systems, Nextcloud's preview generation can push ImageMagick to consume all the cpu resources, freezing the frontend.
To ensure that ImageMagick never hinders Nextcloud, I would recommend these policy changes:
<policy domain="resource" name="thread" value="1"/>
<policy domain="resource" name="throttle" value="100"/>
The first line limits IM to use only one CPU thread. The second line has IM give at least 100ms to other CPU tasks so it's never taking 100% of the CPU.