Tag Wildcards
You can now use wildcard patterns when including or excluding tags:
parent- Match exactly "parent"parent/*- Match direct children only (e.g., "parent/child", "parent/child2")parent/**- Match all descendants (e.g., "parent/child", "parent/child2", "parent/child/grandchild")
Example configuration:
tags:
- vacation
excluded_tags:
- vacation/2023/** # Exclude all 2023 vacation photosWhat's Changed
🚀 New Features
- feature/tag-patterns by @damongolding in #632
⚡ Fixes
- Fix/url builder queries by @damongolding in #634
Other changes
- 0.30.2 by @damongolding in #635
Full Changelog: v0.30.1...v0.30.2