Skip to content

Friday, 10 April 2026

Akademy 2026: Call for Participation

Akademy 2026 will be a hybrid event held simultaneously in Graz, Austria, and online. The Call for Participation is open! Send us your talk ideas and abstracts.

Why talk at #Akademy2026

Akademy attracts artists, designers, developers, translators, users, writers, companies, public institutions and many other KDE friends and contributors. We celebrate the achievements and help determine the direction for the next year. We all meet together to discuss and plan the future of the Community and the technology we build. You will meet people who are receptive to your ideas and can help you with their skills and experience. You will get an opportunity to present your application, share ideas and best practices, or gain new contributors. These sessions offer the opportunity to gain support and make your plans for your project become a reality.

How to get started

Do not worry about details or slides right now. Just think of an idea and submit some basic details about your talk. You can edit your abstract after the initial submission. All topics relevant to the KDE Community are welcome. Here are a few ideas to get you started on your proposal:

  • How KDE can empower building robust communities in changing political climates
  • Work towards KDE's goals: Streamlined Application Development Experience, We care about your Input, and KDE Needs You
  • Giving people more digital freedom, sovereignty, and autonomy with KDE software
  • Advice on how to participate for new users, intermediates and experts
  • New developments/plans for KDE Frameworks, Plasma, Applications and other projects
  • 30 years of KDE: achievements, highlights, and what’s next
  • Anything else that might interest an audience of long-time, new, and potential KDE contributors!

To get an idea of talks that were accepted, check out the program from previous years: 2025 2024, 2023, 2022, 2021, 2020, 2019, 2018, and 2017.

For more details and information, visit Call for Participation.

We're currently working on porting Qt to HarmonyOS. For our CI and developer machines, we need a number of third-party libraries built for HarmonyOS. Cross-compiling open-source C and C++ libraries for this platform has been a manual, error-prone process. Each library has its own build system, whether CMake, Autotools, or Meson. Each needs individual attention to produce correct binaries for the OHOS target. We have been maintaining a hand-written shell script that builds libraries one by one, with per-library workarounds for cross-compilation quirks.

With our vcpkg fork, that script is now a single command.

In my opinion, KDE Connect is one of the finest pieces of software KDE has ever produced. It lets you easily pair your devices and makes them work together. Copy some text on your computer, paste it on your phone. A call comes in and the video you’re watching in your browser pauses. How cool is that? For the past couple of weeks I’ve been working on even tighter integration between KDE Connect and the Plasma desktop.

Plasma’s “Power & Battery ” popup, containing a power profile slider, and three batteries (intenral laptop battery, phone battery, and some other laptop battery)
Battery Monitor displaying status about devices paired wirelessly using KDE Connect

By adding a corresponding back end to Solid, KDE’s hardware abstraction framework, your phone’s battery status will show up in the “Power & Battery” popup just like a wireless mouse would. The key advantage of reporting a KDE Connect device as storage media is that it can show up in various places just like a USB drive would, including the Places panel in Dolphin and “Disk & Devices” in Plasma’s system tray. Right now, the Places panel entry is actually manually added by kdeconnectd creating a bookmark. This also means that any modifications done to the entry, such as hiding it, will be lost once the device disappears. If instead it is a proper Solid device with a unique identifier, the Places panel will remember that the device was hidden next time it is discovered. Additionally, PowerDevil, Plasma’s power management daemon, already automatically issues a notification when a connected external device runs low on battery.

Now that the fact that you can browse your phone’s storage remotely via KDE Connect is more obvious, I spent some time improving the user experience when doing so. Since KDE Connect is cross-desktop and cross-platform it uses sshfs to provide access to the phone. It doesn’t implement a proper KIO worker like we normally would since that really only works in KDE applications. This unfortunately comes with a couple of downsides: for example, the device is mounted into /run/user/<uid>/<deviceid> which is gibberish that will be shown to the user in the address bar. More importantly, though, it makes the file manager think it’s a local path (which is normally fast to access) and could lead to UI freezes when the connection is slow or unstable.

To improve this, I made use of KIO’s ForwardingWorkerBase. This is a tiny KIO worker that just rewrites a URL and forwards it to a different location. This way, the application sees a “remote” kdeconnect://device/path URL and keeps everything nice and asynchronous but under the hood still uses the sshfs infrastructure we already have. It’s what the magic desktop:/ URL uses that parses the name of .desktop files (so your get nice application names) but other than that merely reads from /home/<user>/Desktop. This also makes the entry in the Places panel match up with the URL being browsed and ultimately makes the device’s name appear on the address bar instead of an ugly UUID.

