Feed aggregator

Apple MacOS [WhiteSur-Dark] [Global Themes (Plasma 6)]

KDE Store - Wed, 2024/07/24 - 7:03am
MacOS big sur theme for kde plasma ----------------------- [b]Kvantum theme:[/b]...

Apple MacOS theme [WhiteSur] [Global Themes (Plasma 6)]

KDE Store - Wed, 2024/07/24 - 7:01am
MacOS theme for kde plasma ----------------------- [b]Kvantum theme:[/b]...

Apple MacOS [WhiteSur-dark] plasma [Plasma Themes]

KDE Store - Wed, 2024/07/24 - 6:59am
MacOS theme for kde plasma ----------------------- [b]Kvantum theme:[/b]...

WhiteSur alt plasma [Plasma Themes]

KDE Store - Wed, 2024/07/24 - 6:57am
MacOS big sur theme for kde plasma ----------------------- [b]Kvantum theme:[/b]...

WhiteSur Plasma [Plasma Themes]

KDE Store - Wed, 2024/07/24 - 6:56am
MacOS big sur theme for kde plasma ----------------------- [b]Kvantum theme:[/b]...

Graphite dark kde theme [Global Themes (Plasma 6)]

KDE Store - Wed, 2024/07/24 - 6:49am
Graphite dark kde theme ---------- kvantum theme: [url]https://www.pling.com/p/1667587/[/url]

Graphite dark plasma theme [Plasma Themes]

KDE Store - Wed, 2024/07/24 - 6:48am
Graphite dark plasma theme ---------- kvantum theme: [url]https://www.pling.com/p/1667587/[/url]

Expose Air [SDDM Login Themes]

KDE Store - Wed, 2024/07/24 - 12:42am
Part of global theme.

Sweet Mars KDE [Global Themes (Plasma 5)]

