Skip to content

Friday, 24 April 2026

As an exception to my usual posts, this time I’ll write about a feature that’s already released. Since Plasma 6.6, you can enable automatic brightness in the display settings… let’s take a look at how it works, and why it took so long to make it happen.

The hardware

This is where the problems start - most laptops unfortunately don’t come with a brightness sensor, and there’s effectively no monitors that have a built-in sensor either (let alone one that can be accessed by the connected PC).

While it’s possible to buy or build a brightness sensor that connects via USB, brightness control for external monitors usually has limitations in how often we can safely adjust the brightness… So for quite some time, there was noone working on Plasma that had the combination of hardware, motivation and knowledge to do something about it.

Luckily, the Framework Laptop 13 comes with a brightness sensor, so on the hardware side I was all set:

Framework 13

The software

Making automatic brightness do something is easy, but making it work well enough that you actually want to use it is a very different story.

My first approach was to assume brightness of the display should scale linearly with environmental brightness. I tried this, and it was sort of usable, but just not good enough. There’s three problems with it:

  1. the brightness setting sadly does not linearly control display luminance. 0% is generally not “off”, and sometimes firmware or drivers make the curve non-linear to make the brightness more “intuitive”
  2. in order for automatic brightness to be easy to use, we can’t expect the end user to configure an equation for their system. We need to automatically detect what they’re doing, and configuring two parameters based off one brightness slider is a challenge
  3. the best brightness curve isn’t necessarily linear. Depending on your personal preferences and how reflective your display is, you might want to keep brightness a lot higher in bright environments than in dark ones, or vice versa.

So a different approach was needed. I looked a bit at other operating systems for inspiration, and from the UX side I definitely wanted to copy Android: You use the brightness slider however you want, and the system should try to replicate what you do on its own. On the implemtation side however, I only saw claims that it uses machine learning, so that wasn’t exactly helpful.

Ultimately, what I settled on is pretty simple: We just store 6 sensor values, one per 20% brightness step. When processing sensor readings, KWin finds the matching brightness setting by linearly interpolating between the two closest sensor values.

final brightness curve

When the user touches the brightness slider or uses the brightness shortcuts, KWin adjusts the curve so the current sensor value will result in that desired brightness setting. At first, I only made it adjust the two closest points and enforce the rest of the curve to be monotonic, but it ended up causing problems:

full brightness issue

With this configuration, any sensor readings above 100 lux - for example, 101 - resulted in 100% brightness. To fix that, we now enforce a minimum difference of at least 1 lux or 10% between control points, so the curve above would look more like

full brightness issue fixed

To ensure the curve would always stay strictly monotonic and so you can have an arbitrary backlight setting at zero lux, values below zero also had to be allowed when updating the curve with those constraints.

However, I was still not done. While it now followed my preferences pretty well, it was still annoying! Especially if you sit in between a light source and the laptop, or if you sit on a train with trees around the tracks (like I recently did, traveling to and from Graz for a Plasma sprint), the brightness constantly fluctuated up and down.

To make it less annoying, I added some more adjustments on top:

  • some hysteresis. As long as the sensor reports ±10% of the last value, KWin should do nothing
  • a time delay before changes get applied. If after two seconds the sensor value is back in that 10% range, the brightness stays unchanged
  • a much slower animation for reducing display brightness (but not that much slower for increasing it)

This is how it was released in Plasma 6.6, and I’m pretty happy with it on both the Framework 13 and on my OnePlus 6 with Plasma mobile.

What now?

Just because I’m happy with it, doesn’t mean it’s done. If you’re using automatic brightness and it’s still annoying you for some reason, please tell me about it! If you’re really happy with it, I won’t complain about being told that either of course ;)

To fully catch up to what phones have done for years though, one feature is still missing: I’d like to adjust not just the brightness, but also the white point of the display to the environment. Unfortunately, none of my devices have a sensor for that… but since the camera module in the Framework 13 is easy to replace, I hope that changes one day!

As many long running projects, Qt too over the years has accumulated some APIs that in hindsight are deemed unsafe or sub-optimal. For example, Qt by default implicitly converts const char* to QString. While that usually only incurs a runtime overhead, maybe encoding problems, but also admittedly less cluttered code, there’s other APIs that can backfire in more subtle ways. One such API is doing a “context-less connect”.

Signals and Slots are a core principle of Qt that make it super easy to connect one object to another and keep a certain separation of concerns. The typical syntax to establish an connection is:

connect(sender, &Foo::somethingHappened, receiver, &Bar::doStuff);

This connects the signal somethingHappened in our sender of Type Foo to the member function doStuff in our receiver (context object) of type Bar. Whenever sender “emits” somethingHappened, doStuff on receiver will be called. The neat part about Qt connections is that when receiver gets destroyed, the connection is severed automatically. However, you can not just connect a signal to a member function but also use a lambda:

connect(job, &WallpaperFinder::wallpaperFound, [this](const QString &path) {
    m_wallpapers << path;
});

In our hypothetical wallpaper selector when the “job” that goes looking for wallpapers found one, it emits a signal and tells us the path of the file, so we can show it to the user. Now what happens when the user closes the dialog (which then gets destroyed) before the job has finished? Well… job still emits the signal which then results in our lambda being called. And then we try to access m_wallpapers on this which is long gone. Boom!