No more gibberish /run/user/somethingsomething URL on the address bar

While at it, I also added a “KDE Connect Devices” link to the “Network” folder, like we already have for Bluetooth, MTP, and Apple devices. Finally, when there is only a single storage location on the device, such as “Internal Shared Storage”, it redirects into it automatically. This saves one click when opening the device and puts you directly where your stuff is. The back end has just been merged and will be released next month as part of KDE Frameworks 6.26. However, since there’s still a bunch of infrastructure work needed around it, the back end is disabled by default. We will likely need to have at least KDE Gear 26.08 and Plasma 6.7 released that will include some necessary changes before we can flip the switch.

If you run latest KDE git builds, please give it a try and let me know what you think! You need to set the SOLID_ENABLE_KDECONNECT=1 environment variable to use it. To enable all debug output to aid debugging, set QT_LOGGING_RULES=kf.solid.backends.kdeconnect*=true or use KDebugSettings.

Friday, 10 April 2026

KDE today announces the release of KDE Frameworks 6.25.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

Baloo
  • Fix remaining QFile::open nodiscard warnings. Commit.
  • [FileIndexerConfigUtils] Fix a nodiscard warning in fixture setup. Commit.
  • [FileIndexerConfigUtils] Remove unneeded QTextStream. Commit.
  • [FileIndexerConfigTest] Get rid of an almost duplicate helper function. Commit.
  • [FileIndexerConfigTest] Reduce repetitions/manual expansion. Commit.
  • [FileIndexerConfigTest] Reduce string puzzles to improve readability. Commit.
  • [FileIndexerConfigTest] Move single-use strings out of header file. Commit.
  • [DocumentUrlDBTest] Remove unused helper function. Commit.
  • [ExtractorProcess] Verify transaction was sucessfully created. Commit.
  • Tell the compiler QFile::open(fd, ...) can not fail for STDIN. Commit.
  • [Query] Use explicit percent-encoding for title and json data. Commit.
  • [QuerySerializationTest] Extend test coverage for disallowed characters. Commit.
  • [QuerySerializationTest] Cover fromSearchUrl/toSearchUrl methods. Commit.
  • [QuerySerializationTest] Make JSON roundtrip test data driven. Commit.
Breeze Icons
  • Duplicate kdesrc-build icon as kde-builder icon. Commit.
  • Remove duplicate/bogous style sheets. Commit.
  • Remove unused path in im-invisible-user.svg that breaks webfont on MacOS. Commit. See bug #499597
  • Add data-question status icon similar to other data-* status icons. Commit.
  • Add nicer 16x16 variant of dialog-question. Commit.
  • Add keyframe-warn. Commit.
  • Resize kmouth, konversation, and kde-im-log-viewer to same height. Commit.
  • Add icon for conic gradients. Commit.
  • Add mask action icons. Commit.
Extra CMake Modules
  • KDECMakeSettings: Disable CMAKE_CXX_SCAN_FOR_MODULES. Commit.
KArchive
  • Fix int overflow + QList assert on broken files. Commit.
  • Generate a pkgconfig file. Commit.
KCalendarCore
  • CI - add pre-commit support. Commit.
  • Use markdownlint-cli2 to format markdown files. Commit.
  • Use gersemi to format CMake files. Commit.
  • Src/filestorage.h - fix a misspelled word. Commit.
  • Clang-format project. Commit.
  • Clean whitespace issues. Commit.
KCodecs
  • We depend against qt 6.8 => we can remove check here. Commit.
  • Propagate C++20 requirement to consumers. Commit.
  • [KEncodingProber] Remove unused/unreachable Reset() method. Commit.
  • [KEncodingProber] Use in-class initialization for prober members. Commit.
  • [Codec] Default constructors/destructors, annotate as constexpr. Commit.
  • [Codec] Simplify codecForName lookup. Commit.
  • [Codec] Benchmark codecForName lookup. Commit.
  • [Codec] Move test class declaration to implementation file. Commit.
  • [Codec] Remove double quote for invalid codec warning. Commit.
  • [KCharsets] Simplify instance singleton. Commit.
  • [KCharsets] Reuse translated strings from encodingsByScript. Commit.
  • [KCharsets] Fix possible initialization race for encodingsByScript. Commit.
  • [KCharsets] Remove unused include. Commit.
  • [KCharsetsTest] Reduce call nesting to improve readability. Commit.
