Skip to content

v0.43.0

Choose a tag to compare

@damongolding damongolding released this 27 Aug 11:28
· 1 commit to main since this release

0.43.0

Redirect config update

The redirects object has been moved out of the kiosk object. The old config structure still works, but Kiosk will log a warning prompting you to migrate to the new structure.

Old

kiosk:
  redirects:
    - name: bubble
      url: /?theme=bubble

New

redirects:
  items:
    - name: bubble
      url: /?theme=bubble

Show albums on redirects

Setting show_albums to true displays all your albums in the redirect overlay. This is off by default.

redirects:
  show_albums: true
  items:
    - name: bubble
      url: /?theme=bubble

Redirect item categories

Redirects can now be grouped using categories.

Thanks to @itsvyle for this contribution!

redirects:
  show_albums: true
  items:
    - name: bubble
      url: /?theme=bubble
      category: themes

    - name: fade
      url: /?theme=fade
      category: themes

Fixed URL builder when using password

Thanks to @Vistalite for catching this!


Fixed star rating not saving in the more info overlay


Offline mode now allows URL overrides


Polish translations

Thanks to @kch789 for helping with Polish translations!


What's Changed

Other changes

  • Update Polish translations in pl.toml by @kch789 in #843

New Contributors

Full Changelog: v0.42.0...v0.43.0