The fix is easy: provide a “context object”, too, just like you would with pointer to member function:

connect(job, &WallpaperFinder::wallpaperFound, this, [this](const QString &path) {
    m_wallpapers << path;
});

If this gets destroyed, the connection is severed, our lambda will no longer be called and all is well. The receiver object also decides what thread the slot is called, i.e. it will be called in the thread the receivers “lives in”. Context-less connections are always of DirectConnection type. Since Qt 6.7 you can actually enforce the use of a context object by defining QT_NO_CONTEXTLESS_CONNECT.

add_definitions(-DQT_NO_CONTEXTLESS_CONNECT)

It requires you think about the lifetime of your objects more and make a conscious decision about what your context object is. It also removes one thing to look out for in code review. I started adding this option to a couple KDE repositories to improve the quality of our code and I encourage you to do that, too! It probably comes to no surprise that in general, the bigger and older a repository, the higher the probability of it using non-ideal code.

What context object to use?

Of course, the situation is not always as simple as our example above. Here’s a few tips and tricks:

  • Look at the lambda captures. If you capture this, chances are, you want this as your context object.
  • If you capture a single object, perhaps you want it as your context object rather than this. If you use the sender, too, that’s fine, capture them both:
    connect(job, &Job::finished, manager, [job, manager] {
    manager->report(job);
    });

    When the sender gets destroyed, evidently the connection is useless and will be severed.
  • You can try to avoid capturing this by doing an init capture, i.e. [foo = m_foo] { ... }
  • Perhaps you don’t even need a lambda and can just connect to the method directly. Lambdas are so ubiquitous that you tend to forget you could just replace
    connect(job, &Job::finished, [timer] {
    timer->start();
    });

    with:
    connect(job, &Job::finished, timer, &QTimer::start);
  • At last, you may also use the sender as context object.
  • A context object must be a QObject, though. If you don’t have one, you’ll have to find another way. For instance, QObject::connect returns a QMetaObject::Connection object that you can store in a member variable and then disconnect when appropriate, like in your destructor.
  • For connections where it doesn’t really matter qApp can also be an option.

I’m a huge fan of QT_ENABLE_STRICT_MODE_UP_TO that lets you turn on most strictness features in a single shot. The biggest hurdle of rolling that out more widespread in KDE repositories is actually the Java-style iterators. Qt hates them, many use them, particularly for mutating a container, and imho they’re much more pleasing to look at than STL algorithms. If you start a new project, however, do consider setting your baseline to be as strict as it can be!

I’ll be vacationing a bit, so there will be no web review next week. It means the next one might be a double issue though, we’ll see.

Anyway, let’s go for my web review for the week 2026-17.


Inside GitHub’s Fake Star Economy

Tags: tech, social-media, github, scam

People are manipulating vanity metrics to attract VC money? Who would have expected? This is so unsurprising, I don’t even understand why people look at those…

https://awesomeagents.ai/news/github-fake-stars-investigation/


Anthropic’s Claude Mythos Launch Is Built on Misinformation

Tags: tech, ai, machine-learning, gpt, copilot, security, hype

More in depth look at the launch white paper and the issues covered in the PR. Not much survives scrutiny… there’s nothing special with this model.

https://www.artificialintelligencemadesimple.com/p/anthropics-claude-mythos-launch-is


AI adoption will accelerate the e-waste crisis

Tags: tech, hardware, ai, machine-learning, gpt, ecology

One of the dark sides of our industry, and this is is accelerating at a worrying pace. Maybe it’s time to look at and fix the whole hardware life cycle?

https://restofworld.org/2026/global-ewaste-crisis/


LLM pricing has never made sense

Tags: tech, ai, machine-learning, gpt, copilot, business

Indeed, and it’s going to get even crazier at some point. I guess somewhat soon but who knows…

https://anderegg.ca/2026/04/22/llm-pricing-has-never-made-sense


Highlights from Git 2.54

Tags: tech, git, version-control, tools

Nice quality of life improvements for the history rewrites. That said, I’m particularly looking forward to the changes in hooks handling, it’s always been a pain to deal with in teams, moving them to config should help.

https://github.blog/open-source/git/highlights-from-git-2-54/


Forge

Tags: tech, git, version-control, command-line, tools

A single CLI tool for any Git forge? This sounds appealing.

https://nesbitt.io/2026/03/13/forge.html


How Hard Is It To Open a File?

Tags: tech, unix, posix, filesystem, security, flatpak

A reminder that path based APIs and security don’t go well together to manage files.

https://blog.sebastianwick.net/posts/how-hard-is-it-to-open-a-file/


Game Devs Explain The Tricks Involved With Letting You Pause

Tags: tech, game, time

Pausing a game is not as simple as it sounds. There are many approaches to it.

https://kotaku.com/video-game-devs-explain-how-pausing-works-and-sometimes-it-gets-weird-2000686339


What Async Promised and What it Delivered

Tags: tech, asynchronous, complexity

Interesting piece which gives some perspective on the path which led to async/await. It seems to omit some pieces of the history to me but that’s a minor issue. I like how it points that it indeed led to gradual improvements locally for developers writing their functions, but is overall leading to larger issues in the involved ecosystems.

https://causality.blog/essays/what-async-promised/


Box to save memory

Tags: tech, rust, memory