KConfig
  • Kreadconfig: Add flag to include globals. Commit.
  • Kdesktopfile: tolerate nameless action for SEPARATOR. Commit. Fixes bug #517770
  • Remove ifdef now that we depend on Qt >= 6.9.0. Commit.
  • QDoc fixes. Commit.
  • Kreadconfig: Add flag to dump all entries. Commit.
  • Do not try to read registry entries for absolute config file names. Commit.
  • Avoid creation of not already existing registry keys. Commit.
KCoreAddons
  • Remove unused cmake variable. Commit.
KDocTools
  • Dynamically retrieve the list of languages to install. Commit.
  • Install arabic files. Commit.
KFileMetaData
  • ExtractionPluginManager -> ExtractorCollection. Commit.
  • Ffmpeg: use qScopeGuard to release AVFormatContext on failure. Commit.
  • Extractors/exiv2: remove version check for BMFF_SUPPORT. Commit.
  • Ffmpegextractor: when color_space_name is "unkwown" don't set ColorSpace. Commit.
KGuiAddons
  • Waylandclipboard: Wait for up to 1s for the clipboard contents. Commit.
  • Waylandclipboard: Properly interrupt thread when client extension goes inactive. Commit.
  • Remove ifdef now that we depend on Qt >= 6.9.0. Commit.
  • Change include in ksysteminhibitor_dbus.cpp preventing building when using a QT version < 6.9. Commit.
  • Systemclipboard: waylandApp ptr validation cleanup. Commit.
  • Systemclipboard/wlrwaylandclipboard: Fix WlrDataControlDevice::setPrimarySelection. Commit.
KHolidays
  • Update holidays of 2026 for Taiwan. Commit.
  • CI - add pre-commit support. Commit.
  • Use markdownlint-cli2 to format markdown files. Commit.
  • Use gersemi to format CMake files. Commit.
  • .codespellrc - allow "lightening". Commit.
  • Clang-format fixes. Commit.
  • Clean whitespace issues. Commit.
  • Edit portuguese holidays. Commit.
KIconThemes
  • Explain why SVG preference was reverted. Commit.
  • Don't try to create KIconTheme with empty theme name. Commit.
  • Revert "KIconTheme: Prefer SVG files over PNG files". Commit. Fixes bug #516007. See bug #502273
KImageformats
  • TIM: PlayStation graphics read only support. Commit.
  • Remove ifdef now that we depend on Qt >= 6.9.0. Commit.
  • IFF: fix Integer-overflow in IDATChunk::strideSize. Commit.
KIO
  • Kfileitem: isExecutable: rely on QFileinfo. Commit.
  • Revert "KFileItem: use permissions to determine isWritable and isReadable". Commit. Fixes bug #504287. Fixes bug #506472
  • KFileItem: Check desktop MIME type before isSlow. Commit.
  • Widgets: Don't show an error when trying do paste while there is nothing to paste. Commit.
  • Kio_ftp: Enable UTF-8 encoding negotiation after successful login. Commit. See bug #269370. See bug #165044
  • Autotests/openurljobtest: ensure to have deleteLater launched. Commit.
  • Filewidgets/kfileplacesview: clear job in destructor. Commit.
  • Autotests: openurljobtest, prevent memleak in negative tests. Commit.
  • Kpasswdserver: prevent memleak of retry dialog. Commit.
  • Core/kcoredirlister: prevent mem-leak upon redirection. Commit.
  • Filewidgets/knewfilemenu: prevent small leak. Commit.
  • Autotests/threadtest: prevent memleak in test. Commit.
  • KfilePlacesView: delete FileSystemFreeSpaceJob once it is finished. Commit.
  • Krecentdocumenttest: prevent a memleak. Commit.
  • DropJob: parent DndPopupMenuPlugin to the dropjob. Commit.
  • Fix protocol in "Destination" header for WebDAV copy/move. Commit. Fixes bug #487503. Fixes bug #443386
  • Filepreviewjob: Track subjobs using QPointer. Commit. Fixes bug #517867
  • Filecopyjob: Pass source file size to put() workers via setSourceSize(). Commit.
  • Tweak ifdef now that we depend on Qt >= 6.9.0. Commit.
  • Core: listjob: Support selective StatDetails for directory listing. Commit.
  • Gui/filepreviewjob: return an error in case the sub-job failed. Commit.
  • Gui/filepreviewjob: avoid a crash when temp is removed. Commit. Fixes bug #516575
  • File: In LSTAT also stat subvolid and mntid when requested. Commit.
  • Kurlnavigator: Change fallback behaviour for user input url. Commit. Fixes bug #408315
  • Fix some cmake warnings. Commit.
  • Filepreviewjob: allow to log the file being previewed. Commit.
  • Forwardingworkerbase: Forward stat side and details. Commit.
  • Fix build on macOS relating to tv_nsec. Commit.
  • Core/udsentry: don't reduce nanosecond precision to millisecond. Commit.
  • KFileItemDelegate: Use margins directly from style. Commit.
