[0.9.12] - 2023-03-25
- Add support for using imaginary to create the temporary files.
This add support for images heic, tiff, and many more. Issue #494,
#215 and #348 among many other reports. - Memory optimization in face clustering task. Part of issue #339
In my tests, it reduces between 33% and 39% of memory, and as an
additional improvement, there was also a reduction in time of around
19%. There are still several improvements to be made, but it is a
good step. - Modernizes the construction of the javascript code. Issue #613
- Fix Unhandled exception and Albums are not being created. Issue #634
Note:
About Imaginary, if it is installed correctly it works automatically, however you still have to select the types of files you want to read. So you must add this configuration in config/config.php
+ 'enabledFaceRecognitionMimetype' => array(
+ 0 => 'image/jpeg',
+ 1 => 'image/png',
+ 2 => 'image/heic',
+ 3 => 'image/tiff',
+ 4 => 'image/webp',
+ ),
Finally adds the --crawl-missing
option to face:background_job
that forces a search for the files to analyze the new allowed types. 😄