Kirigami Addons 1.10.0
Kirigami Addons is a collection of supplementary components for Kirigami applications. Version 1.10.0 is a relatively minor release, introducing KirigamiApp and some improvements on Android regarding the new edge-to-edge support introduced in Android 15.
New Features
Aleix Pol Gonzalez added a KirigamiApp component which removes quite a bit of boilerplate to setup a Kirigami applications.
It now looks like this and will setup theming, crash reporting and more automatically in one place:
int main(int argc, char *argv[])
{
KirigamiApp::App app(argc, argv);
KirigamiApp kapp;
// Set up KAboutData
// QCommandLineParser creation and processing
if (!kapp.start("org.kde.myapp", u"Main", new QQmlApplicationEngine)) {
return -1;
}
return app.exec();
}
Bug fixes
Volker Krause added edge-to-edge support to the BottomDrawer and the MaximizedComponents.
Packager Section
You can find the package on download.kde.org and it has been signed with my GPG key.