Kirigami
  • Disable Alpine CI. Commit.
  • Disable qmllint for some modules. Commit.
  • PageRow: don't leak the dialog layer window. Commit.
  • Fix AboutPage license sheet. Commit.
  • Remove duplicate FeatureSummary include. Commit.
  • Don't include quiet packages in feature_summary. Commit.
  • TitleSubtitle: Add tweakable textFormat property. Commit.
  • Platform: Prefer filesystem over qrc when determining install root. Commit.
  • LinkButton: Create template, move items from control to template. Commit.
KItemModels
  • Remove unused cmake variabls. Commit.
KNewStuff
  • Use KF6Kirigami, fix cmake variable use KF_DEP_VERSION. Commit.
KRunner
  • Fix cmake warnings (use correct Qt version). Commit.
KService
  • Bump sycoca version after changing the hash. Commit.
  • Extract to variable. Commit.
  • Fix a typo in the bitmask used in the hash. Commit.
KStatusNotifieritem
  • Don't include quiet packages in feature_summary. Commit.
KSVG
KTextEditor
  • Don't do reverse encoding if the target is the null char. Commit.
  • KTextEditor::DocumentPrivate constructor does the register. Commit.
  • Katedocument: Use first line of text as document title. Commit.
  • Katedocument: Add relevant MIME types to Save dialog. Commit.
  • Remove cmake warning. Commit.
  • Update MiniMap Area. Commit.
KUnitConversion
  • Add missing since documentation to Momme. Commit.
  • Add conversions to/from momme for silk fabric weight. Commit.
KUserFeedback
KWallet
  • Fix find_package calls when not building kwalletd and ksecretd. Commit.
  • Hardcode one short DH key instead of brute-forcing one. Commit.
  • Ksecretd: fix intermittent Secret Service session key mismatches with libsecret. Commit. Fixes bug #514194
KWidgetsAddons
  • KMessageBox: Set very long lines to wrap, even on very wide screens. Commit.
  • KAccelatorManager: Avoid unnecessary allocations. Commit.
  • Add test for resizing dialogs with squeezed messages. Commit.
  • Re-enable logic to allow resizing of some KMessageBox dialogs. Commit.
KWindowSystem
  • Kxcbevent_p.h: FWD KXcbEvent as class instead of struct. Commit.
  • Add missing Q_EMIT to signal call. Commit.
  • Platforms/wayland: Fix a crash in WindowEffects::installBlur(). Commit.
KXMLGUI
  • KKeySequenceWidget: Add text to clear button. Commit.
Modem Manager Qt
Network Manager Qt
QQC2 Desktop Style
  • SpinBox: Use displayText for display text. Commit.
  • Popup: remove default contentItem. Commit.
  • Popup: don't clip by default. Commit.
Solid
  • Fstab: Use qCCritical instead of qCritical. Commit.
Sonnet
  • Remove seemingly useless text position check. Commit.
Syntax Highlighting
  • Add highlighting for ISO 10303-21 STEP files. Commit.
  • Cmake.xml: update syntax for CMake 4.3. Commit.
  • Adapt XSD and code to docs. Commit. Fixes bug #517428
  • Fix reading of spellchecking element to match XSD. Commit. Fixes bug #517428
  • Add license. Commit.
  • Add PIO Assembler syntax highlighting. Commit.
  • Add autotest reference file. Commit.
  • Add syntax file and tests for SAS. Commit.
  • Systemd unit: update to systemd v260. Commit.
