15 Aug 2026
Planet KDE | English
NFC Integration for Plasma Mobile
Following the recent look at the state of GNSS API on Linux Mobile, I did a similar exploration of where we are with the Near Field Communication (NFC) stack.
Use cases
Around NFC there's a whole bunch of interleaved standards and protocols. Trading simplicity for accuracy here there's basically two modes of operation:
- Reading static messages from "dumb" tags that are essentially just raw memory. The most relevant format for this is the NFC Data Exchange Format (NDEF), which is essentially a space-efficient MIME-typed container.
- Wireless communication with what is ultimately a smart card, ie. some form of application with its own specific bidirectional protocol running on the tag or card.
Reading static NDEF messages is kind of the "hello world" application here, but practically it's the least relevant one, as QR codes have taken over practically all applications for this, having the better UX.
The smart card approach has more interesting applications:
- FIDO2 authenticator tokens, e.g. for Passkey authentication.
- Government issued id cards, e.g. the AusweisApp for interacting with German id cards.
- Authenticating on NFC-based door locks, e.g. using the Aliro protocol.
- NFC keys in Apple Wallet passes, e.g. used by some hotels.
The by far most common use is probably mobile payment though, but that has a bunch of harder problems to solve than NFC access before we can also have that on mobile Linux.
Orthogonal to that are the roles between the reader and tag/card that's being interacted with. Those are often obvious and fixed, for tags/cards without their own power supply. NFC readers however can also pretend to be tags towards other readers, which is the basis for Host Card Emulation (HCE). That's how mobile payment works, your phone pretends to be a credit card.
What we have
Driver stack
There's two different driver stacks for accessing NFC readers on Linux:
- User-space PC/SC drivers. This is coming from smart cards originally and is primarily used for USB-connected desktop readers.
- The Linux Kernel NFC subsystem. This is what readers in phones use, and also e.g. the NFC reader in a Thinkpad T14s I have here.
The protocol NFC readers speak on a higher level is fortunately standardized with the NFC Controller Interface (NCI).
Middleware
Next up in the stack we have a service bridging the hardware access to applications. The canonical solution for this on Linux is neard. That provides a D-Bus interface for NFC adapters and tags, similar to e.g. BlueZ does for Bluetooth.
Unfortunately it's in a not particularly convincing state:
- It terminates when encountering a Type 1 NFC tag (PR 35).
- It terminates when encountering a multi-lingual smart poster tag (PR 37).
- It only supports NDEF read/write operations, there is no interface for sending custom commands, nor support for HCE.
Distribution packaging on openSUSE was in a similarly concerning state:
- A wrong path in the systemd serivce file made it fail to start (fix).
- A patch to the D-Bus policy breaks half it's functionality.
My fix for the startup issue was merged and deployed in less than 24h by the openSUSE team at least, my patches for neard have yet to see any reaction.
There's one potential alternative, nfcd from the SailfishOS team. That seems newer and more active, and seems to have all relevant features. However, it doesn't have a backend for the Linux NFC subsystem, but rather for the Android NFC interface.
Application API
For bringing NFC access into applications then, there's the Qt NFC API. While the API covers everything we need, there's a few practical limitations:
- There's two backends for Linux (PC/SC and
neard), but unlike in other Qt modules the selection happens solely at compile-time. Build the PC/SC backend and you wont be able to useneardand vice versa. - Raw commands are available in the API, but not supported by
neard, so that will just not do anything. - Writing NDEF messages is implemented but skipped as that apparently previously crashed
neard(see QTBUG-43802). - Power and polling state handling seemed a bit shaky when something else also changes this, or when there's more than one NFC reader present. Probably the easiest to fix of all this though.
It does come with a decent NDEF parser though, that's useful even when directly talking to neard for everything else.
Applications
Finally we need something to actually make use of NFC in the end. So far there seems to be no integration for any of the Linux mobile platforms. In terms of applications, I'm mainly aware of the following two:
- The already mentioned AusweisApp to authenticate to online services with German id cards. It does come with a Qt NFC and a PC/SC backend, the Qt NFC one will fail to work with
neardthough as custom commands wont work there. - credentialsd which aims at providing the Linux platform API for FIDO2/WebAuthn/Passkeys. That's also using PC/SC directly it seems.
Development Tools
Working with hardware tends to be inconvenient, so before looking at filling gaps in the stack it makes sense to look at development tools. I fortunately have access to a Proxmark3, an open-source hardware device that can work as an NFC reader, emulate an NFC tag/card and monitor the communication between an NFC reader and card. That's very useful functionality, but it doesn't help with making things more convenient, you now have another slightly fragile device to handle.
Fortunately, the Linux kernel has support for virtual NCI devices, which we can use for emulating an NFC reader and NFC tags entirely in software. Perfect for testing and reproducability, and doesn't require any kind of physical NFC hardware.
But while the kernel has all necessary infrastructure for this, I haven't found a single user-space tool making use of that so far. So I wrote one. This is fairly basic, but it's at least enough to test power and polling states of readers and to present Type 1 and Type 2 tags with readable and writable memory. That's enough for the basic NDEF use cases, but not for the more advanced applications. The challenging part there would be to write a software emulation for the actual application though, not the NFC/NCI part.
There's a few more things worth investigating:
- A bridge between the virtual NCI interface and the Proxmark3. While using the Proxmark3 as a regular NFC reader is complete overkill, it's still useful if that's the only NFC hardware you currently have handy.
- Exposing (virtual) NFC devices to a VM, for e.g. testing in postmarketOS images.
- Logging of the NCI communication between the kernel and a hardware NFC reader. Probably doable with some eBPF magic, and maybe outputting in a Wireshark-compatible format.
Platform Integration
Compared to the non-Linux mobile platforms the first thing to notice is that we don't even have a simple switch to turn NFC on or off on your device. So I wrote a Plasma applet for that, inspired by how this is done for Bluetooth.
For Bluetooth this is backed by bluedevil as a daemon process in the user session, likewise we now have neardevil doing this for NFC. This takes care of the following:
- Monitor and change power and polling state for NFC readers.
- Show notifications for detected tags containing static NDEF messages, and allowing to open URLs contained in those.
- Allow to set up Wi-Fi connections and pair with Bluetooth devices based on corresponding information in static NDEF messages. For this also a dynamic protocol exists where both parties exchange keys over NFC, that's not implemented and also unlikely to be added later as BlueZ removed the corresponding API for security reasons some time ago.
- Receive vCard contact information.
This is a prototype at best and there's of course much more that could still be done here, like keeping a tag history, detecting and handing over to tag-specific apps for e.g. your id card, etc. But it's a start at least.
How to continue?
So far this is all based on neard, which means as of right now there's no direct path towards actually supporting the interesting use cases requiring sending and receiving application-specific commands or host card emulation.
There's a few options on how to address this:
neardcomes back to live and we get the missing features implemented there.- We implement a Linux backend plugin for
nfcdand rebase everything on top of that. - We implement our own, by forking or by starting from scratch.
"We" here isn't just KDE though, we need something that works for the entire Linux mobile ecosystem, this is shared platform infrastructure which usually has exclusive hardware access, so everyone bringing their own isn't going to work.
Thoughts and input on this highly appreciated!
15 Aug 2026 5:30am GMT
GSoC 2026 Final Wrap-up: Tournaments, Bots, and Voice Chat in Mankala
It has been an incredible 12-week journey contributing to the KDE Community for Google Summer of Code 2026! The guidance and support from my mentors, Benson Muite and Srisharan VS was incredible. A lots of code, contributions and conversation over this happy period.
Here is a comprehensive summary of what we accomplished this summer:
XMPP Integration in Login and UI updates (Weeks 1-3)
I began by integrating in-game XMPP server registration (following XEP-0077: In-Band Registration), complete with compliance checks to ensure protocol adherence. On the frontend, I redesigned the Profile Page to dynamically fetch profile icons and usernames directly from the user's logged-in XMPP account.

Tournaments and Gameplay Enhancements (Weeks 4-7)
I made the core logic and UI for creating XMPP game rooms (XEP-0045: Multi-User Chat) and player invitations. I introduced two major tournament styles: Round-Robin and King of the Hill. To keep matches competitive, I implemented time limits for accepting invites and executing game moves.
Beyond tournaments, the actual gameplay received a massive polish. I added smooth displacement animations so shells transition flawlessly from pit to pit, introduced togglable game music, and finalized flatpak artifact builds to make distribution easier.

