Skip to content

1.1.0

Compare
Choose a tag to compare
@bastianallgeier bastianallgeier released this 28 Nov 14:45
· 109 commits to main since this release
91138fa

🎉 Features

Kirby::plugin('your/plugin', [
  'commands' => [
    'your-plugin:test' => [
      'description' => 'Nice command',
      'args' => [],
      'command' => function ($cli) {
        $cli->success('My first plugin command');
      }
    ]
  ]
]);
  • New register command to register the current installation
kirby register --license K3-xxx --email [email protected]
  • New uuid:remove command to remove all uuids
kirby uuid:remove
  • New global --quiet option to suppress the output of the command. #20

✨ Enhancements

  • Added support for the XDG_CONFIG_HOME env variable. #23
  • Unit tests and CI

🐛 Bug Fixes

  • Hidden files are now extracted correctly #19 & #16
  • Old Kirby v2 and v1 installations get no longer loaded by accident #3
  • Fixed clear:cache fallback #22
  • Fixed custom helper loading #12

🚨 Breaking Changes

  • Support for the kirby.cli.json has been removed in favour of loading the index.php