KDE Store - Tue, 2024/07/23 - 11:14pm
A dark and modern theme for Plasma [h2][B][color=#FF0000]¡IMPORTANT![/color][/B][/h2] [B] Hi, if you are really enjoying these themes from me and ...

Sweet Mars KDE [Global Themes (Plasma 5)]

KDE Store - Tue, 2024/07/23 - 11:14pm
A dark and modern theme for Plasma [h2][B][color=#FF0000]¡IMPORTANT![/color][/B][/h2] [B] Hi, if you are really enjoying these themes from me and ...

Sweet Mars KDE [Plasma Themes]

KDE Store - Tue, 2024/07/23 - 11:14pm
A dark and modern theme for Plasma. [h2][B][color=#FF0000]¡IMPORTANT![/color][/B][/h2] [B] Hi, if you are really enjoying these themes from me ...

Sweet Mars KDE [Plasma Themes]

KDE Store - Tue, 2024/07/23 - 11:14pm
A dark and modern theme for Plasma. [h2][B][color=#FF0000]¡IMPORTANT![/color][/B][/h2] [B] Hi, if you are really enjoying these themes from me ...

Sweet Mars KDE [Plasma Window Decorations]

KDE Store - Tue, 2024/07/23 - 11:14pm
Aurorae theme to fit my Sweet theme for [url=https://www.pling.com/p/1393498/]plasma[/url] and...

Sweet Mars KDE [Plasma Window Decorations]

KDE Store - Tue, 2024/07/23 - 11:14pm
Aurorae theme to fit my Sweet theme for [url=https://www.pling.com/p/1393498/]plasma[/url] and...

Beta for Amarok 3.1 available

Planet KDE - Tue, 2024/07/23 - 9:30pm

Dear fans of music & open source music players,
in preparation of the upcoming Amarok 3.1 release, a beta release (3.0.81) has been prepared.

As is observable from the ChangeLog, in addition to various bugfixes, there will be some, but not that many, new features included in the upcoming version. However, there has been a lot of Qt6 compatibility preparation work done under the hood, so version number 3.1 reflects the amount of changed code better than 3.0.2 would. 3.1.0 is likely to be released in early August, and all help catching any regressions during this period is highly appreciated. (n.b. one won't be able to compile a Qt6 Amarok with 3.1 yet, but perhaps with the eventual 3.2)

The source tarball is available on download.kde.org and it has been signed with Tuomas Nurmi's GPG key. There doesn't appear to be many binary packages of the beta available, at least at the moment, but the various nightly git builds provided by various splendid packagers are also based on corresponding source code, so using them and reporting findings is also a valid way to participate in the beta test effort.

Happy listening!

Kirigami Addons 1.4

Planet KDE - Tue, 2024/07/23 - 9:20pm

Kirigami Addons 1.4 is out! This release introduce a new module to manage actions similar to that we can find in the QtWidgets world with KXmlGui. This was not written from scratch but upstream the existing infrastructure from Merkuro (ex-Kalendar) and Marknote. These two applications have already been ported to this new module and more like Tokodon or KDE Keychain will follow soon.

This includes a shortcut editor to assign and modify the shortcuts of an application and a command bar to quickly search and trigger actions

Shortcut editor Shortcut editor

Command bar Command bar

Similar to KXmlGui, the actions are defined in C++, which allows to make use KStandardActions and get consistent shortcuts accross all your applications.

class MyApplication : public AbstractKirigamiApplication { Q_OBJECT QML_ELEMENT public: explicit MyApplication(QObject *parent = nullptr); void setupActions() override; Q_SIGNALS: void addNotebook(); }; MyApplication::MyApplication(QObject *parent) : AbstractKirigamiApplication(parent) { setupActions(); } void MyApplication::setupActions() { AbstractKirigamiApplication::setupActions(); auto actionName = QLatin1String("add_notebook"); if (KAuthorized::authorizeAction(actionName)) { auto action = mainCollection()->addAction(actionName, this, &MyApplication::addNotebook); action->setText(i18nc("@action:inmenu", "New Notebook")); action->setIcon(QIcon::fromTheme(QStringLiteral("list-add-symbolic"))); mainCollection()->addAction(action->objectName(), action); mainCollection()->setDefaultShortcut(action, QKeySequence(Qt::CTRL | Qt::SHIFT | Qt::Key_N)); } }

These new actions can then be used from QML thanks to the new Kirigami.Action::fromQAction property.

import org.kde.kirigamiaddons.statefulapp as StatefulApp import org.kde.kirigamiaddons.settings as Settings StatefulApp.StatefulWindow { id: root windowName: 'Main' application: MyApplication { configurationView: Settings.ConfigurationView { ... } } Kirigami.Action { fromQAction: MyApplication.action('add_notebook') } Connections { target: MyApplication function onAddNotebook(): void { ... } } }

There is a new template available in KAppTemplate, which allows you to kickstart your new Kirigami application with the basic skeleton with this new module and other “Kirigami Addons” modules.

Other Changes

The FormCard design was tweaked a bit more when using a dark theme, thanks to James and Joshua for their feedback.

Speaking of FormCard, with the development of KeyChain, I ended up adding a new component to the FormCard collection: FormTextAreaDelegate. This component is the equivalent of FormTextFieldDelegate but with a TextArea instead. FormComboBoxDelegate and FormTextFieldDelegate also received a bunch of new properties and functions to proxy the underlying QtQuick.Controls component.

Evgeniy Harchenko tweaked a bit the headers of the TableView component.

Finally, a new contributor Andreas Gattringer fixed a crash in the video maximizing component which was affecting NeoChat.

Packager Section

You can find the package on download.kde.org and it has been signed with my GPG key.

Gently Global Theme [Global Themes (Plasma 5)]

KDE Store - Tue, 2024/07/23 - 7:11pm
Very Transparent and Blur Plasma Theme. Enabled Blurred Widgets and Adaptive Transparency ----------------------- [COLOR="#530053"]...

Gently Global Theme [Global Themes (Plasma 5)]

KDE Store - Tue, 2024/07/23 - 7:11pm
Very Transparent and Blur Plasma Theme. Enabled Blurred Widgets and Adaptive Transparency ----------------------- [COLOR="#530053"]...