Releases: damongolding/immich-kiosk
v0.39.3
v0.39.2
Improved config path permission errors
When Kiosk cannot read the configuration file because of a permissions issue with the path (/config/config.yaml), it now displays a more helpful error message.
Weather URL queries
A select few weather options (UI elements) can be overridden via URL query parameters.
Documentation
What's Changed
⚡ Fixes
🔨 Maintenance
- better error mesg by @damongolding in #774
Other changes
- feat: support weather display URL overrides by @hyungyunlim in #773
- 0.39.2 by @damongolding in #775
New Contributors
- @mvanhorn made their first contribution in #771
- @hyungyunlim made their first contribution in #773
Full Changelog: v0.39.1...v0.39.2
v0.39.1
Improved config file permission errors
When Kiosk cannot read the configuration file because of a permissions issue, it now displays a more helpful error message.
Binary build pipeline fix
Fixed broken build pipeline
Go version bump
Bumped to Go 1.26.4
What's Changed
🔨 Maintenance
- 0.39.1 by @damongolding in #770
Other changes
- update binary build by @damongolding in #768
Full Changelog: v0.39.0...v0.39.1
v0.39.0
⚠ Breaking Change: Moved from Alpine to Distroless
With version 0.39.0 the docker base image has moved from Alpine to Distroless.
Why
I've moved Kiosk over to Distroless for size, speed and security. I've always tried to be as friendly to users hardware (and security conscience) as I can and a smaller docker image just makes sense.
- Smaller image (around 50% smaller then Alpine)
- No shell (bash etc) so it has a smaller attack surface
- Faster startups
- Runs as nonroot by default
Possible user actions
Healthcheck
With this change the current healthcheck will no longer work as distroless does not include CURL, so I built one into Kiosk.
# OLD
healthcheck:
test: ["CMD", "curl", "-f", "http://localhost:3000/health"]
interval: 30s
timeout: 5s
retries: 3
start_period: 10s
# NEW
healthcheck:
test: ["CMD", "/kiosk", "--healthcheck"] # 👈 This is the only change to the healthcheck
interval: 30s
timeout: 5s
retries: 3
start_period: 10sOffline assets permissions
As Kiosk now runs as nonroot you may get permission errors when using offline mode. View the offline docs for a solution.
Fullscreen keyboard keybind
Pressing "f" will toggle the browser fullscreen mode.
What's Changed
🚀 New Features
- keybind for fullscreen by @damongolding in #757
- Feature/cache duration by @damongolding in #762
🔨 Maintenance
- Chore/remove bun
slopby @damongolding in #752 - Chore/distroless by @damongolding in #759
- Chore/gofumpt by @damongolding in #760
- deps by @damongolding in #767
Full Changelog: v0.38.1...v0.39.0
v0.38.1
Temp Range Indicators
Added a small indicator on the temp range values to add help visually distinguish between high and low temps.
The default wind direction is now compass directions
Changed the default wind direction to use compass directions (N, NE, E etc)
wind_direction
Added wind_direction to weather locations. Setting this to true will display the wind direction as degrees
weather:
locations:
- name: xxx
lat: xxx
lon: xxx
api: xxx
unit: metric
lang: en
show:
wind: true
wind_direction: falseImproved live photo handling
Fixed an issue where Kiosk could become stuck if a live photo failed to fetch.
What's Changed
🚀 New Features
- temp range indicators by @damongolding in #746
- feat: Added support for wind direction displayed as compass heading by @pengee in #742
⚡ Fixes
- Fix/forced-light-mode by @damongolding in #743
- Fix/live photo polling by @damongolding in #744
🔨 Maintenance
- deps by @damongolding in #747
- go v bump by @damongolding in #748
Other changes
- change default by @damongolding in #745
- Task/release by @damongolding in #749
New Contributors
Full Changelog: v0.38.0...v0.38.1
v0.38.0
Added: filter_exclude_faces
Excludes assets where Immich has detected a face. Useful for slideshows focused on scenery, landscapes, or architecture.
Note: Requires Immich to have already processed face detection on your assets.
Example
http://URL?album=XXX&filter_exclude_faces=true
What's Changed
🚀 New Features
- Feature/filter exclude faces by @damongolding in #739
Other changes
- v0.38.0 by @damongolding in #740
Full Changelog: v0.37.0...v0.38.0
v0.37.0
⚠ Breaking Change: date_filter Renamed to filter_date
date_filter has been renamed to filter_date to be consistent with the naming convention used by other filters.
Update any existing URLs, configs or ENVs that use date_filter.
Added: filter_newest
Limit asset sources to only the newest X assets.
Example
http://URL?album=XXX&filter_newest=200
Only the 200 most recent assets in the specified album will be shown.
Memories Now Respect filter_date
Memories are now filtered by filter_date, so only memories within the specified date range will be displayed.
Example
http://URL?memories=true&filter_date=2025-01-01_to_today
Only memories from 2025-01-01 onwards will be shown.
New loading spinner
The loading spinner has been updated.
What's Changed
⚠️ Breaking Changes
- Chore/date_filter renamed
🚀 New Features
- Feature/add new spinner by @damongolding in #736
- Feature/filter date applied memories by @damongolding in #737
- Feature/filter newest by @damongolding in #733
Full Changelog: v0.36.3...v0.37.0
v0.36.3
Update schema for memories_only
Fix config validation error
v0.36.2
Memories only
When using the memories source, the new memories_only option lets you show memories only when no other sources (people, albums, tags, etc.) are configured.
Forecast: temperature range
Fixed an issue where temperature_range wouldn't show if forecast was set to false.
What's Changed
🚀 New Features
- Feature/expose memories only by @damongolding in #730
⚡ Fixes
- Fix/weather temp range by @damongolding in #729
Other changes
- 0.36.2 by @damongolding in #732
Full Changelog: v0.36.1...v0.36.2
v0.36.1
Safari SVGs
Fix SVGs in Safari not displaying correctly.
What's Changed
⚡ Fixes
- Fix/safari svg by @damongolding in #727
Other changes
- 0.36.1 by @damongolding in #728
Full Changelog: v0.36.0...v0.36.1