Indeed, the memory layout of your structs can matter. Be it Rust or not, but in the case of Rust the use of Option might give the wrong feel about the resulting layout.

https://dystroy.org/blog/box-to-save-memory/


Lenses in Rust and My Solution

Tags: tech, rust, memory, type-systems

Finer grained borrowing is still something people need in Rust. Here is a potential solution to get them today.

https://lambdalemon.gay/posts/grist-lens


A Field Guide to Bugs

Tags: tech, debugging, funny, satire

OK, I find it funny. That said, there’s a kernel of truth in this piece: there’s clearly a taxonomy of bugs and you better know on what you just stepped.

https://www.stephendiehl.com/posts/field_guide_to_bugs/


“What’s In It For Me” Architecture

Tags: tech, architecture, organisation

Indeed, architecture work is not only technical (what is really?). You definitely need to account for the organisation and the process to actually put the architecture in place. It’s not just about having pretty pictures.

https://frederickvanbrabant.com/blog/2026-04-04-whats-in-it-for-me-architecture/


Good architecture shouldn’t need a carrot or a stick

Tags: tech, architecture, organisation

Architecture work is not only technical, you need processes to put the architecture of a project in place. That said, you can make things easier with standards to smooth the path toward the preferred types of architectures in your organisation.

https://frederickvanbrabant.com/blog/2026-04-17-good-architecture-shouldnt-need-a-carrot-or-a-stick/


In defence of bureaucracy

Tags: tech, engineering, organisation, management, bureaucracy

Clearly, any endeavour which has to scale will need some form of bureaucracy to stay afloat. The art is keeping it to a minimal before it starts to be an end in itself.

https://blog.ploeh.dk/2026/04/20/in-defence-of-bureaucracy/


How to Use One of the Most Valuable Management Tools: Active Listening

Tags: management, organisation, delegation, communication

Interesting insights, or how listening helps finding risk or making sure delegation will go well. It’s indeed also a good illustration that story telling works often betterthan explaining abstract concepts.

https://www.jrothman.com/newsletter/2026/04/how-to-use-one-of-the-most-valuable-management-tools-active-listening/


An asteroid extinguished all the dinosaurs except for birds. Here’s why

Tags: history, biology, science

And this is why… we now have chickens. More seriously it’s a true testament to genetic and behavioral diversity. This is clearly what allowed some species to escape the disaster.

https://www.scientificamerican.com/article/an-asteroid-extinguished-all-the-dinosaurs-except-for-birds-heres-why/


How do we deal with the catastrophe of uninsurability?

Tags: ecology, economics, politics

The insurances are starting to crumble under the risks. Looks like it’s time to do something about it.

https://aeon.co/essays/how-do-we-deal-with-the-catastrophe-of-uninsurability


The commodification of travel

Tags: travel, culture, social-media

Yes, I’m definitely bummed by this behavior as well. Best travel is when you take your time and enjoy the place, definitely not running around to take pictures for vanity reasons.

https://herman.bearblog.dev/the-commodification-of-travel/


re: The commodification of travel

Tags: travel, culture, social-media

Another one on the commodification of travel, it exemplifies what real travel is.

https://thatalexguy.dev/re-the-commodification-of-travel



Bye for now! See you in two weeks.

Chennai FOSS 2026

Earlier this month, on 18th April 2026, I had the incredible opportunity to speak at Chennai FOSS 2026, an event organized by FOSS United. If you aren’t familiar with them, FOSS United is a non-profit foundation dedicated to promoting the Free and Open Source Software ecosystem in India.

About my talk

My talk, titled "Getting started with GUI Design and Music Generation using Qt and C++," was a reflection of my recent contributions to the Season of KDE 2026.

The session shares how I, personally, as a new developer, found my way across one of my favorite projects, Mankala Engine, and started contributing in the Season of KDE 2026. I had shared my work from the Season of KDE, which included updating the GUI using C++ and QML, and also implementing elements like sounds and physics using QT. How developers can make contributions using Kirigami and other QT modules of KDE.

Most contributions are not limited to code, and I also shared the artworks I created for Mankala Engine, as well as my experience being part of Season of KDE 2026.

Here is my session PDF:

I don't like too much text, my session was mostly a live demo :)

Apart from learning about many new topics, which proved helpful to me, I also got the chance to network with other projects and contributors.

Thanks for reading 🚀

References & useful resources

Kubuntu 26.04 LTS Resolute Raccoon is officially released, plus a fresh batch of KDE application snaps land in stable.

Thursday, 23 April 2026

One of the many benefits of going to in-person sprints is you get to see how other people use their computers, and you can learn some workflow tricks from them. Or, you might notice areas of inefficiency and share tips of your own.

This post will be about the latter, on the subject of email.

Because during the sprint, I observed multiple people using email on their laptops in ways that are slow or ineffective:

  • Logging into webmail in a web browser
  • Switching between multiple webmail sites to manage multiple email accounts
  • Clicking on buttons in the webmail UI to delete or reply to messages

If you recognize yourself here, there’s a better way, I promise. 🙂 And I’d like to help you achieve it!

Back in 2024, I wrote about my email workflow and offered some general tips for managing email overload in KDE. I’m going to write more in depth about this topic, today starting with…

Use an email client app.