Final stretch toward the April 23rd release — bug fixes, thanks to contributors, and a call for testers.

Introduction

Another year, another successful Season Of KDE for 20 contributors! This article has been co-written with the input from all contributors.

Lokalize

During Season of KDE 2026, Tanish Kumar worked on cleaning up the UI in Lokalize, KDE’s translation tool. The main task was fixing an annoying bug where the menu bar kept jumping around whenever you switched tabs, which was solved by giving the menus a stable “skeleton” in the KXMLGUI .rc files. Along the way, a bunch of “ghost actions” were discovered - menu entries that existed only in XML - and actually implemented the missing ones like Cut, Copy, Paste, Alternate Translation, Save All, Revert All, and Close All. He also built a Bookmark Manager dialog so translators can see all their bookmarks in one place.

Lokalize menu bar is stable now, no more menus jumping when changing tabs

Navya Sai Sadu and Kumud Sagar fixed navigation inconsistencies in the Editor Tab where shortcuts like “Approve and Go Next” failed to respect active filters and custom ordering in the Translation Units view. They ensured consistent behavior across all related shortcuts, including Next Ready, Next Non-Empty, and Next Bookmark. They unified the traversal logic so navigation always follows the filtered and ordered entries and users of Lokalize can now navigate through Translation Units using the keyboard shortcuts or the options in Go menu properly..

Lokalize translation units view improvements

Additionally, Kumud identified Lokalize’s on-disk file tracking mechanism and began improving its handling of external file updates.

Pop up when opened file in Lokalize is modified by another program

Jaimukund Bhan fixed foundational issues with the Glossary file, ensuring it could be properly loaded, saved, and autosaved, and cleaned up the codebase by removing an obsolete Restore function that no longer made sense once autosaving was in place. Several UI bugs were resolved, including the editor failing to clear when all terms were deleted and incorrect pre-selection behavior when the app started on the Glossary tab. In the second half, Jaimukund improved the manual term addition workflow by replacing silent blank entry creation with a proper dialog prompt, preventing accidental accumulation of empty entries. He also fixed a broken keyboard shortcut for switching to the previously active tab by replacing an index-based tracking variable with a widget pointer, which remains valid even as tab positions change.

Window to add a new word in glossary

Aditya Sarna made a full Figma redesign for the Glossary tab, which was referenced in several places to implement comprehensive UI and UX improvements. The work involved close collaboration with translators to understand user pain points and iterating on designs based on feedback from the design group. It included replacing button text with icons and adding tooltips to the Add and Delete buttons to clarify their purpose. This was followed by designing a new delete functionality, which introduced a cross button for each entry to make deletion more intuitive. Several additional UI changes were implemented, including shifting elements and improving the overall structure and layout of the Glossary tab. Furthermore, the workflow for adding new terms was refined by moving note text into the dialogue box and enhancing its layout, resulting in a cleaner, more intuitive and user-friendly interface.

Figma redesign for Glossary tab

Varun Sajith Dass worked on improving the proofing capabilities of Lokalize and implemented a reactive character consistency check that alerts translators in real-time when special characters are mismatched between the source and target strings. This involved debugging Qt UI signals, resolving macOS build issues with KIO workers, and creating a persistent status bar warning system to enhance the overall translation workflow.

Testing the reactive consistency checker in Lokalize. In the highlighted translation unit (Row 11), a special character present in the source string (the colon in 'Origin: %1') is intentionally omitted from the active target translation ('Herkunft %1') to evaluate the mismatch detection logic

Vishesh Srivastava worked on adding Appium-based UI testing to KDE’s Lokalize. Vishesh started with a small bug fix and unit test to familiarize with the codebase and then built a complete Appium test from scratch, including basic tests and a full end-to-end workflow. Another thing done was adding accessibility ids in the UI so Appium could interact with the editor. The tests were integrated into the CMake system, ensured they ran independently of the user, and can run with kde-builder tests with a flag. By the end, Vishesh had developed a functional UI testing framework for Lokalize, along with documentation to help future contributors.

Workflow test running using appium in Lokalize

KDE mentorship website

