this post was submitted on 03 Sep 2023
128 points (97.8% liked)

Linux

47376 readers
1123 users here now

From Wikipedia, the free encyclopedia

Linux is a family of open source Unix-like operating systems based on the Linux kernel, an operating system kernel first released on September 17, 1991 by Linus Torvalds. Linux is typically packaged in a Linux distribution (or distro for short).

Distributions include the Linux kernel and supporting system software and libraries, many of which are provided by the GNU Project. Many Linux distributions use the word "Linux" in their name, but the Free Software Foundation uses the name GNU/Linux to emphasize the importance of GNU software, causing some controversy.

Rules

Related Communities

Community icon by Alpár-Etele Méder, licensed under CC BY 3.0

founded 5 years ago
MODERATORS
 

By now it is probably no longer news to many: GNOME Shell moved from GJS’ own custom imports system to standard JavaScript modules (ESM).

Extensions that target older GNOME versions will not work in GNOME 45. Likewise, extensions that are adapted to work with GNOME 45 will not work in older versions.

You can still support more than one GNOME version, but you will have to upload different versions to extensions.gnome.org for pre- and post-45 support.

Please file bugs with your favorite extensions or have a friendly conversation with your extension writers so that we can help minimize the impact of this change. Ideally, you could help with the port and provide a pull or merge request to help maintainers.

all 33 comments
sorted by: hot top controversial new old
[–] aphlamingphoenix@lemm.ee 46 points 1 year ago (5 children)

I am a daily Gnome user. There are many things which I actually dislike about Gnome, but I have solved them all through extensions. Fine, I'm not bothered because it can be customized.

But every time they introduce something like this, it takes me a while to get a functional desktop back. It takes time for those extensions' developers to respond to these things. They have to research the change, implement it, test it, go through extra work to stay backward compatible, etc. These people aren't being paid for this, so it takes some time.

I'm just frustrated about this. I know someday I will run updates and suddenly find all my extensions broken.

[–] regalia@literature.cafe 23 points 1 year ago

Agree, my work flow is basically entirely broken without dash-to-panel, which is maintained by like one guy lol.

[–] zephr_c@lemm.ee 21 points 1 year ago

I really, really hope Cosmic turns out to be a good DE, because Gnome does a lot of cool stuff that I really like, but the actual experience of using it is miserable for me. It always feels like it's fighting against everything I want to do.

I'm glad Gnome exists, but we need an option that does some of the cool and unique things they do while also being less opinionated.

[–] DryTomatoes@lemmy.world 4 points 1 year ago

I literally just moved to Gnome 44 from a long time Gnome 3 setup. I only found one extension that makes Gnome 4x feel usable the way gnome 3 was and that's v-shell. If v-shell breaks then I'm never moving to gnome 45.

[–] selokichtli@lemmy.ml 3 points 1 year ago (1 children)

The ideas behind the GNOME Shell desktop metaphor have stayed consistent through the 3.x cycle, at least from ~3.10. The "problem" with GNOME 3.x is that it implements core ideas in the workflow that the user needs to grasp. Either you use it as they thought you should or you are better off with some other DE.

Sure, you may need some extension to feel more comfortable. I do use a couple, but if you need extensions to make it functional you really should consider switching to another DE/WM.

[–] aphlamingphoenix@lemm.ee 1 points 1 year ago (1 children)

I really like a lot about Gnome. It's things like getting rid of the system tray that don't make sense to me. I understand it's not in the system's ideology, but you can't force that on every application developer who still has to support that feature for other desktops. If it's a common application feature, then it's just broken on Gnome. That's a hard thing to sell me.

[–] selokichtli@lemmy.ml 1 points 1 year ago

This is why I feel more comfortable using Cinnamon in my main PC, but I still use GNOME in my laptop.

[–] skadden@ctrlaltelite.xyz 1 points 1 year ago

Yeah, it's kind of ridiculous. At this point my most starred git repos are all patches to get various extensions working on the current gnome release.

I've been looking to switch away but nothing I've used has had the it factor I want.

[–] bennyp@kbin.social 33 points 1 year ago* (last edited 1 year ago) (1 children)

It will be annoying for a minute but this change is good: it will help developers ship extensions faster and with fewer bugs by using standard JavaScript modules and IDE support. As mentioned in the blog: modules were standardized in 2015! At what point does it become acceptable to drop non-standard features?

[–] _cnt0@lemmy.villa-straylight.social 0 points 1 year ago (2 children)

it will help developers

Until they break it.

ship extensions faster

Which they need to adress the regular breakages.

and with fewer bugs by using standard JavaScript modules and IDE support

If I wanted to suffer web technologies, I'd develop content targeting web browsers, not a DE. JavaScript does a lot of things, being conducive to bug free code is not one of them.

I really admire the pain tolerance and endurance of devs developing and maintaining extensions for gnome. At what point does it become acceptable for them to drop that garbage DE? Rhetoric question: always has been.

[–] TheGrandNagus@lemmy.world 1 points 1 year ago (1 children)

You know Plasma makes use of JS too right?

You know that that is only an option and not a forced replacement for the "proper" API, right? Nobody is stopping you/me from writing plasmoid logic in C++.

[–] Eldritch@lemmy.world 1 points 1 year ago

This. There's a reason I don't run gnome. It's not because I don't like it overall. It's fine. Though as others have said it needs extensions. But simply because with every major version every extension breaks. It's slight hyperbole, but only just. Fucking maddening.

