diff options
| author | Paul Buetow <paul@buetow.org> | 2026-07-18 16:50:03 +0300 |
|---|---|---|
| committer | Paul Buetow <paul@buetow.org> | 2026-07-18 16:50:03 +0300 |
| commit | eba54dbce3e8410bc2e9da69e7e4a26251573f87 (patch) | |
| tree | 3db38ffba253afe2311356d2e17aabb4dcbf29a7 /README.md | |
| parent | 3a3ae4a4424136ad4a5be636c06fe036711558a2 (diff) | |
Fix CHRONOLOGICAL_ORDER to reject camera clock-reset EXIF dates
A real album (irregular.ninja/so.war.das) surfaced the bug: a Fujifilm
X100V whose battery died reset its clock to 2000-01-01, and every EXIF
timestamp on that roll was stamped with the bogus date instead of being
omitted. Trusting it at face value sorted that whole roll to the front
of the album, ahead of hundreds of correctly-dated 2020s photos.
EXIF years before 2001 are now treated the same as a missing date tag.
The no-date fallback also switches from source mtime to filename order,
since mtime is not reliable either -- bulk-copying/rsyncing an incoming
directory commonly rewrites every file's mtime to the transfer time,
unrelated to capture order -- while sequential camera filenames track
real shooting order even across a clock reset.
Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
Diffstat (limited to 'README.md')
| -rw-r--r-- | README.md | 7 |
1 files changed, 4 insertions, 3 deletions
@@ -123,9 +123,10 @@ Feature toggles at a glance: repeatable. * **Chronological order** (`CHRONOLOGICAL_ORDER=no`, the default): set to `yes` (or pass `--chronological`) to order the main album's photos by EXIF - date taken instead of filename/shuffle order, falling back to source mtime - for photos with no usable EXIF date. Takes precedence over `SHUFFLE` when - both are enabled. + date taken instead of filename/shuffle order (years before 2001 are + treated as an implausible camera clock-reset default, not a real date), + falling back to filename order for photos with no usable EXIF date. Takes + precedence over `SHUFFLE` when both are enabled. ## Documentation |