Advaith Sathish Kumar project was transforming mentorship.kde.org into a proper onboarding system for new KDE contributors. On the homepage, the hero section was redesigned, placeholder routing with experience based navigation was replaced, social media links were added, and the news cards to include author, date, and tags were also redesigned. For the /mentees page, I added past mentee details, implemented pagination, and added client-side filtering by year, program, and technology.

Addition of the previous mentees details

Aryan's project was to make mentorship.kde.org better so that new contributors who want to work with the KDE ecosystem have a better onboarding experience. As part of this effort, a new "/programs" page was added. It gives a structured overview of the main KDE mentorship programs and links to help newcomers find their way around the opportunities more easily. He also changed the card template to better organize the repository, making it more structured, easier to maintain. Aryan also filled the /resources page with more useful resources for new contributors.

Addition of the programs page to mentorship website

Documentation website

Mohit Mishra worked on decoupling the bundled dblatex fork from the docs-kde-org repository and fixing PDF generation for Chinese, Japanese and Korean (CJK) languages for KDE documentation. This involved switching the TeX engine to XeTeX from pdfTeX and then re-integrating the KDE styles. The outputs are now nearly identical, with CJK languages rendering correctly as well. There is still work in process to ensure there are no regressions and we can officially switch to this generation.

CJK pdf rendered with XeTex

Scripty

Aviral Singh and Keshav Nanda worked on fixing KDE's translation tools so translators can easily locate where text belongs in the code. Keshav corrected the underlying logic to make sure these paths are always accurate, and Aviral built an automated testing system to validate the fix across KDE projects.

Marknote

Siddharth Chopra worked on Marknote to add source mode for notes. The Source Mode essentially allows users to bypass the rich-text WYSIWYG interface and directly edit the raw markdown. While working on this feature, Siddharth also made a major refactoring of the codebase (on both the QML and C++ sides). Spell checking using Sonnet was also added, among other small fixes and improvements.

KDE Eco

Hrishikesh Gohain worked on setting up KEcoLab's measurement environment with Wayland on Fedora 43 KDE Plasma Desktop. He ported the Okular measurement scripts from the X11-based xdotool to ydotool and kdotool, which work on both X11 and Wayland. His contributions can be found in this merge request. The original project plan had included measuring the KDE Plasma desktop environment itself. However, porting the Okular scripts to Wayland in the new lab setup turned out to be more complex than expected. Moreover, measuring a desktop environment may need some infrastructure changes to the KEcoLab setup. Hrishikesh is currently working towards it and will continue after SoK26 is over.

Measurement script for Okular

Automate Promo Data Collection

Chuyen Nguyen wrote automation scripts and created environments for them to perform some of the KDE promotional team's insight data collection tasks. The first script collects KDE's X, Bluesky, Mastodon, and Threads accounts' follower and post counts using a mix of API requests and web scraping methods alongside a local Nitter instance. The second script scrapes the KDE subreddit's Reddit Insights page for weekly metrics on page visits, unique visitors and its total member count and includes a Docker image that allows for headless execution. The final script collects articles related to KDE using Google Alerts emails and performs sentiment analysis on them using a locally run large-language model. The figure below shows output from the follower and post count scraper, Reddit Insights page scraper, and Google Alerts evaluator respectively.

Terminal output of the different results of the scripts

Plasma Setup

Onat Ribar worked on bringing Plasma Setup, KDE's first-run setup wizard, to Plasma Mobile. Plasma Setup was built with desktop screens in mind, and running it on a phone showed overall accessibility issues including but not limited to overlapping components, content clipping on short window sizes, session buttons that remained tappable beneath wizard pages, and a timezone selector built around an interactive map that was nearly unusable on a small touchscreen. Onat worked through these systematically across the wizard's QML UI, resulting in an adaptive experience across screen sizes and input methods without affecting the desktop UX. Two MRs have been reviewed, merged, and are now part of the upstream codebase in repositories plasma-setup and plasma-workspace.

Setup Wizard for Plasma Setup

Falkon

Sairam developed a XMPP extension that adds a chat client directly into the KDE Falkon browser's sidebar. Written in Python using Slixmpp, the project lets users message each other and run interactive WebXDC apps right inside their chat window. It supports modern XMPP features like Message Carbons (XEP-0280) for device syncing, Message Corrections (XEP-0308) for edits, Emoji Reactions (XEP-0444), and HTTP File Uploads (XEP-0363). This setup turns Falkon into a communication tool without even leaving the browser.

XMPP Support in Falkon through WebXDC