KDE has one: KMail. If it works well for you, use it! If it doesn’t, use Thunderbird instead, it’s fine. Don’t feel guilty for not using a piece of KDE software. Nobody’s gonna excommunicate you from KDE! I’m officially giving you permission.

Maybe you use an email client on your desktop but haven’t set one up on your travel laptop yet? Well, it’s time!

Because the important part is to consistently use an email client app of some sort. Why?

Way better for multiple accounts

Most of us have 2 or more email accounts. With webmail, this becomes a pain that scales linearly with the number of accounts.

With an email client app, you can manage multiple accounts’ worth of emails in one UI. When all your accounts are managed from one app, your brain doesn’t need to learn and remember multiple UIs, and and opening new email accounts doesn’t scale the mental burden at all.

Faster to use

An email client app lets you interact with emails using learnable and consistent keyboard shortcuts. Processing emails this way is super fast, so you can get done quickly and go back to something useful. Email sucks; life’s too short to waste time on it.

Easier to access

You can access the email client app easily using the Task Switcher, Overview, or Alt+Tab, rather than letting those webmail tabs get buried among your 75 normal browser tabs and 10 pinned tabs.

Easier to leave email mode

Quit the email client app when you want to stop receiving emails.

For webmail, you’re tempted to leave it open in a tab forever, which means to avoid being constantly tortured with email notification, you’ll have to turn them off entirely, so you stop noticing emails when they arrive. This is problematic for the “keep my email open all day” approach where the whole point is being able to action new emails immediately so they don’t pile up.

Using an app that can be turned off also facilitates being a “check email once a day” kind of person, if that’s your jam. Open the app, check your email, action the important ones, delete or archive all of them, then close the app. You can carve out 5-20 minutes for email, be free of email for the rest of the day, and still keep on top of everything!

Using good tools is enjoyable

Imagine trying to manage versions or debug code without git or gdb. It would take ages and the results wouldn’t be as good. Proficiency with these tools makes you feel like a bird soaring above the clouds or a wizard effortlessly wielding powerful magic, not some clod stumbling around in the mud.

Email clients are the same way. Learn powerful tools to bolster your professional skills and feel better about the process of participating in KDE, not just the outcomes.


The Thunderbird email client is the foundation of my email system. In conjunction with other techniques — which I briefly described in the earlier post and will flesh out in more detail over the coming weeks — this is currently my email situation:

Thunderbird email client window showing not too many emails

Those are all of my emails across 5 accounts. Here are just my KDE emails:

As you can see, this is completely manageable. It takes practically no effort to keep it this way, and there’s no feeling of dread when checking emails in the morning. If you’re drowning in email, you can get here too, I promise.

It starts with using an email client. If you aren’t regularly using one yet, it will take some up-front work, and some re-training, but it’s worth it: you’ll spend less time and mental resources on email and more of it on what actually matters — without taking the easy path of neglecting email and being perceived as a person who’s hard to contact or unreliable.

So get started today with KMail or Thunderbird!

Tuesday, 21 April 2026

Krita 5.3.0/6.0.0 is here, and 5.3.1/6.0.1 followed soon after.

Read on for a look at development news and the Krita-Artists forum's featured artwork from last month.

Development Report

Krita 5.3.0/6.0.0 Released!

Krita 5.3.0/6.0.0 has finally been released!

However, some Windows users experienced slowdowns with 5.3.0. After much effort by users and developers trying to track down the problem, it was determined some external apps were triggering slowdowns in Qt Accessibility.

The problem was fixed with a backported Qt patch, and 5.3.1/6.0.1 released.

Fixes in 5.3.1/6.0.1

That release also contains a few other fixes. Resize Canvas's canvas size values no longer become huge after toggling 'Constrain proportions" (bug; change).

On Krita 6, incremental version failing to save and incremental backup freezing Krita (bug; change), and moving or copy-pasting a keyframe doing nothing (bug; change) were fixed. Drag-and-dropping an image no longer crashes on Wayland (change).

5.3.1.1 Released for Android

On Android, 5.3.1 introduced some regressions, which were fixed in 5.3.1.1. Editing a text field on Android 12 or older once again doesn't crash (change), which was related to fixes for the text edit popup covering text and the window panning up when using Text Tool (bug 1, bug 2; change 1; change 2).

Handling stylus buttons of some devices works again, and OnePlus stylus button (F21) is middle click (change 1, change 2), Huawei stylus double-tap gesture (Android key 718) is F25 (change).

Additionally, setting fallback languages has been disabled, as it makes the UI unusably slow (CCbug; change).

On macOS, 5.3.1.1/6.0.1.1 was released to fix an issue with Krita's built-in FFmpeg not working due to incorrect entitlements.

Further Developments

Wolthera has started working on the roadmap goal of improving HDR. In the unstable Krita Next builds, canvas decorations such as the transparency checkerboard, tool outlines, and the color sampler (bug 1, bug 2; change); reference images (bug; change); and the pixel grid (change) in are now displayed properly in HDR.

Luna continues to refine the Selection Actions Bar. An issue where the bar disappeared when toggling selection visibility was fixed (change), it's no longer interactable when covered by the pop-up palette (change), and a toggle for it was added to the selection tools' options docker (change).

Check out the Additional Changes section near the bottom of this post for more development build fixes and improvements.

Community Report

March 2026 Monthly Art Challenge Results

The winner of the "An unforgettable scene – 5 seconds before" challenge is…