Game Bots for Automation and In-Game Chat (Weeks 8-10)
To ensure players always have an opponent, I developed an API Bot for Mankala that automates gameplay moves, complete with OpenAPI documentation. For human opponents, I implemented a real-time text chat system during multiplayer modes directly over our XMPP architecture.
Real-Time Voice Chat (Weeks 11-12)
Taking inspiration from KDE's Kaidan, I utilized the QXmpp library to implement Jingle (XEP-0167: Jingle RTP Sessions) for media sessions. I designed a C++ VoiceCallManager to listen for incoming Jingle requests, establish peer-to-peer connections, and route audio via QtMultimedia.
The biggest challenge was perfectly syncing the game window with the Jingle state. By exposing properties like call status and remote JIDs to QML, the UI now dynamically hides the text chat and reveals the active voice call layout instantly when a call connects.
Community & Documentation
I had the privilege of giving a talk on Mankala at the ILUGC monthly meetup, adding standard CONTRIBUTING.md / SETUP.md documentation, and setting up a Craft blueprint. I will be asking ILUGC members for feedback on the new builds.
A huge thank you to my mentors and the KDE community for their constant guidance...🚀
15 Aug 2026 12:01am GMT
This Week in Plasma: Bi-Directional RDP Clipboard Sync
Welcome to a new issue of This Week in Plasma!
This week was full of user interface improvements and performance enhancements, and we snuck in a few features as well:
Notable new features
Plasma 6.8
Remote desktop sessions now offer a fully shared clipboard, rather than only sending the server's clipboard to the client. (Nick Haghiri, krdp MR #213)
Notable UI improvements
Plasma 6.8
Events shown in the Digital Clock widget now display their descriptions inline, rather than in a hover tooltip. (Francesco Fortunelli, KDE Bugzilla #429700)
The scrolling speed sliders on System Settings' Mouse and Touchpad pages are now accompanied by spinboxes that permit fine-tuning their speeds. (Wladimir Leuschner, KDE Bugzilla #477745)

Discover now shows all of the external links that apps can set in their metadata. (Taras Oleksyn, KDE Bugzilla #522213)

Interactive UI elements on the logout screen are now only shown on the active monitor, mirroring the same thing on the lock and login screens. And the whole thing now fades in and out faster, too. (Ramil Nurmanov, and Nate Graham, KDE Bugzilla #431382 and kwin MR #9711)
The wallpaper chooser UI that's visible in System Settings and the desktop configuration window now loads in a smoother and less glitchy-looking way. (Artem Grinev, plasma-workspace MR #6892)
The Power & Battery widget's "Manually Block Sleep and Screen Locking" switch is now vertically aligned to its icon. See, KDE really does care about margins and alignment! 😁 (Angel Parra, powerdevil MR #662)
Notable bug fixes
Plasma 6.6.7
The Power & Battery widget's tooltip no longer talks about scrolling to change the power mode on systems without either of the power-profiles-daemon or tuned-ppd systems installed and working. (Nate Graham, powerdevil MR #663)
Plasma 6.7.5
Fixed a somewhat common way that Discover could crash on systems using the RPM-OSTree architecture, such as Fedora Kinoite. (Aleix Pol Gonzalez, discover MR #1385)
If the fwupd system service is broken or masked using systemd, the rest of Discover still works as expected. (Tobias Fella, discover MR #1373)
When the Task Manager widget is used with a right-to-left language or its tasks are configured to appear "to the left", the tasks now move to the expected location when manually rearranged by dragging. (Christoph Wolk, KDE Bugzilla #504898)
Custom accent colors defined within wallpapers are once again honored. (Zhora Zmeykin, KDE Bugzilla #514656)
Plasma 6.8
Fixed a case where the remote desktop server could crash when closing a connection. (Wengsheng Tang, krdp MR #189)
Resizing an aspect-ratio-locked window no longer sometimes makes it disappear! (Vlad Zahorodnii, KDE Bugzilla #479547)
The OSD displayed when muting or unmuting microphones using the Microphone Indicator widget now shows the correct icon. (Undef Fox, KDE Bugzilla #472107)
Apps packaged as Flatpaks or using Nix now get pinned to the Task Manager widget in a more robust way, so they're less likely to get broken in the future if the underlying locations of their .desktop files change. (Christoph Wolk, KDE Bugzilla #505066)
The Emoji Selector window now uses the same consistent order for the gendered variants of all emojis, not just some of them. (Tobias Ozór, plasma-desktop MR #3939)
The pointer now looks even sharper at absurdly enormous sizes when you shake it for ages and ages. (Vlad Zahorodnii, kwin MR #9176)

Right-clicking twice on the same pixel of the desktop without moving the pointer no longer shows the wrong context menu the second time. (Christoph Wolk, KDE Bugzilla #504765)
Frameworks 6.30
Fixed a bug that could make KDE Connect consume 100% of a whole CPU core. (David Redondo, KDE Bugzilla #517743)
Very large images on the clipboard no longer sometimes fail to paste successfully. (Zhora Zmeykin, KDE Bugzilla #519651)
Various dialogs throughout KDE software once again properly offer the opportunity to open executable text and script files in a text editor app, working around an upstream change in shared-mime-data which had broken this. (Méven Car, KDE Bugzilla #522948)
Kup 0.11.0
Kup's notification about backup progress no longer erroneously tells you that the backup destination is on your phone that's paired with KDE Connect. (Harald Sitter, KDE Bugzilla #518494)
Notable in performance & technical
Plasma 6.6.7
Added support for monitoring GPU usage for Intel A380 GPUs. (Takahiro Hashimoto, KDE Bugzilla #517334)
Pasting very large PNG images no longer sometimes causes some lagging and stuttering. (Zhora Zmeykin, plasma-workspace MR #6874)
Plasma 6.7.5
KWin now supports more than one wl_data_device, which opens the door to improved drag-and-drop support in Firefox. (Martin Stransky, KDE Bugzilla #521494)
Spectacle is now slightly faster at taking screenshots on vertically flipped screens. (Zhora Zmeykin, kwin MR #9752)
Plasma 6.8
The new kscreenctl tool now supports setting custom CVT timings/modelines. (Vlad Zahorodnii, KDE Bugzilla #517654)
Frameworks 6.30
Reduced the number of times the common Kirigami.Icon component needs to read from the disk while looking for fallback icons. (Jakob Petsovits, kirigami MR #2139)
The Baloo file indexer now correctly ignores Btrfs snapshots that happen to be stored in your home directory, instead of pointlessly trying to index them. (Hadi Chokr, baloo MR #295)
How you can help
KDE has become important in the world, and your time and contributions have helped us get there. As we grow, we need your support to keep KDE sustainable.
Would you like to help put together this weekly report? Introduce yourself in the Matrix room and join the team!
Beyond that, you can help KDE by directly getting involved in any other projects. Donating time is actually more impactful than donating money. Each contributor makes a huge difference in KDE - you are not a number or a cog in a machine! You don't have to be a programmer, either; many other opportunities exist.
You can also help out by making a donation! This helps cover operational costs, salaries, travel expenses for contributors, and in general just keeps KDE bringing Free Software to the world.
To get a new Plasma feature or a bug fix mentioned here
Push a commit to the relevant merge request on invent.kde.org.
15 Aug 2026 12:00am GMT
14 Aug 2026
Planet KDE | English
KDE Ships Frameworks 6.29.0
Friday, 14 August 2026
KDE today announces the release of KDE Frameworks 6.29.0.
This release is part of a series of planned monthly releases making improvements available to developers in a quick and predictable manner.
New in this version
Extra CMake Modules
- ECMAddQtDesignerPlugin: fix typo. Commit.
- Ecm_qtdesignerplugin_widget: fix INITIALIZE_CODE_FROM_VARIABLE been ignored. Commit. Fixes bug #523592
- Add missing doc link for FindKF6. Commit.
- Drop Qt5 CI. Commit.
- Enable gcov-compatible coverage when building with clang. Commit.
- Ecm_create_qm_loader: fix to listen just to language change of app instance. Commit.
KCodecs
- [KEncodingProber] Improve const-correctness. Commit.
- [KEncodingProber] Explicitly initialize some structs. Commit.
- [KEncodingProber] Replace pointer to SMModel with reference. Commit.
- [KEncodingProber] Fix broken UTF16 filtering for MBCS. Commit.
- [KEncodingProber] Fix GB18030 false positive. Commit.
- [KEncodingProber] Extend unit tests, notably for japanese text. Commit.
- [KEncodingProber] Shortcut no longer active group probers. Commit.
- [KEncodingProber] Refactor UnicodeGroupProber. Commit.
- [KEncodingProber] Refactor Unicode/UTF prober. Commit.
- [KEncodingProber] Clean up comments and naming for MB mapping. Commit.
- [KEncodingProber] Make one virtual base method pure virtual. Commit.
- [KEncodingProber] Remove obsolete padding in state tables. Commit.
- [KEncodingProber] Replace debug printf with categorized logging output. Commit.
- [KEncodingProber] Add dedicated logging category. Commit.
- Remove obsolete doxygen file. Commit.
KConfig
- Remove unused variables in KConfig implementation. Commit.
- Revert "kwindowstatesaverquick: Do not force-show windows". Commit. Fixes bug #522205
- Add test for KConfigLoader ctor that takes KConfigGroup. Commit.
- Use Qt for ASCII && alphanumeric detection. Commit.
- Read config files in system locations before user-writable config files. Commit.
- Add tests to document status quo. Commit.
- Kreadconfig: Add option to dump default values. Commit.
- Kreadconfig: Dump entries sorted by group name/entry key. Commit.
- Don't change immutable non-default entry when setting default entry. Commit.
- Add failing tests demonstrating wrong behavior. Commit.
- Add helper to set/override an environment variable for a test. Commit.
- Remove obsolete doxygen file. Commit.
- Always insert deleted key into internal map. Commit. Fixes bug #519481
- Ensure that deleted default entries are deleted. Commit.
- Fix generated setters for enum options with UseEnumTypes. Commit.
- Export StandardAction as Q_ENUM_NS. Commit.
KConfigWidgets
- Kviewstatemaintainer.h: provide version macros to consumers. Commit.
KCoreAddons
- Kdirwatch: fixme++. Commit.
- Kdirwatch: sven--. Commit.
- Kdirwatch: typo--. Commit.
- Kdirwatch: use certified KDE if style with {}. Commit.
- KDirWatch: fix/tweak determination of default. Commit.
- KDirWatch: expose additional verbosity as envvar. Commit.
- Don't let fromAppStreamFile() modify the application data. Commit.
- AboutData: Add support for AppStream URLs. Commit.
- Documentation fixes. Commit.
- AboutData: Improve fromAppStreamForApplication() usability. Commit.
KDav
- Use CardDAV allprop in multiget address-data. Commit.
- Make sure network replies are parented to the corresponding job. Commit.
- Add some debug to DavPrincipalSearchJob. Commit.
- Add a DavSslUiProxy to allow plugging user interaction for SSL errors. Commit.
- Network: Setup more strict network policy. Commit.
- Davitemmodifyjob: Fix redirection. Commit.
- Davmanager: Add missing doctype to sent XML. Commit.
- Adapt tests. Commit.
- Port network management from KIO to QNAM. Commit.
- Add fetching DavPush data in DavCollectionsFetchJob. Commit.
- Enums.h: provide version macros to consumers. Commit.
KDE Daemon
- Use correct type for desktop file. Commit.
KFileMetaData
- Autotests/ossfuzz: clone libpng from github to fix unreliable sourceforge downloads. Commit.
- Fix overflow in extractAudioProperties. Commit.
- Taglib: Protect against UnknownFrame. Commit.
- CI: Disable linux-qt6-next while the datetime regression gets fixed. Commit.
- Types.h: provide version macros to consumers. Commit.
KGlobalAccel
- Remove obsolete doxygen file. Commit.
KIconThemes
- Add notes to drop dependency on KWidgetsAddons for KF7. Commit.
KImageformats
- Autotests: add AVIF and JXL with animation. Commit.
- KRA/ORA: merged in a single plugin and added metadata support. Commit.
- Readme: update supported formats. Commit.
- Test Readme: added JPG support. Commit.
- Avif: enable decoding of files with invalid EXIF metadata. Commit.
- Autotests: allow JPG as test source. Commit.
- QOI: check format only in lowercase. Commit.
- Ossfuzz: optimize build, collect all HEIF subformats. Commit.
- Fix HEIC writetest. Commit.
- Ossfuzz: enable uncompressed codec in libheif. Commit.
- Heif: declare read support for HIF. Commit.
- EXIF: add support for Windows Explorer tags. Commit.
- Heif: increase Maximum number of child boxes limit. Commit.
- HEIF: keep reader callback table alive. Commit. Fixes bug #523105
- More HEIF-related tests. Commit.
- Heif: AVCI saving, JPEG in HEIF read support. Commit.
- IFF: support for ZIP compressed RGFX. Commit.
KIO
- UDSEntry: properly mark deprecated, add missing since, fix doc formatting. Commit.
- WorkerBase: give connectWorker and disconnectWorker back, deprecated. Commit.
- Kfileitem: iconName make sure not to read settings unless nessary. Commit.
- Knewfilemenu: minor refactoring. Commit.
- Kfileitemactions: remove dead code. Commit.
- Kfileitemactions: Correctly count actionsMenu actions. Commit.
- Kfileitem: iconName, allow to read .directory files on remote files. Commit.
- KFileItem: UDS ID changes are not detected in cmp. Commit. See bug #485052
- KProcessRunner: Handle canonicalPath() returning bogus values. Commit.
- Knewfilemenu: convert m_popupFiles into a single QUrl. Commit.
- Fix clang compilation warnings. Commit.
- StandardThumbnailJob: stamp the device pixel ratio on generated thumbnails. Commit.
- Knewfilemenu: remove unnecessary qDebug comments. Commit.
- Knewfilemenu: minor fixes. Commit.
- Knewfileinfo: add Antti Savolainen in copyright. Commit.
- Knewfilemenu: determine sort order during parsing and fix supportedMimeTypes. Commit.
- Test FilePreviewJob::emitPreview output size and device pixel ratio. Commit.
- FilePreviewJob: regenerate a cached thumbnail that is too small. Commit.
- Kdirlister: hold three directories in the lister cache, and not for long. Commit.
- UDSEntry: do not look for a shared value where values cannot repeat. Commit.
- UDSEntry: size an entry for the fields it holds when loading it. Commit.
- Kfileplacesmodel: when baloo is disabled don't go anywhere near it. Commit.
- UDSEntry use two vectors to store fields value. Commit.
- Kfilewidgettest: use the QPointF QDragEnterEvent ctor on Qt 6.12+. Commit.
- KDirModel: ignore stale listing completion for a directory no longer in the model. Commit.
- KFilePlacesView: cap the icon size by the real row height. Commit.
- Kioworkers/file: Restore ACL writes in FileProtocol::chmod(). Commit.
- WidgetsAskUserActionHandler: show the SSL error dialog on the GUI thread. Commit. Fixes bug #519614
- Knewfileinfo: add parsing fallbacks. Commit.
- Knewfileinfo: convert QString url to QUrl and QString filePath to QFileInfo. Commit.
- KUrlComboBox: mark drag properly as copy-only. Commit.
- KUrlNavigatorButton: Stat with no-auth-prompt. Commit.
- KIOGui: avoid QtConcurrent module header include, do link Qt6::Concurrent. Commit.
- CopyJob: cache the destination filesystem type instead of re-probing per file. Commit.
- KIOCore: drop unused Qt6::Concurrent linking. Commit.
- Threadconnectionbackendtest: ensure to have a context passed. Commit.
- File: strip local host from file:// URLs before accessing the path. Commit. Fixes bug #483297
- KCoreDirListerCache: don't adopt duplicated entries from a changing dir. Commit.
- Filewidgets: KUrlNavigator: fix applying URLs when text is not actually a relative path. Commit.
- Kioworkers/ftp: Claim that root dir is writable during stat. Commit.
- KUrlNavigator: Insert buttons at the correct place. Commit.
- Autotests: cover the DropIntoNewFolder drop plugin. Commit.
- Filewidgets: DropIntoNewFolder: do not tie folder creation to the plugin lifetime. Commit.
- SocketConnectionBackend: skip the resume read when the socket is closed. Commit.
- SocketConnectionBackend: limit the resume read workaround to Windows. Commit.
- SlaveBase: take a connection backend instead of socket addresses. Commit.
- ConnectionBackend: keep payload-reassembly length out of the shared Task. Commit.
- ConnectionBackend: rename closeSocket() to close(). Commit.
- ThreadConnectionBackend: drop the unused worker back-pointer. Commit.
- Autotests: add ThreadConnectionBackend unit test. Commit.
- Core: run in-process workers over ThreadConnectionBackend, not a socket. Commit. See bug #342056
- Core: add ThreadConnectionBackend for in-process workers. Commit.
- Core: make ConnectionBackend an abstract transport with a socket backend. Commit.
Kirigami
- Clickable link OverlaySheet QML type. Commit. Fixes bug #522348
- FormEntry/FormAction (cards): fix items alignments. Commit.
- FormGroup/flat: Consider also invisible items for implicitWidth. Commit.
- Fix tst_menudialog not actually doing anything. Commit.
- Make the GlobalDrawer correctly size to its contents again. Commit.
- Sensible height for license sheet. Commit.
- FormEntry: don't show invalid leading ind trailing icons. Commit.
- FormEntry: fix the subtitle when the contentITem doesn't have an indicator. Commit.
- Default to small size in FormAction. Commit.
- Same default width that kirigami-addons form has. Commit.
- Port AboutItem to the new form layout. Commit.
- FormEntry: items don't fill the width by default. Commit.
- ScrollablePage: Fix enter animation running when changing focus. Commit. Fixes bug #515811
- Work around missing support for QKeyShortcut in shortcut. Commit.
- Icon: use QUrl::toLocalFile() for file: URL sources. Commit.
- Icon: keep the aspect ratio of portrait images with roundToIconSize. Commit.
- PlatformTheme: Only emit color changes if color actually changes. Commit.
- Icon: snap the aspect-preserving painted size to device pixels. Commit.
- Autotests: fix flaky keyboard list navigation test. Commit.
- Autotests: fix flaky test_defaultFocusInScrollablePage. Commit.
- NavigationTabBar: add scrolling/shortcuts for tab switching. Commit.
- ToolBarPageHeader: Rephrase page.actions check to make more sense. Commit.
- Make qml generation deterministic by adding explicit dependencies. Commit.
- Port application template away from deprecated ki18n API. Commit.
- Controls: Guard against re-setting the global header with the same URL in Page. Commit.
KTextEditor
- Vi-mode: Avoid redundant BLOCK in the status bar. Commit.
- Vi-mode: Fix synchronization of the view block selection. Commit.
- Vi-mode: Fix block insert with tabs. Commit. Fixes bug #488801
- Drag pixmap: use devicePixelRatio of highest screen device pixel ratio. Commit.
- Drag pixmap: adapt hotspot to pixmap scaling. Commit.
- Vi-mode: Add Ctrl-A command to insert mode. Commit.
- Vi-mode: Implement column cursor swap for v-block mode. Commit.
- Vi-mode: Update view selection when switching modes. Commit.
- Vi-mode: Fix switching to vblock mode from another visual mode. Commit.
- Vi-mode: Simplify switching to visual modes. Commit.
- Vi-mode: Add the Date command. Commit.
- Vi-mode: Fix cursor position after paste in insert mode. Commit.
- Vi-mode: Fix cursor position after pasting block. Commit.
- Vi-mode: Fix AltGr detection on Windows. Commit.
- Renderer: Small refactoring of paintCaret method. Commit.
- Renderer: Fix drawing of all the cursor styles. Commit.
- Change icon for search plugin display options. Commit.
- Fix animation artifact during animation run. Commit.
- Avoid initial draw. Commit.
- Cleanup more painting. Commit. See bug #522525
- Cleanup render hint setting. Commit.
- Ensure we abort completion on config changes. Commit. Fixes bug #521492
- Vi-mode: Fix count-paste of a block. Commit.
KTextTemplate
- Consider non-empty generic containers "true" as well. Commit.
- Turn scriptable tag support in a plugin, as originally intended. Commit.
- Use QLocale for currency value formatting. Commit.
- Don't hardcode ISO date/time format. Commit.
- Token.h: provide version macros to consumers. Commit.
- Out-of-line the ScriptableTagLibrary destructor. Commit.
KUserFeedback
- CI - Flatpak - Update Runtime to 6.11. Commit.
KWallet
- Drop kwalletmanager launching from kwalletd. Commit.
- Move org.freedesktop.secrets group to KConfigXT. Commit.
- Ksecretd: Drop unused functions. Commit.
- Ksecretd: Drop registering KWallet interface. Commit.
- Use correct internal function to query local wallet. Commit.
- Port to KConfigXT. Commit.
- Drop code for writing default wallet in kwalletd. Commit.
- Query NetworkWallet and LocalWallet from backend. Commit.
- Fix localWallet with external backend. Commit.
- Kwalletd: Remove config fallback for networkWallet(). Commit.
- Actually set ok to true when defaultCollection succeeds. Commit.
- Drop unused internal pamOpen from kwalletd. Commit.
- Drop dead screensaver integration. Commit.
- Kwalletd: fix use-after-move in retrieveCollection() returning null on first lookup. Commit. Fixes bug #522847. See bug #512135
- Kwallet-query: persist writes to new entries. Commit. Fixes bug #491898
KWidgetsAddons
- KColorCombo: support d'n'dropping colors to set the color. Commit.
- KColorButton, KColorCombo: add contextmenu for Copy & Paste of color. Commit.
- KColorCombo: fix missing render update on changing color from code. Commit.
- Split off KColorMimeData copy into separate file, for shared internal usage. Commit.
- KColorButton: mark drag properly as copy-only. Commit.
- KUrlLabel: fix default value of useCursor flag to match docs & used corsor. Commit.
- KAssistantDialog: Merge "next" and "finish" buttons. Commit.
- Allow to test if on last visibile page. Commit.
- KColorButton: use chained constructor calls over duplicating logic. Commit.
Oxygen Icons
- This icon might be needed in the future and setting kinda ask for it but the name is kinda off as its bout x11 apps. Commit.
- More cleanup. Commit.
- Cleaning up an old icon not very svg. Commit.
- Missing icon on system settings. Commit.
- One more symbolic icon. Commit.
- More versions and better visibility. Commit.
- Some applets use these. Commit.
- Better contrast. Commit.
- New versions scale better simpler code. Commit.
- Remove dangling actor symbolic link. Commit.
- Missing symbolic potential icon. Commit.
- More icons. Commit.
- Missing icon on symbolic I think. Commit.
- The remaining sizes. Commit.
- Further improve Tokodon artwork. Commit.
- Will do for now, smaller versions will actually have to be simplified. Commit.
- Work in progress. Commit.
- This link should not be needed ita a bug on the nm applet not requesting the symbolic variant AFIK. Commit.
- Improved contrast on dark bg. Commit.
- More icons sizes that were missing. Commit.
- Improved version less noise. Commit.
- More versions and improvements. Commit.
- New symbolic icon. Commit.
- Improved version after testing. Commit.
- Symbolic version. Commit.
- Missing icons on juk. Commit.
- More sizes for juk. Commit.
- One more size. Commit.
- New app icon. Commit.
- 16x16 version. Commit.
- 22x22 version. Commit.
- Minor fixes to previous commit. Commit.
- Another icons and replacing an old one based on the new icon. Commit.
- Still not fully convinced. Commit.
- Missed this one. Commit.
- Remaining icons sizes missing. Commit.
- Missing icons and bug fixing. Commit.
- Missed this one. Commit.
- Icons: enforce current-color-scheme style id across applet SVGs. Commit.
- Fixing minor bugs. Commit.
- Final version. Commit.
- And more progress ...WIP. Commit.
- More progress. Commit.
- Different direction. Commit.
- Minor fixes to kamoso icon, introducins a new one for testing. Commit.
- More osd icons. Commit.
- DrKonqi icon for try. Commit.
- Updated info. Commit.
- New size. Commit.
- Osd symbolic icons initial commit. Commit.
- New symbolic icon. Commit.
- Unintentional deletion. Commit.
- New icons. Commit.
- Symlink for kontacts. Commit.
- New symbolic icon for use in system-try. Commit.
- Add IM user online icon. Commit.
Syntax Highlighting
- Don't do a reload on language change. Commit. Fixes bug #523233
- Slint: Include upstream changes. Commit.
- RTF: Fix unbounded context stack growth. Commit.
- Cmake.xml: update syntax for CMake 4.4. Commit.
- Fix listening for language changes, just react on the app instance event. Commit.
- Update MIME types for shell scripts. Commit.
- Meson: add meson.options to recognized extensions. Commit.
- M3u: add m3u8 as one possible extension. Commit.
- Cpp: Add qmqlintegration macros from Qt 6.5. Commit.
14 Aug 2026 12:00am GMT
13 Aug 2026
Planet KDE | English
What a real LTS looks like: Kubuntu 26.04
Last year, Plasma developers canceled the long-term support (LTS) version of Plasma. Why?
We had a few reasons:
- Almost nobody was using it; really only Kubuntu. Other discrete-release operating systems like Debian and openSUSE Leap generally ignored it.
- It wasn't a real LTS; we only backported some fixes for Plasma, and nothing for the Frameworks it was built upon, nor the Gear-aligned KDE apps it shipped with.
- Our backporting of fixes was fairly blind since there weren't CI resources to validate them, and nobody ever felt like testing them manually.
As a consolation prize for canceling the Plasma LTS product, we decided at the time to add an additional bug-fix release to the normal Plasma schedule, effectively lengthening the support period for each non-LTS Plasma version by 2 months - from 4 months to 6.
And as a result, there have been no Plasma 6 LTS versions.
…Until now!
Plasma 6.6 is now an LTS version. And not just Plasma 6.6 itself, but also a specific version of KDE Frameworks: 6.24, which will also receive backported bug-fixes. And Gear 25.12, too!
What changed?
It wasn't a change to my or anyone else in KDE's opinion of what a proper LTS product looks like. Rather, it was the Kubuntu Focus company stepping up to fund the creation of one, as announced today!
That's right, Kubuntu focus is sponsoring a Plasma 6.6 LTS product for the next three years!

This consists of a couple of pieces:
First of all, Kubuntu Focus is sponsoring Techpaladin Software to fix bugs identified by Kubuntu 26.04 users. (full disclosure: I'm the CEO of Techpaladin Software). We're not just backporting bug-fixes that happen to get made, but rather actively working with the Kubuntu folks to identify and fix pain points experienced by them and their users.
Plasma 6.6 will thus remain eligible for bug reports for the next three years, and we'll do our best to get them fixed and backported.
Speaking of which, we'll be backporting fixes for more than just Plasma 6.6 - relevant ones will also to Frameworks 6.24 and Gear 25.12, the versions that Kubuntu 26.04 ships with. The whole KDE part of the software stack!
Finally, Kubuntu Focus is sponsoring additional continuous integration resources owned by KDE e.V. to handle the load of validating changes made to these older versions. And they've been generous enough to sponsor more than was strictly speaking needed for the initiative, so KDE in general benefits from faster CI times even for non-LTS work!
We're calling the whole thing the "Bullet-Proof KDE Initiative".
This is what a real LTS initiative looks like, folks: people involved with an OS putting the resources into making a non-LTS upstream release into an LTS one, properly. With bug fixes - not just security fixes - backported to all levels of the software stack, not just the top one.
So I predict Kubuntu 26.04 promises to offer the best KDE experience of any Kubuntu release ever!
I know a lot of folks really enjoyed Kubuntu's 24.04 release because of how it lined up with Plasma 5.27, which we made an LTS release for an extended period of time during the Plasma 6 transition. Well, this is the same thing, only with a great version of Plasma 6 included, and supported for even longer!
Aha, so you're a sell-out who changed his opinions about LTS due to money!
My opinion remains the same: I don't dislike LTS products - only fake ones that promise support but don't actually deliver it. With this initiative, users of Kubuntu 26.04 get a real LTS product, with real support backed by a pair of commercial companies.
So this is all a commercial thing? KDE gone korporate?
It's largely a commercial initiative between Kubuntu Focus and Techpaladin Software, yes - though KDE e.V. has signed off on the initiative and agreed to accept funding for the new CI resources.
Both companies are good citizens in the KDE ecosystem: KDE e.V. patrons, employers of engineers you've heard of, and providers of hardware and services to users of KDE software.
And the benefits accrue far beyond just the companies. Obviously Kubuntu 26.04 users benefit, even those who didn't buy a computer from Kubuntu Focus. And as I mentioned earlier, all of KDE now has more general-purpose CI resources. Also, many of the LTS bugs that Techpaladin people have already fixed were affecting people on later Plasma versions, too! Everyone wins here.
So the commercial part is not a limitation on what anyone else gets for free or is allowed to do; it's just an acknowledgement that creating a real LTS product costs money.
Wow, really cool! How can I help?
Anyone in the wider KDE community who's interested in this kind of thing should feel comfortable backporting important and safe bug-fixes to the stable branches for Plasma 6.6, Frameworks 6.24, and Gear 25.12. There will be a Kubuntu CI runner that makes sure nothing breaks (at least, nothing that's tested in the CI! So keep that test coverage high).
And if you happen to run discrete-release OS and would like to get in on the action, feel free to ship Plasma 6.6 and invest some of your own resources into it! It will be very welcome to see more people fixing bugs reported by LTS users that are still present on master, or backporting more recent bug-fixes to the LTS version. Again, everybody wins here!
13 Aug 2026 6:10pm GMT
12 Aug 2026
Planet KDE | English
Weeks 9 & 10: Multi-Select and Mobile Selection Mode
Over the last two weeks, I worked on adding multi-select support for deleting multiple entries at once. It sounded like a straightforward feature at first, but it ended up leading me down an interesting debugging involving an asynchronous race condition.
Multi-Select with Ctrl+Click and Shift+Click (!44)
KeepSecret now supports the standard multi-selection behavior users expect from desktop applications. You can Ctrl+click to select or deselect individual entries, and Shift+click to select a range of entries. I also updated the right-click behavior so that if you right-click on an unselected entry, it becomes the current selection first.
Another improvement was simplifying the delete logic. Previously, deleting a single entry and deleting multiple entries followed different code paths. Now both actions share the same implementation, making the code cleaner and easier to maintain.
While working on this feature, I also fixed a few small UI issues. The entry details panel would sometimes open unexpectedly after a right-click, occasionally close when it shouldn't, or remain visible even after the selected wallet had been deleted. These edge cases are now handled correctly.
The Race Condition
Deleting multiple entries at once would sometimes fail with a confusing libsecret-CRITICAL error and a "Could not retrieve the secret value" message. The problem was inconsistent-it could happen with the first item or with one of the later items.
I first checked a few possible causes, like stale proxy-model indices and timing issues between deletion and model updates. Eventually, I found the real problem.
When an item was loaded, it also started an asynchronous request to fetch its secret. But the delete operation could run before that request finished. If the item was deleted first, the callback would later try to access an item that no longer existed.
Since we don't need the actual secret value when deleting an entry, I changed the loading process to skip that unnecessary request. This removed the race condition instead of trying to work around the timing issue.
Mobile-Friendly Selection Mode (!46)
I added a touch-friendly version of the desktop multi-select feature. Long-pressing an entry enters selection mode, where checkboxes appear and tapping entries toggles their selection. It reuses the existing selection logic, so the Delete Selected Secrets action works without any changes.
Nate Graham also suggested that this pattern could eventually be useful as a reusable component for other mobile apps. Marco Martin is testing the long-press behavior on a touch device next, since it currently also gets triggered by clicking and holding with a mouse.
12 Aug 2026 11:46am GMT
11 Aug 2026
Planet KDE | English
Keep your community afloat with the right defense tokens
My favorite tabletop game of all time is Star Wars: Armada, a Star Wars themed ship combat wargame.

Armada has many deep and tactically interesting features, but one of my favorites is the unique suite of defense tokens available to each spaceship to protect itself against attacks, from among the following six options:
- Scatter - the attack is completely canceled. "I wasn't where you were shooting"
- Evade - cancel an attack die at long range, or re-roll one at short and medium range. "I dodged your attack, so it missed or became a glancing blow"
- Brace - halve the damage. "Ouch, you hit me! But it wasn't as bad as it could have been"
- Redirect - move some damage to an adjacent hull zone. "You hit me, but not where I was weakest"
- Contain - downgrade a critical hit to normal damage - "My damage control efforts turned the potential catastrophe into just a normal crisis"
- Salvo - return fire. "You hit me, but I hit back"
There's way more information here for people whose military nerd curiosity has been piqued.
Anyway, this is well and good for games about spaceships, but what's the relevance? Let's imagine that we humans have these defense tokens, too. And today I'd like to talk about how they relate not to physical attacks, but interpersonal ones.
You negligent fool! You nit-picking jerk!
Someone has blindsided you with unexpected criticism! The monkey brain sees this as an attack:

Imperial Star Destroyer by topcat at Wallpapers.com - https://wallpapers.com/wallpapers/imperial-star-destroyer-hus8fir1xr6vldsn.html
Red alert! Shields up! All hands to battle stations! Your blood pressure rises. You see red and gear up for a fight:

Bull Image from FreePNGimg.com
And what's the most satisfying defense token to use? Salvo, for sure. Hit back:
Oh yeah, that's pretty rich coming from you given how you messed up that other thing last week!
The angry email. The "call-out" social media post. The sharp reply on chat. The hyper-critical blog post. They feel good, right?
But Salvo doesn't actually avoid any damage. in Armada, if you Salvo every attack, your ship explodes, with the only other effect being that the attacking ship gets hurt too - usually a lot less.
From the perspective of minimizing interpersonal friction in a group setting, Salvo is the worst defense token. It didn't end the conflict created by this unexpected criticism; in fact, now the conflict is bigger and louder, because the criticizer has also gotten hurt. Other people may leap to their defense, or yours, and pretty soon the battle lines are established. What started as a community soon feels like a war zone.
Redirect isn't great, either; in a community context it's basically blame-shifting, which similarly doesn't prevent any damage; it just moves it around, and the community still suffers.
Neither is is not what we want for our community if the goal is to remain friendly and welcoming!
Prevent and reduce damage
If we want to keep our ship flying community alive, we need to prefer the defense tokens that prevent or reduce damage:
- Scatter: prevent conflicts in the first place by meeting expectations, being mindful of other people's feelings, and maintaining your relationships.
- Evade: notice impending conflicts and help make them fizzle out early. Be humble.
- Brace: mend fences and fix problems so the conflicts that do erupt shrink over time.
- Contain: keep conflicts localized to the participants, and prevent them from spiraling out of control. Don't let drama spill out into the larger team or the whole organization - or heaven forbid into the media! Accept valid criticism and let others have the last word.
These social defense tokens are harder and less satisfying to use than Salvo and Redirect. But over the long term, they do a much better job.
Which brings us to KDE
Today I think KDE is known as a pretty friendly place. And when I look around, I see a lot of examples of people - consciously or unconsciously - using defense tokens in their interpersonal relationships that reduce harm rather than moving it around or sending it back.
It's not perfect, of course. We all mess up sometimes. And a culture like this takes years to develop. But I think the strong social bonds between contributors inside KDE are self-evident, and represent a significant part of the organization's success today.
So I want to congratulate KDE and encourage us all to keep it up! I know times are tough and a lot of things in the world feel like they're exploding, or getting ready to. Things suck more than they should, and there's always more we can do to improve it. But as long as we maintain our relationships with one another, it becomes a lubricant that makes all those things so much more possible to survive or achieve.
11 Aug 2026 9:46pm GMT
KEcoLab Sprint 26
I participated in the KEcoLab sprint held from May 27th to May 28th at the KDAB office in Berlin. It was my first time being at a KEcoLab sprint, I have mostly been an online participant before this so it was nice to meetup with both Karan and Joseph and work together in person. I also got to meet Carl Schwan and Volker Kraus.
Day 0
I arrived a day early by an overnight train around 7 am. I couldn't check in to the hostel before 3pm so decided to explore the city instead.
I explored the area around Alexandrplatz and got some nice photos, more of that will be covered in my next blog about Berlin.
I met up with Karan and was able to check in a bit early. We had Vietnamese Pho for lunch.
Later at evening me and Karan met with Joseph and he showed us around. We visited Tempelhofer Feld and Joseph also treated us to a nice Turkish dinner.
Day 1
We met at the KDAB office at 10am to start the sprint. We started the day by fixing the RDP connection. Recently we have been unable to maintain a reliable RDP connection with the remote lab, we required someone to be present in the lab to help us establish access. We restarted the SUT (System Under Test) and tried to establish a connection again when we found out we were prompted by a dialog box to allow remote connection. This isn't an ideal situation for a remote lab because this permission is reset on reboot. We found that the solution to the exact issue we were facing was already solved by Harald Sitter through this patch to XDG desktop portal. We ran the commands in the patch and tested it few more times to confirm it was working reliably.
Next we started working on setting up the 2nd SUT which was generously donated by Cornelius to KDE.
Unfortunately the PC refused to post. As soon as it was turned on it would produce 6 loud beeps. The pc we had access to was a Fujisu Esprimo p510 85+ with 4gb of ram and an Intel core i5 using AMI Aptio 4.6 Bios.
We tried to debug the issues by removing the ram sticks one after another but the beep was still audible and the frequency remained constant. We tried multiple different cables as well to rule out a faulty display cable. Point to note, the CPU fan during this time would be at full throttle and the usb ports were also not getting power.
We also tried replacement ram sticks that folks at KDAB had but it didnt solve the issue. Replacing the CMOS battery also didn't help.
As last ditch effort, we removed the CPU fan and tried to boot the system (the system was immediately switched off once the beeps started so roughly 2s uptime) to see if the beeps would still be persistent but it was still present although we did find the reason why the fan was running at full throttle, the thermal paste was completely dry.
Going by the manufacturer's documentation, 6 beeps presents itself as "Flash update is failed", searching online didn't give us a viable solution and since the usb ports were not working reflashing the bios was also out of question.
We ended the day by shifting our focus towards generating a new Okular Measurement Report for the Blue Angel Certification. We were also interested in seeing how much energy consumption would have changed since the first report. Our Season of KDE 26 mentee Hrishikesh Gohain had worked towards this. There were few changes we needed to make to run the pipeline successfully. We tested them locally first on our laptops and once it passed successfully, we ran the script overnight and that was our last task of Day 1. Following was the pipeline that was run.
At the end of the day, we visited c-base, berlin. It was a nice experience and we were also lucky to visit the members only spaces and got a whole tour of the place by one of the members. Aferwards we all went to a nice Azerbaijanish place.
Later me and Karan spent the rest of the night exploring Berlin on a lime scooter. Suffice to say, Berlin at night is quite a beaut!
Day 2
We started the day by checking the report generated by the pipeline we ran last day. We had unfortunately run into the following error.
Error in performanceData$HDDRead + performanceData$HDDWritten : non-numeric argument to binary operator
We then looked into running the setup locally on our laptops to debug the issue. We found out that when stopping the pipeline before completion, it results in the intermediate data being overwritten instead of the files being deleted on a fresh run which resulted in data corruption and hence the error. We fixed that with 64, 18 and 16 patches and ran the pipeline again.
Next we focused on brainstorming ideas about the workflow to measure the Plasma Desktop Environment. We were initially thinking about using the second PC for measuring it due to security reasons but since we were unable to set up the 2nd server we had to shift our plans. We also got some nice inputs regarding this from Volker. Following points were discussed
- No root access to user files for test user.
- In a standard usage scenario, PC would run for approx. 8 hours -> this was used to determine the baseline, standard usage scenario and idle modes for the plasma testing.
- Testing different snapshots of Plasma against regressions in new releases -> maybe even KDE Linux can be a good candidate.
- How to run the daemon from the pipeline without root permissions.
- Password stored as gitlab secret and given permission to owners (or maybe don't require a password).
- Switching to a newer set of hardware long term.
- Testing plasma on older hardware and modern hardware -> for ex. video playback.
- Cleanup of the existing hardware -> for ex. monitor is not needed.
Afterwards we reviewed the open issues, submitting patches for the active bugs and closed those that had already been resolved.
We then went through the report generated by the pipeline and unfortunately found out that the readings were too inaccurate and had way too much divergence in measurement values as compared to the initial report generated for Blue Angel certification. (We are allowed at max 10% increase for Blue Angel Certification).
We found out that there were several startAction and stopAction pairs missing from the script which was causing irregular measurement readings. These actions are used to generate the csv files and the R script is particularly sensitive to these labels which explains why the readings were so wildly inaccurate. So we ran the script again and checked it afterwards the sprint. There were still some issues encountered later on but they were resolved by Joseph and we got a new report for the Blue Angel Certification.
We were also joined by Koleesch who traveled from Postdam for the evening session of the KEcoLab sprint.
While we still had the following day to explore Berlin, it was our last night in the city. Karan and I spent it with Carl Schwan at Tempelhofer Feld before taking one final late night walk through the streets.
Day n/n and Final Thoughts
I had a late night train back to Marburg so me and Karan first spent the day exploring the German Musuem of Technology, it was very big and had so many artifacts describing the history of Berlin and Germany throughout the years. We were'nt able to visit the entire musuem since Karan had an early flight back to Geneva but we were able to go through the Railway and Aviation section. Regardless to say I was mesmerized. Later on I also visited Berliner Mauer and the area surrounding it.
I enjoyed my time in Berlin and huge thanks to KDE e.V for making it possible by sponsoring my travel and stay, and to KDAB and Volker for providing the office space for our sprint.
11 Aug 2026 6:20pm GMT
Adding voice chat for Mankala
Hi everyone! This week we added voice chat for Mankala.
For Mankala, our goal was to elevate the player experience by adding real-time voice chat. We have already added text chat using XMPP, and to make this experience better, voice chat is a much better option to add.
Mankala relies on the XMPP protocol for matchmaking and text chat using the opponent and player XMPP IDs, respectively. I took KDE's own chat application in reference: Kaidan, to implement Jingle (XEP-0167)-the XMPP extension for media sessions and connect it using an audio processing pipeline. After that, I designed the UI for this voice call to connect, accept, and decline calls with sync in UI and XMPP.
How voice is being implemented
I used the QXmpp library to handle the Jingle signaling and designed a C++ class, VoiceCallManager, which controls all the call sessions. This manager listens for incoming Jingle requests and establishes the peer-to-peer connection.
// VoiceCallManager.cpp
void VoiceCallManager::initializeManager() {
auto* callManager = m_client->findExtension<QXmppCallManager>();
// Listen for incoming XMPP Jingle calls
connect(callManager, &QXmppCallManager::callReceived,
this, [this](QXmppCall* call) {
m_activeCall = call;
m_remoteJid = call->jid();
m_isCallActive = true;
// Notify the QML frontend that a call has started
emit callStateChanged();
emit remoteInfoChanged();
// Accept the call and set up QtMultimedia audio routing
call->accept();
setupAudioPipeline();
});
}
Challenges faced
It was hard to have Game Window and Jingle work together. To handle this, I exposed the call state-such as isCallActive and remoteJid so that the UI can connect these signals easily, making the call interactive in the layout.
Here is how the QML dynamically reacts to the C++ properties:
// GameWindowLandscape.qml
ColumnLayout {
anchors. fill: parent
// 1. The Standard Text Chat UI
Item {
id: textChatView
Layout.fillWidth: true
Layout.fillHeight: true
// Hide text chat when a voice call is active!
visible: !voiceManager.isCallActive
/* ... text chat UI components ... */
}
// 2. The Active Voice Call UI
ColumnLayout {
id: activeCallView
Layout.fillWidth: true
Layout.fillHeight: true
visible: voiceManager.isCallActive
Kirigami.Icon {
source: "im-jabber"
width: 96; height: 96
}
Text {
text: voiceManager.remoteName
font.pixelSize: 24
font. bold: true
}
Button {
text: "End Call"
icon.name: "call-stop"
onClicked: voiceManager.endCall()
}
}
}
By binding QML components to the VoiceCallManager signals, the UI updates instantly based on the state of the call. After this we have successfully implemented voice and text chat for Mankala.
Thanks for reading :)
11 Aug 2026 3:13pm GMT
10 Aug 2026
Planet KDE | English
Skrooge 26.8.0 released
The Skrooge Team announces the release 26.8.0 version of its popular Personal Finances Manager based on KDE Frameworks.
Changelog
- Correction bug 518796: skrooge-boursorama.py stop to work for some values
- Correction bug 520749: Skrooge can't load skg file after org.kde.Platform update
- Correction: Sources' keys not displayed in settings
- Feature: Keep focus on selection when the current filter is changed
- Feature: New option to choose to currency format (currency or numerical)
- Feature: Better management of deprecated source of download of currencies
We need your feedback
AI support is now available in Skrooge, and this first version is just the start. I'd love to hear about your experience: what works well, what could be better, and any use cases you want to see. Please send your feedback by email.
10 Aug 2026 12:00am GMT
09 Aug 2026
Planet KDE | English
KStars 3.8.4 Released
KStars v3.8.4 is released on 2026.08.09 for Windows, Linux, and MacOS.
For Linux users, it's highly recommended to use the official KStars Flatpak hosted at Flathub.
This release brings major improvements including the World's First AI powered Guider! Furthermore, KStars now ships with an MCP server which enables connection to any LLM for full control. In this release a limited subset of skills have been introduced, and we hope to make the MCP server feature complete by the next release. Additionally, we improved rotator calibration, guide camera streaming support, and scheduler performance with large job lists. We've also fixed dozens of stability issues and added comprehensive tilt correction for mosaic masks. Here are some highlights.
AI Guiding Assistant
Pavan Kumar is our brilliant Google Summer of Code student who spent the summer developing an AI assisted guider. He delivered the AI Guiding Assistant for Ekos, a mount specific predictive guiding architecture that trains custom models for worm gear, harmonic drive, and direct drive mounts. The wizard walks you through system identification protocols, exports training data, and loads trained models for feed forward correction.
The assistant adds a feed forward predictive layer on top of Ekos's existing proportional guiding controller. A one time characterization wizard runs a system identification pass on your mount, and the resulting data trains a small model specific to your mount class (worm gear, harmonic drive, or direct drive). During guiding, a confidence gated controller blends the AI's predicted corrections with the classic proportional fallback, so the system defers to the proven controller whenever its own confidence is low. It runs entirely on device with no cloud dependency and no GPU requirement, does not need retraining every session, and deliberately does not attempt to predict stochastic noise sources like atmospheric seeing.
- AI Guide protocol separated from the wizard UI for better modularity
- Fixed filter models and reworked the system identification protocol and trainer
- Wizard navigation fixed when closing and reopening; export now only includes the latest session logs
- Added button to read offline training instructions directly from the wizard
- Oscillator improvements for better stability during training
- Fixed the fingerprint builder to correctly validate model compatibility across sessions
The AI Assisted Guider is still in experimental stage. Help us by sharing your feedback and exporting logs to us to analyze.
Guide
Andreas R. landed a run of guiding fixes this release:
- Fixed streaming guide mode calibration failures on fast and harmonic mounts. The pulse guard is no longer armed during calibration, preventing "Lost track of the guide star" aborts that starved the AI Guider's system identification run
- Fixed dark guiding (GPG and AI feed forward) in streaming mode by distinguishing between frame prediction pulses from real correction pulses, so the measurement loop no longer starves at the 0.5 s dark interval
- Fixed the AI feed forward block reading declination from FITS headers. OBJCTDEC is a sexagesimal string, but the code was calling
toDouble(), so declination silently stayed 0.0 on every frame. Now reads altitude, declination, and pier side directly from the mount object instead of headers - Added per optical train persistence for Predictive Guiding (GPG) period length, so users switching between worm gear and harmonic drive mounts on the same machine no longer clobber each other's tuned period values
- Fixed the GPG circular buffer losing insertion order after 8192 samples. The read offset (start) was never advanced when the buffer filled, corrupting the chronological sequence and breaking the Gaussian Process training after roughly 68 to 82 minutes of continuous guiding at short exposures
- Fixed guide camera binning not restored from optical train settings on Ekos startup with real hardware. The combo box was empty when
setAllSettings()ran, so the saved binning was silently dropped. Also fixed a false "not supported" detection that compared against the driver's current binning instead of its maximum - Added an "Assume DEC orthogonal to RA" calibration option, which bypasses independent DEC angle measurement when periodic error or backlash causes erratic DEC calibration datapoints, deriving the guide angle solely from the RA axis with DEC forced to a 90 degree offset
Rotator
- Fixed rotator auto reverse detection and added direction parity correction. The wrong direction detector never fired because the PA error tracker was unconditionally cleared before the confirming solve could check it. Now detects reversed rotation, trials the parity flag, recalibrates the offset immediately, and persists the correction only once a retry confirms it worked
- Renamed internal flag to
m_RotatorParityRetriedto avoid confusion with the rotator's own driver level reverse functionality - Exposed the learned parity as a "Rotator direction reversed" checkbox in Align settings (below Flip Policy), so it can also be set manually without touching the driver's ROTATOR_REVERSE switch
- Clear previousPAError when rotator times out or fails, preventing false positive auto reverse triggers
- Fixed false positive rotator wrong direction detection by resetting
m_PreviousPAErrorat key state transitions (successful rotation, mount slew, PA error decrease) - Rotator motion commands are now only sent when necessary, reducing unnecessary chatter
Camera & Capture
- Added simple option for camera warmup instead of requiring users to create a task action for it, so camera sensors can now pre warm before a session starts
- Andreas R. fixed the filter combo not reflecting the selected job in the Sequence Editor. In standalone mode, filter name lookup always returned -1 because
filterLabels()returned an empty list without an INDI connection. Now resolves by name against the combo box contents - Auto default remote directory based on frame type in the capture module: %h/Videos for Video frame type, %h/Pictures otherwise, whenever the field is empty or still holds a previously auto generated %h path
- Fixed an issue where video frame type selections didn't properly disable preview and loop, and set remote directory to a sane value so INDI can successfully write the video file
Scheduler & Observatory Automation
Andreas R. contributed two fixes here:
- Added a wall clock timeout to the guiding stage (reusing the existing CaptureOperationsTimeout setting, default 300s) to prevent infinite retry loops when PHD2 fails to find a guide star, preventing wasted nights on a single target
- Cached .esq file content to eliminate O(N) disk I/O per evaluation cycle. With 80 jobs on a Raspberry Pi, the greedy scheduler was spending 9 to 10 minutes of pure overhead re reading and parsing XML files from the SD card per cycle. The cache is keyed by file path and modification time; XML is still re parsed per call but disk I/O is eliminated
Hy Murveit sped up loading large .esl files by not repeatedly calling currentPositionChanged. A 100 job file now loads in a second or two instead of 40 seconds.
Wolfgang Reissenberger made two scheduler improvements:
- Replaced stderr output with debug log output in the scheduler for cleaner diagnostics
- Changed doubled sequence validation to only emit a warning instead of blocking, allowing setups with multiple cameras to use the same sequence on different targets
Alignment & Mount Modeler
Christian Kemper fixed two solver related issues:
- Fixed solver algorithm selection based on available hints, so constrained plate solves now run faster than blind solves on multi core machines. The
patchMultiAlgorithm()logic now selects MULTI_DEPTHS when a position hint is present and the scale window is narrow enough, MULTI_SCALES otherwise. The 1 Default align profile is now created with sensible bounds so fresh installs benefit immediately - Fixed scale bounds being double widened.
Align::startSolving()andPolarAlignmentAssistant::startSolver()were applying their own 0.8x/1.2x margin on top of the same widening inSolverUtils::prepareSolver(), producing a net [low × 0.64, high × 1.44] window instead of the intended [low × 0.8, high × 1.2]
- Fixed several Sentry and user reported crashes on camera timeout and restart drivers; Focus, Align, and Capture now have consistent timeout behavior
- Salman Naheed added mount model commands for programmatic access
- Andreas R. fixed filter not being reset to Sequence Job filter post meridian flip if the filter was different in Align
- Process JSON alignment data from INDI mounts for improved integration
- When running plate solving manually, reset target position angle and previous PA error, since otherwise they remain forever until successful or another load and slew is called
FITS Viewer & File Handling
- Fixed unwarranted 180 degree rotation when pier side differs from the FITS file used for Load and Slew
- Andreas R. fixed the Statistics panel showing full image stats when ROI is active. When a new image loaded while the selection rectangle was active, the panel reverted to full image statistics and users had to "jiggle" the box to refresh. Now checks whether the selection rect is shown and recalculates the ROI buffer from the new image data automatically
- Christian Kemper fixed a CFITSIO_LIBRARIES typo that was dropping cfitsio from the link line. The variable name was missing the trailing S, silently overwriting the library and causing undefined references at link time for targets that depend only on Qt::Core and cfitsio
Focus
- Added Tilt Correction Advisory to the Aberration Inspector, which computes and displays suggested tilt plate adjustments after autofocus with a mosaic mask. Supports 3 point plates (ETA, Octopi, manual 3 screw) and 4 point plates (TouTek style corner screws). Includes a rear view diagram with color coded points, mode toggle (Relative or Push only), thread presets (M2.5 to M6, Wanderer ETA, Custom), camera rotation dial, and an "Apply to ETA" button that sends corrections directly to Wanderer ETA M54 via INDI
Thomas Nemer fixed two focus related bugs:
- Fixed
Focus::autoFocusLinearandscanStartPospassing measure as weight. Two callsites passedgetLastMeasure()into a weight slot instead ofgetLastWeight(), corrupting the V curve fit and the weights exposed via Focus Advisor - Fixed
Focus::focusOutignoring caller supplied step count. A duplicate assignment was unconditionally overwriting any explicit value, sofocusOut(100)always moved by the UI default
MCP Server (Remote Control)
Thomas Nemer established the MCP server foundation, an in process MCP server inside Ekos that lets external clients drive KStars over JSON RPC 2.0 over HTTP, with bearer token auth and an optional read only token. It includes transport, tool registry, server orchestrator, settings UI, and comprehensive unit tests. His additional work this release includes:
- MCP mount control tool family (12 tools: coords, goto, goto_target, sync, park/unpark, abort, set_tracking, set_track_mode, set_slew_rate, get_slew_rates, set_meridian_flip)
- MCP catalog search tool, which resolves fuzzy or user supplied names ("M42", "andromeda", "polaris") into canonical KStars names for use with mount_goto_target
- Focuser tool family (status, move_absolute, move_relative, abort_move) with a shared device lookup helper
- Image access tool family (image_last_info, image_last_thumbnail) with per camera frame cache
- "Available tools" panel in MCP settings, so operators can see which tools are exposed, what each does, and enable or disable individual tools or entire families via checkboxes
- Unit tests isolated from the real token keychain, so the test suite no longer clobbers the developer's stored MCP credentials
- Silenced Wmissing field initializers warnings in tool registrations
Stability & Bug Fixes
- Ilia Belov fixed a crash when a stale EkosLive dialog response arrives after the dialog was dismissed.
KSMessageBoxis a reused singleton, and buttons of a dismissed dialog stayed as its children; a remote response sent after dismissal clicked a stale button and crashed KStars with SIGSEGV - Andreas R. fixed missing i18n and null check crashes in BuildFilterOffsets: button labels, tooltips, and status text were untranslatable, and several methods accessed
m_BFOModel.item()without null checks - Fixed a crash when building offsets by using showDialog properly
- Made Build Filter Offsets accessible programmatically and via EkosLive
- Set proper unique object names for both Filter Manager and Build Filter Offsets
- Fixed an issue where combo boxes in global config were not getting saved; only write the combo's index when it is populated and has a valid selection
- Fixed -1 corrupting persisted combo settings before device connects. Several combos (guide/CCD binning) are only populated once a device connects, so
currentIndex()returned -1 and overwrote the saved option - Suppress pulses from reaching the mount when disabled
- Mark state as aborted if user explicitly cancels the dialog
- Shut the profile down instead of indefinitely waiting when
checkINDITimeoutfires - Correctly wait for remote drivers and add contribution of all sequence files
Build & Infrastructure
- Attempt to make Flatpak arm64 builds use only 4 cores to work around OOM errors
- Limit Eigen to 4 CPU cores so it can build on the arm64 Flatpak CI runner
- Do not build testing, demos, docs, or Fortran in Eigen
- KStars now compiles with OpenCV 5
- Scarlett Moore added cmake root path env for Snapcraft
Other Improvements
- Extended filter offsets maximum range to 1 million per user request
- Added a script to generate indidrivers.xml
- Fixed wizard state transition when stopped
- Offset is now updated after each solve, with more logging to diagnose future issues
- Guilherme Marçal Silva updated the kstars.notifyrc file
Christian Kemper made three additional fixes:
- Added KSPaths bundle Resources/kstars/ search on macOS, so data files are now found directly in the app bundle
- Corrected DST rule for countries that abolished daylight saving in citydb
- Normalized the country column in citydb to ISO 3166 1 alpha 2 codes
- Replaced the binary citydb.sqlite with a source built TSV format; the database is now generated at build time
09 Aug 2026 12:44pm GMT
08 Aug 2026
Planet KDE | English
About time…
Another missing Oxygen icon, this time KTimer.
The idea was simple enough… its a timer, lets make a digital watch. And having grown up in the 80's my brain obviously went directly to those old Casio watches we all had, wanted, lost, or somehow managed to keep alive for 20 years 







So I started with a very basic shape, mostly trying to get the proportions right, and from there it slowly became more and more of a actual object. The side buttons appeared, the LCD got some depth, the case became more angular, and I spent a frankly unreasonable amount of time trying to make the brushed steel look like brushed steel.
Then came the fun part… all the little useless details.
The light and alarm symbols, the not days of the week but rather running timers
, the branding and of course the very prestigious "kool desktop environment 2026" written across the top. Absolutely essential information at 64 pixels 
The last bit was adding the gear/play element so it reads as KTimer and not simply as the KASIO
watch I apparently wanted when I was 12.
And thats pretty much how these things happen… start with a rectangle, add a few details, remove some, add way too many again, move things around for far too long and eventually decide its an icon.
A k Time well spent… probably. 
Progress on the icon side is coming along nicely.
BTW me and Filip are gona do a presentations together in aKdemy about Oxygen, if you are planing on attending (you should), you know were to find us 
3 respostas a "About time…"
-
I love it. Great work!
-
so detailed. youre like the michelangelo of skeuomorphism
08 Aug 2026 6:34pm GMT
Reworking KSSHAskPass
KDE has a little utility called ksshaskpass that is invoked by SSH to prompt the user for credentials. It can then store them in KDE Wallet so you don't have to type them again next time. The other day I had to set up an elaborate SSH configuration with jump hosts and what not and found that it actually couldn't handle some of the prompts I encountered along the way.
The way an "SSH ask pass" program works is relatively simple: You point the SSH_ASKPASS environment variable to it and whenever SSH needs credentials, it runs that program, passing the prompt (e.g. "user@host's password:") as command-line argument. The program brings up a dialog and/or reads the corresponding password from a database and prints it to stdout. SSH then uses it to authenticate.
Unfortunately, the prompt is just a string, we don't get any metadata for it. The only additional information we might get is the SSH_ASKPASS_PROMPT variable set to "confirm" (bring up a confirmation dialog with no input field) or "none" (just show a dialog while it's waiting for you to press a button on your FIDO dongle). Anything else is just an opaque string.
In order to provide a good user experience we want to know what kind of input it is expecting and what the context of it is: is it asking for a user name (show input) or a password (show bullets)? What is the user and host name so we can store it in KDE Wallet properly? Should we allow storing those credentials in the first place? Maybe it is asking us to confirm the authenticity of the host we're trying to connect to, and so on.
Before touching any of the existing regular expressions, I split the relevant code into a separate library so I could write unit tests for it. This ensures that I don't break one use case by fixing or adding another. It's quite easy to accidentally write a regular expression that's too greedy.
The first issue was the lack of support for the password prompt coming from PAM. Normally, SSH will ask for the password like "user@host's password:" but a connection might instead require server-side authentication where the prompt is coming from the server directly, most likely from PAM, which then looks like "(user@host) Password:". When I failed to reproduce the issue on my laptop running the latest git master build, I noticed that someone had recently added this specific use case. My tests actually uncovered a regression in this change (didn't I just say it's easy to mess up a regular expression?) which I fixed. That reinforced my decision to write some unit tests first. :-)
Next, I noticed a few minor differences between the SSH versions used in Kubuntu 24.04 and 26.04, things like a period here, a colon there, so I added them as well. It now also supports the prompts issued by ssh-keygen, such as "Enter passphrase (empty for no passphrase):".
The biggest usability problem, however, was that when you chose to remember the password but you had a typo or it just changed in the meantime, you were effectively locked out. SSH would ask for the password and ksshaskpass dutifully replied with the wrong answer. The only way to get around this was to open KeepSecret (the successor to KWalletManager) and delete the corresponding entry. Yikes!
As I said before, there's no metadata, we don't know whether it's a first time prompt or asking again after a failure. I therefore made ksshaskpass remember the last prompt string and PID of the parent (likely SSH) process. When the same process asked for the same thing again, we now consider it failed, and bring up the dialog. If you have a better idea or I might have missed something, please tell me! It now also lets you remove stored credentials by unchecking the "Remember" check box. It also no longer shows that checkbox when we failed to identify the prompt string - the checkbox never worked in this case, so it was pointless to show it.
I then went through Bugzilla and was able to resolve a good chunk of the reports in there. The most high profile one was the fact that it used a password dialog when asking for a user name, i.e. the user name was not shown. The reason it used that dialog is to offer the "Remember" checkbox. However, hiding a user name is not very nice, is it? The common password dialog we use isn't really designed to ask just for a user name without a password, so I instead implemented a custom dialog mimicking the look of the regular dialog.
As often, it's the little things, so I hope you will enjoy a better SSH experience in Plasma very soon. A few of the bug fixes I mentioned above have already been released as part of Plasma 6.7 with the larger changes expected to land in Plasma 6.8.
08 Aug 2026 6:53am GMT
Week 9 & 10: Speed Ramp Implementation, MR Opened
This is a weekly update from my Google Summer of Code 2026 project with KDE, improving effect widgets in Kdenlive, a free and open source video editor. Combining two weeks here since the last post covered a lot of ground already.
From research to implementation
Following up from the last post, moved from investigating Speed Ramp to actually building it. The plan confirmed with Jean-Baptiste: reuse Kdenlive's existing keyframe type system rather than free bezier handles, and use KeyframeCurveEditor's per-pixel MLT sampling pattern as the reference for drawing the curve inside RemapView.
Implementation
Four commits, each built clean before the next:
- Added per-keyframe type storage (
m_keyframeTypes), keyed by output position alongside the existing keyframe map. Absent key means linear, so existing projects load unchanged with no migration step - Switched serialization and parsing to MLT's own animation API (
anim_setwith a keyframe type, thenserialize_cut), instead of hand-formatted strings, so the type suffix always lands on the correct keyframe - Added the curve band itself: sampled per pixel from the parsed
time_mapanimation and drawn between the existing input and output rulers. What's drawn is exactly what MLT will play back, not an approximation - Added a Type selector in the remap dialog, starting with a curated list (Linear, Smooth, Cubic In, Cubic Out)
Type

Type

Keyframe types follow their keyframes through drags, clip resizes, and deletion, and are captured in undo/redo alongside keyframe positions.
The curated list, and why
The full MLT keyframe type list also includes Bounce, Elastic, Exponential, and Circular, all of which overshoot outside the 0..1 range. On a time map, an overshoot means source time briefly runs backward, so the clip plays in reverse for a few frames at the keyframe boundary. That could be a real effect some people want, or a confusing artifact for everyone else. Left it out of the curated list for now and flagged it as an open question in the MR rather than deciding alone.
Manually verified
- Existing projects with time remapping load with all keyframes linear, playback unchanged
- Setting a keyframe to Smooth, Cubic In, or Cubic Out changes the curve shape and is audible/visible in playback
- Undo/redo through type changes restores both type and curve correctly, no desync
- Types survive keyframe drags, clip resizes, and neighbor deletion
- Save/reload preserves types; linear-only projects round-trip without gaining type properties
MR opened
Opened MR !928, referencing #2188 and #1454. Pipeline is running. No unit tests added this round since RemapView holds state directly in the widget, not reachable from the existing test harness without splitting the storage out first, noted this directly in the MR rather than skipping silently.
What's next
Waiting on Jean-Baptiste's review, specifically his call on the curated type list question.
08 Aug 2026 12:57am GMT
This Week in Plasma: UI Improvements Galore
Welcome to a new issue of This Week in Plasma!
This week we merged a number of features and UI changes that focus on user-friendliness - in addition to a nice crop of bug-fixes and performance improvements:
Notable new features
Plasma 6.8
If you try to print using a printer that's unavailable, Plasma now helpfully notifies you of this instead of just doing nothing. (Mike Noe, KDE Bugzilla #362143)

Notable UI improvements
Plasma 6.8
Task Manager thumbnails now feature nicer padding around the labels near the top. (Michal Malinowski, plasma-desktop MR #3916)

When creating a new user account, the restrictions around which characters are allowed for the username of the new account are now clearly indicated via warning messages if you try to use invalid ones. (Mradul Pal, KDE Bugzilla #521545)

Kup 0.11.0
Kup now offers an improved set of default exclusions, with a simplified way of toggling them on or off. This should result in much less data being backed up that doesn't actually need to be backed up - like cache files, state files, Btrfs snapshots, and more. (Bharadwaj Raju, kup MR #52)

Notable bug fixes
Plasma 6.6.7
If the xdg-desktop-portal-kde process crashes while it's being used to allow an app to control the pointer and keyboard, control now instantly returns to you rather than getting stuck until the system is restarted. (Marcus Renheim, KDE Bugzilla #523515)
Using a panel's "Floating Applets" feature no longer breaks the ability to drag files onto Task Manager representations of grouped tasks. (Antonio Rojas, KDE Bugzilla #510643)
The Task Manager widget no longer lays out items incorrectly when you rearrange them while the widget is using right-to-left mode. (Christoph Wolk, KDE Bugzilla #504898)
The "Identify Displays" feature no longer shows weird hexadecimal numbers in the labels for some screens. (David Wild and Marco Martin, KDE Bugzilla #523181 and kwin MR #9655)
Plasma 6.7.4
Fixed a UI glitch in the Disk Quota widget. (Nicolas Fella, KDE Bugzilla #523618)
Plasma 6.7.5
Syncing your settings to Plasma Login Manager now includes the ~/.config/plasma-localerc file, which makes the login screen respect your preferred language and time settings. (Nate Graham, KDE Bugzilla #516964)
Fixed or implemented support for the "highlight changed settings" feature for multiple System Settings pages. (Tobias Ozór, kwin MR #9675, KDE Bugzilla #521974, powerdevil MR #660, KDE Bugzilla #521978, and KDE Bugzilla #469914)
System Settings' Spell Checking page no longer erroneously prompts you to save unsaved changes when you navigate away from it without having made any changes. (Antti Savolainen, KDE Bugzilla #521712)
The "OS Version" sensor in System Monitor widgets now works more reliably to handle KDE Linux and other non-traditional operating systems. (David Redondo, KDE Bugzilla #523727)
Plasma 6.8
Fixed a bug in Plasma's built-in remote desktop server that could present certain clients with a black screen instead of the expected content. (Shouvik Kar, krdp MR #222)
Switching between virtual desktops no longer makes the Window List Widget show the wrong window. (Marco Martin, KDE Bugzilla #523409)
The Applet::Index() property in Plasma scripting now actually returns the correct index. (Marco Martin, KDE Bugzilla #523675)
Notable in performance & technical
Plasma 6.8
Plasma's built-in remote desktop server now exhibits less latency and better performance when using less-than-ideal network connections. (Shouvik Kar, krdp MR #190)
Plasma now loads the clipboard pop-up on demand rather than at launch, which saves some memory. (Nicolas Fella, plasma-workspace MR #6899)
How you can help
KDE has become important in the world, and your time and contributions have helped us get there. As we grow, we need your support to keep KDE sustainable.
Would you like to help put together this weekly report? Introduce yourself in the Matrix room and join the team!
Beyond that, you can help KDE by directly getting involved in any other projects. Donating time is actually more impactful than donating money. Each contributor makes a huge difference in KDE - you are not a number or a cog in a machine! You don't have to be a programmer, either; many other opportunities exist.
You can also help out by making a donation! This helps cover operational costs, salaries, travel expenses for contributors, and in general just keeps KDE bringing Free Software to the world.
To get a new Plasma feature or a bug fix mentioned here
Push a commit to the relevant merge request on invent.kde.org.
08 Aug 2026 12:00am GMT
07 Aug 2026
Planet KDE | English
KDE Goals - Last Call For Submissions

Last chance to submit your KDE Goals proposal
The call for submissions for the next KDE Goals cycle closes tomorrow, August 8.
As of the time of writing we've received nineteen proposals, covering a variety of topics like enterprise, gaming, personal well-being, documentation, accessibility, semantic desktops, color management, design, user experience, mobile and more.
Current proposals (by order of submission):
- Better documentation
- Design System for Plasma 1st-Party Styling
- Accessibility in KDE
- KDE for Enterprise and Deployments
- Give more love to little-loved but important KDE apps
- KDE Linux - Pillar of KDE
- Sandbox all the things!
- Improve UX of customization and theming process with 3rd-party content
- KDE Kares
- Improve GUI configuration UX by expanding system settings
- Gaming as a first-class workload
- Plasma: From Window Management to Workflow Management
- Improve color management and HDR support
- Make Plasma smart
- Advanced configuration features hidden from GUI
- Scripting and effect capabilities: Need for review in Get New Stuff
- Seamless Input Accessibility (Onscreen Keyboard, Emoji & Clipboard)
- Language/toolkit-agnostic development
- Prepare Plasma Mobile for Daily Drivability
Join in
If any of the proposals above spark your interest, then by all means join the effort as a co-champion or contributor. And if you don't feel inspired by any, then there is still time to submit your own and champion a new KDE Goal.
Remember that you do not have to be a developer to participate. Read the selection process carefully before you send your proposal. If you have any doubts, join our Matrix room or create a topic at the KDE forum.
What's Next?
Once the submission period is over, we'll move into the refinement phase, where champions and the community work together to polish their proposals and finalize them so they're elligible for voting.
Timeline:
- Call for submissions - June 19 to August 8
- Refinement of proposals - August 9 to August 27
- Voting period - August 28 to September 11
- Tallying & preparation - September 12 to September 18
- Announcement at Akademy - September 19
07 Aug 2026 1:17pm GMT


Deixe um comentário Cancelar resposta
O seu endereço de email não será publicado.