PackageTrack
Sign in Get early access

github.com/damongolding/immich-kiosk

v0.42.0 #1324 most downloaded on Go modules damongolding/immich-kiosk

What this package is like to depend on

Last release 20 days ago

04 Aug 2026

Ships fairly regularly

a new release about every 2 weeks

Rarely documented

notes for 10 of 100 stable releases

Nothing withdrawn

no release was ever pulled

2 years old

152 releases · first in 2024

48 releases in the last 12 months

see the full history below

Release timeline

152 releases · Jul 2024 to Aug 2026
2025 2026
Release Pre-release

Releases

latest 60 of 152
  1. v0.42.0 04 Aug 2026
    Release notes

    New transitions

    • Added slide-up, slide-right, slide-down, slide-left and slide-random.
    • Added push-up, push-right, push-down, push-left and push-random.

    Slide left example

    transition_slide-left.mp4

    Push left example

    transition_push-left.mp4

    All slide examples
    All push examples


    Fix memories

    Restore memories functionality for Immich V3.


    Fix exclude partner

    Restore memories functionality for Immich V3.



    What's Changed

    🚀 New Features

    ⚡ Fixes

    🔨 Maintenance

    Other changes

    Full Changelog: v0.41.0...v0.42.0

    Open source →
  2. v0.41.0 09 Jul 2026
    Release notes

    Custom weather provider

    You can use any weather data provider by setting custom_weather_url on a weather location. Kiosk will expect the JSON payload to be structured in a specific way so you will most likely need to create a custom weather service/server that will fetch your weather data and provide it in the required format.

    Example weather Location

    weather:
      locations:
        - name: custom
          custom_weather_url: https://{CUSTOM_WEATHER_PROVIDER_URL}
          forecast: false
          show:
            temperature_range: false
            humidity: false
            wind: false
            visibility: false
          default: false

    View the custom weather documentation for more information.



    What's Changed

    🚀 New Features

    Full Changelog: v0.40.2...v0.41.0

    Open source →
  3. v0.40.2 07 Jul 2026
    Release notes

    Added Immich version check

    Kiosk now checks that your Immich server is running a supported version. If it's not, Kiosk logs an error and exits early. If Kiosk can't reach your Immich server, the version check is skipped.


    Fix for smart-zoom

    Restored image_effect: smart-zoom functionality.


    Fix for album order

    Restored album_order: oldest functionality.


    What's Changed

    ⚡ Fixes

    Full Changelog: v0.40.1...v0.40.2

    Open source →
  4. v0.40.1 03 Jul 2026
    Release notes

    Internal updates to the demo

    New demo images.


    Fixed a UI bug with metadata

    Metadata would slowly fade out and in when viewing the more info overlay.


    Full Changelog: v0.40.0...v0.40.1

    Open source →
  5. v0.40.0 02 Jul 2026
    Release notes

    ⚠ Breaking Change: Support for Immich V3

    v0.40.0 and above will only support Immich V3.


    Filter favorites

    Added the new filter filter_favorites, which limits all assets to only favorited assets.

    Example

    The below will limit assets from the given album and person to only favorited assets.
    https://URL?album=XXX&person=XXX&filter_favorites=true


    Memory title i18n

    The memory title (X years ago) is now driven by year_ago and years_ago in the locale files.


    Edit asset star rating

    You can now edit an asset's star rating from the "more info" overlay.


    Better asset retrieval on waking from sleep

    Kiosk will grab a new asset immediately after waking from sleep mode.


    Clear cache endpoint update

    Updated the clear cache endpoint to allow it's usage in the Immich's V3 worflows.

    https://docs.immichkiosk.app/guides/workflows/



    What's Changed

    ⚠️ Breaking Changes

    🚀 New Features

    ⚡ Fixes

    🔨 Maintenance

    Other changes

    Full Changelog: v0.39.3...v0.40.0

    Open source →
  6. v0.39.3 06 Jun 2026
    Release notes

    Restore support for Safari 12.1

    Fix navigation on IOS/Safari 12.1


    Full Changelog: v0.39.2...v0.39.3

    Open source →
  7. v0.39.2 05 Jun 2026
    Release notes

    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

    • fix: handle rejected video.play() on resume so slideshow recovers (#652) by @mvanhorn in #771

    🔨 Maintenance

    Other changes

    New Contributors

    Full Changelog: v0.39.1...v0.39.2

    Open source →
  8. v0.39.2-0.20260603091740-2b4403db18fd 03 Jun 2026 pre-release

    Nothing published for this version

  9. v0.39.1 03 Jun 2026
    Release notes

    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

    Other changes

    Full Changelog: v0.39.0...v0.39.1

    Open source →
  10. v0.39.1-0.20260602141541-7ae81dd637ac 02 Jun 2026 pre-release

    Nothing published for this version

  11. v0.39.0 02 Jun 2026
    Release notes

    ⚠ 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: 10s

    Offline 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

    🔨 Maintenance

    Full Changelog: v0.38.1...v0.39.0

    Open source →
  12. v0.38.1 08 May 2026
    Release notes

    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: false

    Improved live photo handling

    Fixed an issue where Kiosk could become stuck if a live photo failed to fetch.


    What's Changed

    🚀 New Features

    ⚡ Fixes

    🔨 Maintenance

    Other changes

    New Contributors

    Full Changelog: v0.38.0...v0.38.1

    Open source →
  13. v0.38.0 30 Apr 2026

    Nothing published for this version

  14. v0.37.0 22 Apr 2026

    Nothing published for this version

  15. v0.36.3 20 Apr 2026

    Nothing published for this version

  16. v0.36.2 18 Apr 2026

    Nothing published for this version

  17. v0.36.1 17 Apr 2026

    Nothing published for this version

  18. v0.36.0 15 Apr 2026

    Nothing published for this version

  19. v0.35.0 24 Mar 2026

    Nothing published for this version

  20. v0.34.0 17 Mar 2026

    Nothing published for this version

  21. v0.33.4-0.20260305100554-8a5f6648c8c0 05 Mar 2026 pre-release

    Nothing published for this version

  22. v0.33.3 04 Mar 2026

    Nothing published for this version

  23. v0.33.2 27 Feb 2026

    Nothing published for this version

  24. v0.33.2-0.20260226153051-3eb535a8cc68 26 Feb 2026 pre-release

    Nothing published for this version

  25. v0.33.1 26 Feb 2026

    Nothing published for this version

  26. v0.33.0 13 Feb 2026

    Nothing published for this version

  27. v0.32.1 05 Feb 2026

    Nothing published for this version

  28. v0.32.0 03 Feb 2026

    Nothing published for this version

  29. v0.31.0 22 Jan 2026

    Nothing published for this version

  30. v0.30.2 14 Jan 2026

    Nothing published for this version

  31. v0.30.1 05 Jan 2026

    Nothing published for this version

  32. v0.30.0 05 Jan 2026

    Nothing published for this version

  33. v0.29.1 18 Dec 2025

    Nothing published for this version

  34. v0.29.1-0.20251216152838-7c58bf021d2c 16 Dec 2025 pre-release

    Nothing published for this version

  35. v0.29.0 16 Dec 2025

    Nothing published for this version

  36. v0.28.4 09 Dec 2025

    Nothing published for this version

  37. v0.28.3 04 Dec 2025

    Nothing published for this version

  38. v0.28.2 04 Dec 2025

    Nothing published for this version

  39. v0.28.1 01 Dec 2025

    Nothing published for this version

  40. v0.28.0 20 Nov 2025

    Nothing published for this version

  41. v0.27.1 11 Nov 2025

    Nothing published for this version

  42. v0.27.0 10 Nov 2025

    Nothing published for this version

  43. v0.26.1 22 Oct 2025

    Nothing published for this version

  44. v0.26.0 21 Oct 2025

    Nothing published for this version

  45. v0.25.0 07 Oct 2025

    Nothing published for this version

  46. v0.24.1-0.20250918091940-1ab0f4cb279f 18 Sep 2025 pre-release

    Nothing published for this version

  47. v0.24.0 16 Sep 2025

    Nothing published for this version

  48. v0.23.4 29 Aug 2025

    Nothing published for this version

  49. v0.23.3 28 Aug 2025

    Nothing published for this version

  50. v0.23.2 28 Aug 2025

    Nothing published for this version

  51. v0.23.1 27 Aug 2025

    Nothing published for this version

  52. v0.23.0 27 Aug 2025

    Nothing published for this version

  53. v0.22.2 30 Jul 2025

    Nothing published for this version

  54. v0.22.1 22 Jul 2025

    Nothing published for this version

  55. v0.22.1-0.20250716120241-0a143058b668 16 Jul 2025 pre-release

    Nothing published for this version

  56. v0.22.0 16 Jul 2025

    Nothing published for this version

  57. v0.21.7-0.20250630121719-3c33391588af 30 Jun 2025 pre-release

    Nothing published for this version

  58. v0.21.6 30 Jun 2025

    Nothing published for this version

  59. v0.21.5 22 Jun 2025

    Nothing published for this version

  60. v0.21.5-0.20250614084845-065ca1f88228 14 Jun 2025 pre-release

    Nothing published for this version

Every package, every release, already written down.

The archive is open and free. Watching your own project is what we are building next.

Browse the archive