Mayhem in 3…2…1 by Elixiah

Mayhem in 3…2…1 by Elixiah

Join This Month's Art Challenge!

For April's theme, last month's winner has chosen "Microadventure", with the optional challenge of using a gamut mask. What might the world outside your door look like if you were one inch tall? Little things you take for granted may no longer seem so small!

This month's featured forum artwork, as voted in the Best of Krita-Artists - February/March 2026:

Working Late at Night (Pikat fanart) by RaitzInk

Working Late at Night (Pikat fanart) by RaitzInk

Happy Dancing Girl by YaMuuS

Happy Dancing Girl by YaMuuS

Gato al aire libre. (Wet paint) by Syn27

Gato al aire libre by Syn27

Digital Collage Artist Using Krita by Deleted_Designs

Digital Collage by Deleted_Designs

Hornet! by desenhunos

Hornet! by desenhunos

Participate in next month's nominations and voting to voice your opinion on the Best of Krita-Artists - March/April 2026.

Krita is Free - But You Can Contribute!

Krita is free to use and modify, but it can only exist with the contributions of the community. A small sponsored team alongside volunteer programmers, artists, writers, testers, translators, and more from across the world keep development going.

If this software has value to you, consider donating to the Krita Development Fund. Or Get Involved and put your skills to use making Krita and its community better!

Krita's mascot Kiki putting money in a piggy bank

Additional Changes

Krita Plus (Stable, 5.3.2/6.0.2 prealpha):

  • Usability: Allow pasting images on the welcome page. (change by Luna Lovecraft)
  • Transform Tool: Make increase/decrease brush size actions work with Liquify. (change by Carsten Hartenfels)
  • Text Tool: Fix crash when activating Text Tool after opening two views on a document and closing the first one. (bug; change by Gregg Jansen van Vuren)
  • Text Tool: Select the text that's created on a new vector layer when the selected layer was raster. (bug; change by Luna Lovecraft)
  • General: Fix brushstrokes briefly freezing in images with large empty areas, by using coarse thumbnails for the Undo History docker. (change by Dmitry Kazakov)
  • Brush Engines: Fix random texture offsets being reset to 0 on every stroke. (bug; change by Dmitry Kazakov)
  • Canvas: Fix part of the canvas appearing transparent after cropping the image. (bug; change by Dmitry Kazakov)
  • File Formats: KRA: Fix importing .kra as layers reversing the layer order. (bug; change by Dmitry Kazakov)
  • Animation Timeline Docker: Select the given layer when selecting a frame. (change by Luna Lovecraft)
  • Animation Rendering: Error out if duplicating a frame fails when rendering frames. (change by Raidon Chrome)
  • Android: Prevent "Application not responding" message on startup by copying assets out of the APK later. (change by Carsten Hartenfels)
  • G'MIC: Fix using a G'MIC filter causing parentheses in layer names to be converted to control characters. Files with these messed-up layer names are unloadable by Krita 6. (bug; change by Dmitry Kazakov)
  • Qt6: Text Properties Docker: Fix clicking on fonts in the fonts dropdown doing nothing. (bug; change by Wolthera van Hövell)
  • Qt6: Text Properties Docker: Fix using tags. (change by Wolthera van Hövell)
  • Python Plugins: Show an error when trying to import the wrong version of PyQt, rather than trying to remove it from Python's path. (bug; change by Freya Lupen)

Krita Next (Unstable, 5.4.0/6.1.0-prealpha):

  • G'MIC: Update to version 3.7.4.1. (change by Ivan Yossi)
  • Layer Stack: Fix unnecessary updating of a layer mask when merging two layers below it. (bug; change by Dmitry Kazakov)
  • Text Properties Docker: Fix popups such as the font dropdown to not be cropped to the containing widget. (change by Wolthera van Hövell)

Nightly Builds

These pre-release versions of Krita are built every day.

Note that there are currently no Qt6 builds for Android.

Get the latest bugfixes in Stable Krita Plus (5.3.2/6.0.2 prealpha): Linux Qt6 Qt5 — Windows Qt6 Qt5 — macOS Qt6 Qt5 — Android arm64 Qt5 – Android arm32 Qt5 – Android x86_64 Qt5

Or test out the latest Experimental features in Krita Next (5.4.0/6.1.0-prealpha). Feedback and bug reports are appreciated!: Linux Qt6 Qt5 — Windows Qt6 Qt5 — macOS Qt6 Qt5 — Android arm64 Qt5 – Android arm32 Qt5 – Android x86_64 Qt5

Monday, 20 April 2026

I recently released version 0.3.0 of my recipe manager application Kookbook – find it in git in KDE Invent or as released tarballs in https://download.kde.org/stable/kookbook/

Changes since last time is more or less “Minor bugfixes and a Qt6 port” – nothing as such noteworthy unless you aim to get rid of Qt5 on your system.

so what is kookbook?
It is a simple recipe viewer that works with semi-structured markdown. More details can be seen in the quite old 0.1.0 announcement

At some point I should do a 10 recipe example collection, but my personal collection is in danish, so I’m not sure it is going to be useful. Unless someone will donate me some handfuls of pre-formatted recipes, I will happily announce it.

Saturday, 18 April 2026

Hello https://planet.kde.org

