-
Wondering about the
Is this because the same pic is on both albums and, once the pic is selected it is exported on all albums it belongs whether or not they are part of the specified |
Beta Was this translation helpful? Give feedback.
Replies: 3 comments
-
Yes
Yes, that's how it currently works. I realize that's somewhat counterintuitive but that is currently how all the query options work with the template options. The query options (in this case Changing this behavior would require making the template system aware of every query option and substantially complicate the code. If this doesn't meet your use case, one option would be to create your own template plugin with the |
Beta Was this translation helpful? Give feedback.
-
Hi there! Given the new filter functionality from #759 which is now available on v0.51.2 I'm recovering this thread as I believe it would address this topic.
# My albums always start with the YYYY format. So 2 means the millennium
directory = "{album|filter(startswith 2)}"
directory = "{album|filter(startswith 2)[/,.|:,.]}" I will now test it out with the the full Library! |
Beta Was this translation helpful? Give feedback.
-
Just a further update in case you want to use directory = "{album|filter(startswith 1|2)[/,.|:,.]}" |
Beta Was this translation helpful? Give feedback.
Yes
Yes, that's how it currently works. I realize that's somewhat counterintuitive but that is currently how all the query options work with the template options. The query options (in this case
--folder
) select which photos to actually export and the templates (like--directory "{album[/,.|:,.]}"
) are applied to each of the selected photos on export.Changing this behavior would require making the template …