[–] IHeartBadCode@kbin.social 27 points 1 year ago (4 children)

Extensions that target older GNOME versions will not work in GNOME 45

So basically it's just another GNOME release gotcha.

Seriously though, a stable API is not the GTK/GNOME developers' agenda here. Nobody wanting a stable API should write software with this toolkit. That said, if you're a true front end aficionado and you're looking to make your software look awesome every six months, GNOME has got you so covered like the chocolate on a peanut M&M.

For those wanting to write software that won't magically kerslode without yet another recompile (or heavily relying on your distro to do that dirty work) stick with KDE/Qt group. They tend to be less breaky each release.

[–] Gecko@lemmy.world 7 points 1 year ago (1 children)

So basically it’s just another GNOME release gotcha.

AFAIK, the extension developer needs to explicitly set each version of Gnome they support. Even when the Gnome version doesn't have any breaking changes, the extension developer still needs to update their extension to enable their extension for the new Gnome version.

[–] Vincent@feddit.nl 6 points 1 year ago (1 children)

It makes sense that you have to explicitly verify that it works on every release - even if there had been no intentional breaking changes. That said, if an extension developer would really prefer to YOLO it, they could just pre-emptively add a bunch of future releases.

(Of course, ironically that would've broken when they switched to 40.)

[–] Natanael@slrpnk.net 3 points 1 year ago (1 children)

It would make more sense to specify something like API versions, not software versions, and flag on the client when it changes without the addon being updated (giving you a choice to run it with a warning or not). That is, unless the version update is specifically flagged as breaking compatibility, in which case it would just warn and not offer to run it anyway until it's been updated.

[–] Chewy7324@discuss.tchncs.de 2 points 1 year ago

Gnome doesn't really have an extension API and instead the extensions hook directly into Gnome Shell. This allows extensions to do basically anything, but each new Gnome release might break an extension (if the used code path is changed).

[–] AProfessional@lemmy.world 4 points 1 year ago

GTK never broke public API.

[–] Ddhuud@lemmy.world 3 points 1 year ago

I had to orphan a very simple extension I wrote for gnome 3.2-3.10 It was a bugfix that for some reason upstream didn't even want to acknowledge it existed, and never accepted the patch. So I made the extension, but after about a year of constant breakages I gave up.

That ordeal really made me feel unappreciated as a contributor.

[–] Spectacle8011@lemmy.comfysnug.space 1 points 1 year ago (1 children)

Seriously though, a stable API is not the GTK/GNOME developers’ agenda here. Nobody wanting a stable API should write software with this toolkit.

This blog post doesn't mention GTK, but I've heard GTK will sometimes implement breaking changes in minor version bumps. I was thinking about writing some software with GTK, and I haven't been deterred so I guess I'll learn the hard way, but has GTK 4 had any of these stability problems yet?

[–] OldFartPhil@lemm.ee 21 points 1 year ago (1 children)

See, this is the beauty of running Debian stable as your daily driver. I'll be on Gnome 43 for two more years, so by the time I upgrade to Gnome 45+ extensions should be compatible. Only half-joking, I really do avoid a lot of early adopter regressions and breakage.

[–] aleph@lemm.ee 1 points 1 year ago (1 children)

Arch does too, albeit to a lesser extent. Gnome updates usually take around 4 to 5 weeks after the official release to hit the Pacman repos.

Means you can stay bleeding edge but avoid day 1 breakages for the most part.

[–] warmaster@lemmy.world 1 points 1 year ago (1 children)

Is there a distro that ships with the latest kernel and gnome packages?

[–] LeFantome@programming.dev 19 points 1 year ago (1 children)

I am all for hating in GNOME for constantly breaking things. In this case though, are they not moving away from their non-standard system to the JavaScript standard? That seems like something to be supported and, in the long run, it will likely lead to less breakage.

Or am I misunderstanding?

[–] Crazazy@feddit.nl 3 points 1 year ago* (last edited 1 year ago)

Yes but it would have been nicer to have a transition period in which both methods are supported for a little while so that you don't literally break every extension in existence up to this release

[–] Vincent@feddit.nl 18 points 1 year ago

I will say, as a JavaScript developer, the new module system is a pain everywhere. Node.js went to great pains to allow for an upgrade path without breaking changes, and it's still a PITA for developers because there are so many edge cases that could go wrong, so you still have to actually keep testing in both older and newer versions.

A hard break like this is painful, but I'm not sure if there's a better solution. On the upside, it looks like it'll be easier for someone like me to contribute fixes for this, even if I don't know the specifics of extension development otherwise.

[–] regalia@literature.cafe 17 points 1 year ago (1 children)

So what I'm reading is to wait to upgrade until my dash-to-panel and app-indicator extensions are updated

[–] d_k_bo@feddit.de 8 points 1 year ago

gnome-shell-extension-appindicator moved to the new modules system 3 weeks ago

[–] ikidd@lemmy.world 3 points 1 year ago (1 children)

Extensions that target older GNOME versions will not work in GNOME 45. Likewise, extensions that are adapted to work with GNOME 45 will not work in older versions.

Holy fucking lol

[–] sugartits@lemmy.world 0 points 1 year ago* (last edited 1 year ago)

Just typical Gnome these days, sadly.

This isn't news at all. Gnome very regularly breaks extensions on every release.