Replies: 1 comment 3 replies
-
|
Hello! I totally missed that one, sorry It's a good feature, I will take a look |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Right now I do not use any
PARENT_*_PROMOTEvariable.My stacks are sorted like
IMG_1234_edited.jpg,IMG_1234.jpg,IMG_1234.cr3(raw).The problem is that the
_editedjpgs don't have EXIF data, so the file creation date is used as the time.Thus, the stacks with edited images are not among other pictures in the timeline but further into the future when I edited them, not when I took them. This I do not want.
But using
PARENT_FILENAME_PROMOTE, I can only promote a substring but no the absence of a substring.It would be great to be able to promote images based on regex capture groups, like:
[ { "key": "originalFileName", "regex": { "key": "(.*?)([\\._\\-](crop|cropped|edit|edited).*)?\\.([^\\.]*)", "index": 1, "promote_index": 3, // capture group of '(crop|cropped|edit|edited)' "promote_keys": ["", "edited", "edit", "cropped", "crop"], // unedited files first } } ]This whole custom criteria thing can get arbitrarily complex, but I think this is still a rather simple addition.
Beta Was this translation helpful? Give feedback.
All reactions