I am Raresh Rus, https://invent.kde.org/nmariusp , https://www.youtube.com/@nmariusp .

I took part in the KDE Mega Sprint 2026 Graz https://community.kde.org/Sprints/MegaSprint/2026 .

The sprint was from 09:00 - 19:00, Monday 2026.04.06 - Saturday 2026.04.11.
In room HS FSI 1, Inffeldgasse 11, Graz, Austria. In the Inffeldgasse campus of the Technical University Graz (TU Graz).
Building Inffeldgasse 11

We were hosted by the "Grazer Linuxtage 2026" organization. Thank you Kevin Krammer.

I travelled by bus and slept almost all of the time.

The city of Graz has a population of 300,000 and is the second largest city in Austria after the capital Vienna.
Graz has a large number of well preserved pre First World War buildings.
Old building in Graz

More than 20 KDE contributors participated. Including CorneliusS and LaurenzW from the GNOME community.

Before the sprint, I created a youtube video "KDE Mega Sprint 2026 and Grazer Linuxtage 2026 #glt26" https://www.youtube.com/watch?v=56xIRyyFR3c

During the sprint, I did small gitlab Merge Requests.
Some KDE git repositories had the main readme file say that the KDE project can most easily be built using kdesrc-build. I replaced "kdesrc-build" with "kde-builder".
I saw that https://develop.kde.org/docs/getting-started/building was ready to replace https://community.kde.org/Get_Involved/development#Setting_up_the_development_environment . So we did this replacement.

I have edited the flatpak manifest of some KDE GUI apps, such that less files are present in the flatpak package file.

KDE Linux comes with kwrite preinstalled from flathub. I saw that https://github.com/flathub/org.kde.kwrite/blob/master/org.kde.kwrite.json does exist. But this flatpak manifest for kwrite does not exist in the KDE git repository of kwrite and kate.

I have encountered various issues with the licenses displayed in the about dialog of various KDE GUI apps. Scroll issues in license text viewer in Kirigami app. Not correct license being displayed. There are also differences between the license in reuse in the KDE git repository, the license shown in the GUI app's about dialog, the license shown for that app in Discover, apps.kde.org, flathub and snap store.

Also, in reuse, the license of files which come from outside the KDE community for example app icons for VLC and Blender have different licenses in the upstream git repository and in the KDE git repository.
The reuse linter prefers that we use file "REUSE.toml" instead of ".reuse/dep5".

Top issues that I have encountered: I saw Plasma Welcome Center tens of times without reinstalling operating systems or reverting VM snapshots. My hardware laptop took many minutes to start until I have disabled "Intel VMD" from the UEFI firmware screen with advanced settings.

Fedora 44 Workstation and Ubuntu 26.04 use the GNOME desktop, do not have a GNOME desktop X11 session, but I can connect using the Remote Desktop Protocol. See https://www.youtube.com/watch?v=oelT312LqFI , https://www.youtube.com/watch?v=xjfC4GGI7_w

Work is in progress to have these features available also for KDE Linux and the KDE Plasma Wayland session.
The big epics are probably: "KDE Plasma Wayland session - make it possible via command line to change the KDE Plasma Wayland session resolution to arbitrary width and height integer values", "vdagent - make it possible to paste plain text towards KDE Plasma Wayland", "vdagent - make it possible to copy plain text from KDE Plasma Wayland", "RDP server in KDE Plasma Wayland - implement plain text clipboard copy/paste", "RDP server in KDE Plasma Wayland - make it possible to log into KDE Plasma from a RDP client such as xfreerdp".

Toward the end of the sprint, we recorded a youtube video "Conclusions panel KDE Mega Sprint 2026 Graz" https://www.youtube.com/watch?v=eSCXY4nEiWI .

In 2025, the Kdenlive team continued grinding to push the project forward through steady development, collaboration, and community support. Over the past year we’ve found a nice balance between adding new features, bug fixing, polishing the user interface, and improving performance and workflow, with stability taking priority over feature creep.

We relaunched the website with a new content management system, refreshed some content and the design, and restored historic content dating back to 2002. We also strengthened upstream collaboration with the MLT developers and contributed several improvements to OpenTimelineIO.

Here’s a look at what we've been up to and what is ahead.

RELEASE HIGHLIGHTS

As part of KDE Apps, we follow the KDE Gear release cycle, with three major releases each year—in April, August, and December—each followed by three point maintenance releases.

25.04.0

This release added a powerful automatic masking tool and brought the last batch of features from our last fundraiser.

-> Read full changelog

Background Removal

The new Object Segmentation plugin based on the [SAM2][4] model allows to remove any selected object from the background.

OpenTimelineIO

otio

We rewrote our OpenTimelineIO import and export function using the C++ library. Now you can exchange projects with other editing applications that support this open source file format.

Waveform improvements

waveforns

Audio waveform generation got a 300% performance boost, along with a refactored sampling method that accurately renders the audio signal and higher-resolution waveforms for greater precision.

25.08.0

This release focused heavily on stabilization, bringing over 300 commits and fixing more than 15 crashes. Instead of major new features, the effort went into polishing and bug fixing.

-> Read full changelog

Audio Mixer

mixer

We redesigned the audio mixer bringing levels with clearer visuals and thresholds. We also did some code refactoring and cleanup. This change fixes issues with HiDPI displays with fractional scaling.

Markers and Guides

