Target assets by tag with CSS
You can now style images based on their tags using CSS attribute selectors.
/* Target images tagged with "kiosk-contain" */
img[data-tags~="kiosk-contain"] {
object-fit: contain;
}Maximum video length
Exclude videos longer than a specified duration using the exclude_videos_over setting (in seconds).
exclude_videos_over: 120 # Exclude videos longer than 2 minutesRemove camera make/model duplicates
Clean up camera metadata by removing duplicated make/model values when using show_image_camera.
E.g. Canon Canon EOS 5D Mark IV -> Canon EOS 5D Mark IV
Added nix flake
Added a Nix flake to enable nix develop, making it easier to set up a development environment and start contributing.
What's Changed
🚀 New Features
- Feature/max-video-length by @damongolding in #639
- Feature/img tag data by @damongolding in #641
⚡ Fixes
- Fix/camera make duplicate by @damongolding in #638
🔨 Maintenance
- add nix develop support by @damongolding in #642
Full Changelog: v0.30.2...v0.31.0