J Shiva Shankar added XMPP bookmark syncing to the Falkon browser. The basic setup is working, so whenever you add or update a bookmark, it successfully syncs across your devices. Deleting bookmarks still has a few bugs right now, but they have been documented. He plans to keep contributing after SoK to squash these bugs and get the feature completely polished.

Bookmarks synchronization in Falkon

Mankala Engine

Sayandeep Dutta helped in redesigning the MankalaNextGen GUI with Kirigami and added designs fixing the Main UI and the Game with game boards and shells. He also added music with Qt to Mankala and made translations in Tamil and Hindi. Made assets for the game variants using Krita in their traditional designs and motifs. Started with the review process of MankalaNextGen with the CI build.

Bohnenspiel Board

Pavan Kumar enhanced MankalaEngine by adding an opening book and investigated performance of multithreaded alpha-beta search using OpenMP, Pthreads and Taskflow. In addition, he enhanced MankalaNextGen by creating visual assets for game boards and seeds and also created logos for MankalaEngine and MankalaNextGen.

New MankalaEngine logo

Thursday, 9 April 2026

Very technical post, feel free to ignore if you're not working on KDE stuff.

Since I'm on KDE Linux, I use flatpak apps for pretty much everything, such as Kontact suite. I wanted to test out how my Breeze changes would look like in KMail and other apps, but I didn't want to build the whole PIM stack.

Here's how I tested it by building the flatpak-kde-runtime in CI, downloading the built files and using it as a repository for testing any changes to org.kde.Platform locally.

  1. First make changes to the flatpak-kde-runtime, such as this here: https://invent.kde.org/packaging/flatpak-kde-runtime/-/commits/work%2Fakselmo%2Ftest-breeze
  2. Run the CI
  3. Check the pipeline ID for build-runtime-amd64
    • Click the green checkmark, its something like #1210828
  4. Download the artifact from here: https://storage.kde.org/ci-artifacts/packaging/flatpak-kde-runtime/p/PIPELINE_ID_HERE/repository-x86_64.tar.gz
  5. Extract the tar into some folder after downloading
  6. Add it as a repository: flatpak remote-add --no-gpg-verify kde-platform-testing ./repo-x86_64
  7. Uninstall the current platform: flatpak uninstall org.kde.Platform --force-remove
    • The force-remove makes sure we do not install any apps, just the platform
  8. Run flatpak install org.kde.Platform
  9. Select the kde-platform-testing as the repo to install from
  10. Done!

Now any app that uses the version of platform (6.10 in my example) will utilize your custom built one.

Akademy 2026: Registration

Akademy 2026 will be a hybrid event held simultaneously in Graz, Austria, and Online.

Hundreds of participants from the global KDE community, the wider free and open source software community, local organisations and software companies will gather at this year's Akademy 2026 conference. The event will take place in Graz and Online from Saturday, 19 September to Thursday, 24 September.

KDE developers, artists, designers, translators, users, writers, sponsors and supporters worldwide will meet face-to-face to discuss key technology issues, explore new ideas and strengthen KDE's innovative and dynamic culture.

Register now and join us for engaging talks, workshops, BoFs and coding sessions. Collaborate with your fellow KDE contributors to fix bugs, pioneer new features and immerse yourself in the world of open source.

For more information about the conference, visit the Akademy 2026 website.

The Skrooge Team announces the release 26.4.0 version of its popular Personal Finances Manager based on KDE Frameworks.

Changelog

  • Correction bug 515099: Missing secondary currency value in Accounts totals
  • Correction bug 514649: Fix initial layout when splash screen is not displayed
  • Correction bug 514649: Double click issue on table when there is no selection
  • Correction bug 438967: Labels in Skrooge Report axis and Legend tend to illegible
  • Correction bug 517475: Alarms triggering even when conditions not met
  • Correction bug 515186: Import should remember the directory used last when restarted
  • Correction bug 430245: summaries display truncated after searching in Operations grouped by Category
  • Correction bug 518461: charts missing in responsive monthly report
  • Correction: Better filtering in categories page
  • Correction: Fix various error in flatpak mode (import, download sources, ...)

Wednesday, 8 April 2026

Qt 6.11 brings a set of meaningful improvements to the Qt GRPC library, focusing on stability, safety, performance, and new capabilities that make building gRPC™ based applications in Qt more powerful and productive.