Feed aggregator

Breeze Chameleon Dark [Full Icon Themes]

KDE Store - Wed, 2024/06/26 - 4:43pm
The folders change color depending on the[COLOR="#d88d00"] [B]Color[/B] [/COLOR] [COLOR="#006A80"] [B]Scheme[/B] [/COLOR] [COLOR="#8f267c"]...

Breeze Chameleon Light [Full Icon Themes]

KDE Store - Wed, 2024/06/26 - 4:42pm
The folders change color depending on the [COLOR="#d88d00"] [B]Color[/B] [/COLOR] [COLOR="#006A80"] [B]Scheme[/B] [/COLOR] [COLOR="#8f267c"]...

Breeze-Round-Chameleon Dark Icons [Full Icon Themes]

KDE Store - Wed, 2024/06/26 - 4:41pm
The folders change color depending on the[COLOR="#d88d00"] [B]Color[/B] [/COLOR] [COLOR="#006A80"] [B]Scheme[/B] [/COLOR] [COLOR="#8f267c"]...

Azure-Dark-Icons [Full Icon Themes]

KDE Store - Wed, 2024/06/26 - 1:30pm
[COLOR="#4e51ac"] [B]Azure[/B] [/COLOR] [COLOR="#008080"] [B]Dark[/B] [/COLOR] [COLOR="#aa55ff"] [B]Icons[/B] [/COLOR] [COLOR=#0079b5"] [B]Theme...

Azure-Glassy-Dark-Icons [Full Icon Themes]

KDE Store - Wed, 2024/06/26 - 1:28pm
[COLOR="#4e51ac"] [B]Azure-Glassy[/B] [/COLOR] [COLOR="#008080"] [B]Dark[/B] [/COLOR] [COLOR="#aa55ff"] [B]Icons[/B] [/COLOR] [COLOR=#0079b5"]...

Fantasy mountain wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:10pm
1280x720 2560x1440

Dark forest sky wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:09pm
1280x720 2560x1440

Rainbow colourful galaxy star [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:05pm
1280x720 2560x1440

Sunset landscape background [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:03pm
1280x720 2560x1440

Lightning wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:02pm
1280x720 2560x1440

Beautiful sunrise wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 12:00pm
1280x720 2560x1440

Mountain sunset wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 11:55am
1280x720 2560x1440

Beautiful sky wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 11:53am
1280x720 2560x1440

Fantasy sky wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 11:52am
1280x720 2560x1440

Abstract Smoke Wallpaper [Wallpapers KDE Plasma]

KDE Store - Wed, 2024/06/26 - 11:51am
1280x720 2560x1440

Kirigami Addons 1.3.0

Planet KDE - Wed, 2024/06/26 - 11:20am

Kirigami Addons 1.3.0 is out. Kirigami Addons is a collection of components to enhance your Kirigami/QML application. This release contains many change related to the settings module.

ConfigurationView

The current way to create a settings page in your application is to use CategorizedSettings with some SettingAction for each setting page. This was based on Kirigami.PageRow which was then either pushed on a layer on mobile or to a seperate page on desktop. This turned out to be quite unreliable in practice as Kirigami.PageRow is a visual element.

The new ConfigurationView is based on a plain non-visual QtObject with for the moment two backends:

  • One for mobile which looks similar to the Plasma Settings application of Plasma Mobile.
  • One for desktop which looks similar to the System Settings application of Plasma Desktop.

The API is almost the same as the previous CategorizedSettings which made porting quite easy. Here is for example a button that open the settings.

import QtQuick.Controls as Controls import org.kde.kirigamiaddons.settings as KirigamiSettings Controls.Button { id: button KirigamiSettings.ConfigurationView { id: configuration window: button.Controls.ApplicationWindow.window as Kirigami.ApplicationWindow modules: [ KirigamiSettings.ConfigurationModule { moduleId: "appearance" text: i18nc("@action:button", "Appearance") icon.name: "preferences-desktop-theme-global" page: () => Qt.createComponent("org.kde.tokodon", "AppearancePage") }, ... KirigamiSettings.ConfigurationModule { moduleId: "about" text: i18nc("@action:button", "About Tokodon") icon.name: "help-about" page: () => Qt.createComponent("org.kde.kirigamiaddons.formcard", "AboutPage") category: i18nc("@title:group", "About") } ] } icon.name: 'settings-configure-symbolic' text: i18nc("@action:button", "Settings") onClicked: configuration.open() }

With this change, both CategorizedSettings and SettingAction are now deprecated.

ConfigurationView on desktop ConfigurationView on desktop

ConfigurationView on mobile ConfigurationView on mobile

SpellcheckingConfigurationModule

With ConfigurationView each page is a ConfigurationModule and Kirigami Addons provides a ConfigurationModule for the spellchecking configuration of your application. This will allow to reduce code duplication between NeoChat, Tokodon, Marknote and more applications which uses Sonnet.

KirigamiSettings.ConfigurationView { modules: [ KirigamiSettings.SpellcheckingConfigurationView {} ] }
FormCard

FormCard design was slighly updated and now uses shadows as you might have already noticed from the previous screenshots.

SearchPopupField

Another component which is getting deprecated in SearchPopupField, there is now a replacement for that in Kirigami with the same behavior and I added an example how to port away to Kirigami.SearchDialog and I also ported all the know usage already.

Maintainance work

Aside from this major changes, there is ongoing maintaince works. This includes:

  • Removing the accidental QtWidgets on Android caused by QtLabs.ColorDialog (me: Carl Schwan)
  • Ensure all translated strings are loaded from the correct translation domain (me: Carl Schwan)
  • The license dialog in the AboutPage is now opened in the correct window (Jack Hill)
  • Fix the focus in the FormComboBoxDelegate (Joshua Goins)
  • Fix the capitalization in the AboutPage (Joshua Goins)
  • Increase the padding in FormCardDialog to match the other FormCard components
Packager Section

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

Moe Dark Look-and-Feel [Global Themes (Plasma 6)]

KDE Store - Wed, 2024/06/26 - 11:17am
Moe Dark global theme. Moe Dark is a dark theme, with blur transparencies and red tones with gradients. Plasma theme:...

Moe Dark [Plasma Themes]

KDE Store - Wed, 2024/06/26 - 11:17am
Dark theme, with blur transparencies and red tones with gradients. Video of Moe theme: https://www.youtube.com/watch?v=MSKXN2rjBag Based on...

MoeDark [Plasma 6 Window Decorations]

KDE Store - Wed, 2024/06/26 - 11:16am
Aurorae theme for Moe Dark plasma theme. Based on McMojave by Vinceliuice https://github.com/vinceliuice/McMojave-kde

Moe-Dark [Plasma Color Schemes]

KDE Store - Wed, 2024/06/26 - 11:16am
Moe Dark color-schemes for Moe Plasma Theme https://store.kde.org/p/1284575/