Kirby 3.2.5 is here!

It’s time for a new release! :rocket:

All changes

https://github.com/getkirby/kirby/releases/tag/3.2.5

Highlights

Icon Plugins

The panel can now be extended with your own icon plugins :tada:

panel.plugin('my/icons', {
  icons: {
    'my-icon': '<path d="M7,3V13H5v2H8a1,1,0,0,0,1-1V4h2V2H8A1,1,0,0,0,7,3Z" /><circle cx="2" cy="14" r="2" /><polygon points="12 0 12 6 16 3 12 0" />'
  }
});

More query templating in blueprints

You can now use query templating in more blueprint options (help, default, label, empty and headline)

fields: 
  text: 
    label: "Notes for {{ page.title }}"
    type: textarea
    help: "You can fill in some notes for {{ page.title }} here"   

Switch off content locking

Content locking can be switched off with the new content.locking option

return [
  'content' => [
    'locking' => false
  ]
];

We’ve added tons of additional smaller enhancements and fixes. Check them out: Release 3.2.5 · getkirby/kirby · GitHub

Download

https://github.com/getkirby/kirby/archive/3.2.5.zip

How to update

  1. Download the latest version of the kirby folder here: https://github.com/getkirby/kirby/archive/3.2.5.zip
  2. Unzip it and rename the folder to kirby
  3. Use it to replace your old kirby folder in your installation

Roadmap

https://roadmap.getkirby.com

4 Likes