v0.14.0
Information Overlay
Tip
If you use a reverse proxy or expose Immich you can set immich_external_url
so the links/QR code links to that
You can access additional image information in two ways:
- Click the "i" icon on the screen
- Press the "i" key on your keyboard
The overlay includes:
- A direct link to view the image in Immich
- A QR code for quick mobile access
- A button to trigger the
user.webhook.trigger.info_overlay
webhook event (if enabled)
You can customize the overlay using these configuration options:
show_more_info
: Controls the entire overlay visibilityshow_more_info_image_link
: Toggles the direct image linkshow_more_info_qr_code
: Toggles the QR code display
Redirects
A feature that lets you create simple, memorable URLs that point to longer, more complex ones. Configure them in config.yaml
under kiosk.redirects
with three key components:
name
: Your short, friendly URLurl
: The full destination URLtype
: Chooseinternal
to preserve browser history orexternal
for standard redirects
Webhooks
Kiosk can integrate with external services through webhook notifications. When configured, Kiosk automatically sends HTTP POST requests to your specified URLs whenever important events occur, enabling real-time communication with other systems and services.
Default weather location
You can now set a weather location as the default
weather:
- name: london
lat: 51.5285262
lon: -0.2663999
api: API_KEY
unit: metric
lang: en
default: true
- name: new-york
lat: 40.6973709
lon: -74.1444838
api: API_KEY
unit: imperial
lang: en
Exclude albums
This feature allows you to prevent specific albums from being displayed in the slideshow.
Image Optimization
An optional performance feature that resizes images to match your browser's dimensions. While generally unnecessary, it can improve loading times on low-powered devices. Disabled by default.
What's Changed
🚀 New Features
- Implement friendly redirects by @damongolding in #190
- Added webhooks by @damongolding in #187
- moved clock to client by @damongolding in #192
- Allow a weather location to be set as the default by @damongolding in #193
- Information overlays by @damongolding in #194
- add sleep icon by @damongolding in #197
- add exclude albums option by @damongolding in #203
- add non url changing redirect by @damongolding in #202
- add external link config option by @damongolding in #208
⚡ Fixes
- splitview-landscape layout fix by @damongolding in #189
- transition fixes/upgrades by @damongolding in #191
- Fix clock init by @damongolding in #201
📓 Documentation
- add contributing docs by @damongolding in #195
🔨 Maintenance
- view/templates restructure by @damongolding in #207
Other changes
- implemented optimise option for lower spec devices by @damongolding in #200
- 0.14.0 by @damongolding in #204
Full Changelog: v0.13.1...v0.14.0