this post was submitted on 31 Jan 2024
161 points (97.1% liked)

KDE

5005 readers
73 users here now

KDE is an international technology team creating user-friendly free and open source software for desktop and portable computing. KDE’s software runs on GNU/Linux, BSD and other operating systems, including Windows.

Plasma 6 Bugs

If you encounter a bug, proceed to https://bugs.kde.org, check whether it has been reported.

If it hasn't, report it yourself.

PLEASE THINK CAREFULLY BEFORE POSTING HERE.

Developers do not look for reports on social media, so they will not see it and all it does is clutter up the feed.

founded 1 year ago
MODERATORS
 

David, Nate, Josh, Marco, Carl, and Niccolò are here ready to answer all your questions on Plasma (all versions), Gear, Frameworks, Wayland (and how it affects KDE's software), and everything in between.

Fire away, Lemmy!


We were expecting to be done in an hour and we have past the 2-hour mark already! Time flies when you are having fun.

Thank you for all the questions and the welcoming and friendly atmosphere, but the devs must get back to making Plasma 6 great.

Please keep the conversation going and KDE contributors will continue to answer over the next days as time permits.

Thank you all!!

you are viewing a single comment's thread
view the rest of the comments
[–] [email protected] 5 points 7 months ago (3 children)

There's been an undercurrent of discussion I've noticed (and tend to agree) that C++ is not the most friendly language for new/outside contributors, even the newer standard you use. Is there an effort to bring first class support/documentation for another higher level language as well? e.g dart/ruby/lua/python/javascript/C#/go (whatever is most feasible)

[–] [email protected] 10 points 7 months ago (1 children)

Something that's often not mentioned is that C++ with Qt is often a very different beast to use compared to C++ with the stdlib and other GUI frameworks. IMO Qt takes a lot of the pain out of C++, such that the criticism becomes blunted and mostly articulated by people looking in from outside who haven't tried it yet.

[–] [email protected] 5 points 7 months ago (1 children)

that suggests if nothing else, that point needs to be articulated more. But also then, C++ with QT is a very specific skill people now have to learn to help out, as opposed to stuff that would be more universally useful

[–] [email protected] 9 points 7 months ago

Sure, but Qt is the largest C++ toolkit in the world with millions of developers, so it's not exactly a small niche thing that someone who knows C++ hasn't heard of. :)

[–] [email protected] 7 points 7 months ago (1 children)

I have some very, very, very, very WIP KDE widgets for Dart/Flutter in a project running. Currently it has almost nothing but it already automatically switches color theme when you switch color schemes in KDE for example 😄

Don't expect too much of that though, it's very unofficial and something I'm doing whenever I feel like it.

[–] [email protected] 1 points 7 months ago

Amazing! Would love to have a nose at that when its mroe mature !

[–] [email protected] 5 points 7 months ago

Some of the plasmoids are implemented in JavaScript I think, but personally I'd love to see Dart as a consideration for that "high level language" choice.

It already does a great job at gluing high level rendering abstractions with low level rendering libraries within the Flutter SDK, and supports a lot of useful paradigms in UI development such as first class functions, null safety, enhanced enumerators, etc.

I can see why it's given a wide berth from FOSS since it's associated with JavaScript AND Google (two controversial terms in programming to say the least...) but working with it daily really does remind me how well it lends itself to frontend development.