Guides and Markers got a major overhaul this release to improve the project organization.

Titler improvements

This release the titler received some much needed love like improved SVG and image support with ability to move and resize items, added center resize with Shift + Drag, and renamed the Pattern tab to Templates and moved the templates dropdown to it

25.12.0

The focus of this release cycle was on improving the user experience and polishing the user interface.

-> Read full changelog

Welcome Screen

welcome_screen

We added a new first-run launch screen for first time users as well as added a Welcome Screen allowing to easily launch recent projects.

Docking System

We added a new, more flexible docking system that lets you group widgets, show or hide them on demand, and save layouts as separate files that can be shared or stored within projects.

Redesigned monitor

The audio waveform in the Project Monitor got a revamped interface with an added minimap.

THE ROAD AHEAD

26.04

This next release is just around the corner and brings a nice batch of nifty new features like monitor mirroring and animated transition previews, making it much easier to visualize how they will look before applying them. Additionally, dropping a transition onto the timeline can now automatically adjust its duration to match the clips above and below, saving time and reducing manual tweaking.

This feature allows you to mirror any monitor while working in fullscreen mode. It’s especially useful when working with multiple displays or collaborating with others in the editing room.

OTHER NOTEWORTHY FEATURES

  • Change the playback speed of multiple clips at once
  • Import a clip directly from the timeline context menu and insert it at the click position
  • Option to always zoom toward the mouse position instead of the timeline playhead
  • Generate audio thumbnails for sequences

ROADMAP

Our roadmap is constantly being reviewed and updated, and some of the upcoming highlights include implementing the new features in MLT, the multimedia framework which powers Kdenlive. Some exciting upcoming features include 10/12 bit color support, playback optimizations (decoding), and OpenFX support. (Shoutout to a Kdenlive community member for leading this effort). Also expected is a refactoring of the subtitle system as well as continuing to develop the Advanced Trimming Tools.

DOPESHEET

We are currently working on refactoring the keyframing system and implementing a Dopesheet, basically it is a dedicated timeline for managing and viewing keyframes from multiple effects simultaneously. This work will also introduce per-parameter keyframing (currently, once you add a keyframe to an effect, it is applied to all parameters by default). More info can be found in the last status report. This work is made possible through an NGI Zero Commons grant via NLnet.

dopesheet

MICROSOFT STORE

We have been working on enabling and fixing multiple modules in MLT to compile with MSVC allowing us to ship Kdenlive in the Microsoft Store soon. Another advantage is that it will allow to run unit tests on our CI for Windows.

COMMUNITY

Community

NEW CONTRIBUTORS

Currently, the Kdenlive core team is made up of 8 active members, including 2 developers.

In 2025, 38 people contributed code to Kdenlive (including the core dev team and other KDE devs), a truly impressive number! Even more exciting, about half of them were first-time contributors, which is always great. We hope to see many of them continue contributing in the future. On behalf of the Kdenlive team, we salute you all!

List of contributors and commits

Note that these numbers refer specifically to contributions to the Kdenlive application. Other projects such as the test suite and website are hosted in separate repositories and are not included in these figures.

  • 878 — Jean-Baptiste Mardelle (core team)
  • 126 — balooii balooii
  • 109 — Julius Künzel (core team)
  • 60 — Darby Johnston (fundraiser)
  • 26 — Bernd Jordan (core team)
  • 24 — Ajay Chauhan
  • 11 — Eugen Mohr (core team)
  • 9 — Scarlett Moore (KDE)
  • 8 — Yuri Chornoivan (KDE)
  • 7 — Justin Zobel (KDE)
  • 7 — Ron Lee (core team)
  • 6 — Farid Abdelnour (core team)
  • 5 — Josep M. Ferrer
  • 5 — Étienne André (fundraiser)
  • 4 — Kunda Ki
  • 4 — Swastik Patel
  • 3 — Camille Moulin (core team)
  • 3 — Carlos De Maine
  • 2 — Johnny Jazeix (KDE)
  • 2 — Luigi Toscano (KDE)
  • 2 — Nicolas Fella (KDE)
  • 2 — Richard Ash
  • 2 — Side Projects Lab
  • 2 — Xander Bailey
  • 2 — chocolate image
  • 1 — Adam Fidel
  • 1 — Alex Efimov
  • 1 — Edward McVern
  • 1 — Eli George
  • 1 — Helga K
  • 1 — Jack Bruienne
  • 1 — Jonas Endter
  • 1 — Oliver Kellogg
  • 1 — Rafael Sadowski
  • 1 — Steve Cossette

SPRINTS AND EVENTS

AMSTERDAM SPRINT

Amsterdam sprint

In February, part of the Kdenlive core team met in Amsterdam for a short sprint, highlighted by a visit to the Blender Foundation, where we met with Francesco Siddi and he shared valuable insights into Blender’s history and offered advice on product management for Kdenlive. We also attended their weekly open session, where artists and developers present progress on ongoing projects. During the sprint, we discussed and advanced several technical topics, some highlights include:

  • Refining the audio workflow task
  • Developing a proof of concept to improve clip timecode handling
  • Finishing an MLT Framework patch to enable rendering without a display server (needed for Flatpak testing)

BERLIN SPRINT

Kdenlive Berlin

The Berlin sprint was one of our most productive gatherings to date. Most of the team was there in person, and we also connected online with those who couldn’t make it. We discussed just about every aspect of the project, from roadmap planning to upcoming features and workflow improvements. Some of the highlights include:

  • Evaluated the current state of the Titler and discussed possible integration with Glaxnimate
  • Reorganized the Menu structure
  • Developed a proof of concept for using KDDockWidgets
  • Redesigned and started development of the audio clip view in the Clip Monitor

Thanks to the nice folks at c-base who kindly hosted us.

AKADEMY 2025

Akademy

Akademy is always a great opportunity to exchange ideas with the broader KDE and Qt communities. One of the highlights was meeting the maintainer of Glaxnimate, where we discussed common goals and ways to collaborate. This year, Akademy will be in Graz on the 19-24 of September, and we hope to see you there.

SHOWCASE

We’re very happy to see more YouTube channels talking about Kdenlive. Here are some examples of what the community has been creating.

We'd love to see what you've been working on in the past year. Share your videos productions in the comments!

SPREAD THE WORD

Help us grow the community by organizing meetups, talks, or workshops in your local area. Don’t hesitate to contact us if you need guidance, materials, or support to get started.

Below are photos from a workshop with indigenous communities in Paraguay.

Screenshot of <nil>
Screenshot of <nil>
Screenshot of <nil>

STATS

DOWNLOADS

  • Kdenlive was downloaded 11,500,714 times from our download page in 2025. Do note that many additional installs happen through Linux distribution package managers, the Snap Store, Flathub, and other third-party servers, where statistics are not always available or reliably measurable.
  • The Flatpak package from Flathub gets 41,499 downloads per month.
  • 25.04.2 got the most number of downloads.
  • 17.08.2 was downloaded 1 time!

Downloads per release cycle

Windows Linux Mac

A script element has been removed to ensure Planet works properly. Please find it in the original post. A script element has been removed to ensure Planet works properly. Please find it in the original post.

CODE COMMITS

Per Release Cycle

  • 25.04 cycle: 403 commits
  • 25.08 cycle: 368 commits
  • 25.12 cycle: 405 commits

Files With Most Code Changes

  • src/mainwindow.cpp: 102 commits
  • src/bin/bin.cpp: 70 commits
  • src/timeline2/view/timelinecontroller.cpp: 67 commits
  • src/monitor/monitor.cpp: 60 commits
  • data/org.kde.kdenlive.appdata.xml: 57 commits

Files With Most Bug Fixes

  • src/mainwindow.cpp: 1021 commits
  • src/timeline2/model/timelinemodel.cpp: 600 commits
  • src/bin/bin.cpp: 593 commits
  • src/timeline2/view/timelinecontroller.cpp: 506 commits
  • src/renderer.cpp: 501 commits

USERBASE

Continent

  • 🌍 Europe — 949,077
  • 🌎 Americas — 781,131
  • 🌏 Asia — 750,406
  • 🌍 Africa — 127,948
  • 🌏 Oceania — 53,397
  • 🧊 Antarctica — 5

To the 5 of you in Antarctica, let us know what you are editing. ;)

Country

  • 🇺🇸 United States — 392,967
  • 🇮🇳 India — 267,449
  • 🇧🇷 Brazil — 153,319
  • 🇩🇪 Germany — 118,115
  • 🇫🇷 France — 111,071
  • 🇨🇳 China — 104,692
  • 🇷🇺 Russia — 96,051
  • 🇪🇸 Spain — 91,052
  • 🇬🇧 United Kingdom — 86,165
  • 🇮🇹 Italy — 61,814

Region

  • 🇺🇸 California, United States — 42,769
  • 🇧🇷 São Paulo, Brazil — 37,452
  • 🇮🇳 Tamil Nādu, India — 27,313
  • 🇫🇷 Île-de-France, France — 26,755
  • 🇮🇳 Mahārāshtra, India — 25,246
  • 🇺🇸 Texas, United States — 22,470
  • 🇨🇦 Ontario, Canada — 20,016
  • 🇳🇱 Noord-Holland, Netherlands — 19,826
  • 🇺🇸 Florida, United States — 18,997
  • 🇨🇳 Shanghai Shi, China — 18,991

FUNDING

Ever since our last, and very successful, fundraiser in 2022, we haven’t actively asked for donations, yet the community has continued to support us. We are very grateful for that.

In 2025, we received a total of €9,344.80 from donations (down from €11,526.61 in 2024). Around 30% of the amount was given by donors who kindly set up a recurring plan. The average donation was about €25, with the lowest amount being €10 and the highest €500.

We allocate 20% of our budget to KDE e.V. to support infrastructure costs (servers and related expenses), as well as administration, legal support, and travel. As in previous years, your contributions enable us to continue supporting Jean-Baptiste (Kdenlive's maintainer), allowing him to dedicate several days each month to Kdenlive in addition to his volunteer work.

WE NEED YOUR SUPPORT

Kdenlive needs your support to keep growing and improving. If just a quarter of the people who downloaded Kdenlive in 2025 contributed €5, our maintainers would be able to dedicate more time to the project, and it would even allow us to hire more develpers to speed up development and improve stability. Small amounts can make a big difference, please consider making a donation.

A script element has been removed to ensure Planet works properly. Please find it in the original post.

More options to donate

You may also contribute by getting involved and helping in: