Freeware image editor GIMP 3.0 arrives after seven years of incubation

Amazing development cycle :smile:

2 Likes

I do wish there was a decent Paint.NET for Linux so I could edit screen captures quickly. GIMP and Inkscape are not as efficient for or focused on everyday needs.

1 Like

Guess they gave up on their politically correct name change.

I still use it for simple tasks, minimally where I still get confused with photoshops layout from 20 years past.

All the same, really appreciate it as a free to use tool.

I was completely unaware of this :laughing:

As a Silver sponsor for ZeMarmot and occasional user of GIMP, this is great to see.

(I personally think they should change the name anyway to get rid of all the baggage associated with it once it can ā€œdraw circlesā€; if it can work for Meta, why not GIMP?)

I don’t think the GIMP team ever decided to change the name. There was the Glimpse fork, which, along with the obvious name change (which is much harder to search for), also had ambitions of improving the UI. Activity for it died off years ago.

I’ve heard people like Pinta as a Paint.NET replacement. Actually, I’ve heard they don’t, but it’s the closest we’ve got on Linux.

There’s also Swappy for screenshots.

1 Like

Yep, to clarify- I only saw external voices suggesting a name change, though at some point a few years back it was fairly prominent news.

1 Like

Yeah, that would have been right around the time I got into Linux for the first time.

The GIMP developer’s firm position has always been available on their website: GIMP - Frequently Asked Questions

With all due respect, no.

We’ve been using the name GIMP for more than 20 years and it’s widely known.

Finally, if you still have strong feelings about the name ā€œGIMPā€, you should feel free to promote the use of the long form GNU Image Manipulation Program or exercise your software freedom to fork and rebrand GIMP.

As someone who has been following GIMP development fairly closely over the years, I’ve seen some users express thoughts that ā€œ3.0 would be a good time to change the nameā€. I don’t really agree with that—after implementation of vector shapes, maybe. I’ve heard people don’t use GIMP in educational environments because of the name.

I don’t think the name is the reason it isn’t used in educational environments or businesses. I’ve heard a lot of complaints about GIMP over the years, and the name isn’t even in the top 5. I mean, now that a lot of those complaints have been addressed with the latest release, it probably is in the top 5.

The place I’ve most seen GIMP used is actually in manga fan scanlation. There are so many GIMP guides out there from the 2000s.

…anyway, I doubt the name will be changing any time soon. I don’t really think about it beyond finding it a little funny that the CockroachDB people once built an image editor and named it after a character in Pulp Fiction as a joke, then abandoned the whole thing only a year or so later, and now everyone must live with the consequences almost thirty years on.

I think that’s as far as it goes for any regular person wanting to do image manipulation, maybe of a certain age. 0.2 seconds of the connotation and then move on.

2 Likes

gwenview, which does screen caps, now has a nice set of easy editing tools if you’re just wanting to draw shapes, annotate, adjust color, crop, resize, flip, etc.

others (that i little or know nothing about)…

good - this politically correct/woke crap is absolutely toxic to a well functioning society and given the state we’re presently in, we don’t need more problems and divisions (but they’re coming anyway)

If we must talk about the name… and since @itsMe already brought it to a head…

My thinking is generally along these lines:

2 Likes

we miss you George

2 Likes

I’m sure it will show up in Debian any year now!

The new release of GIMP is an exciting time for digital artists and the FOSS community, but Tom’s hardware branding it as ā€œfreewareā€ does a disservice to free software. I heard that site sold out years ago anyway and just does paid reviews now.

3 Likes

hey @bbbhltz - i was pokin’ around your codeberg stuff and came across a little snippet for yt-dlp in your dotfiles repo

here’s some junk i have in my .bashrc if you’re interested…

function yt-dlp-1080 { yt-dlp -o '%(title)s.%(ext)s' --no-mtime --format 'bestvideo[height<=1080]+bestaudio/best[height<=1080]/best' "${1}" ; }
function yt-dlp-720 { yt-dlp -o '%(title)s.%(ext)s' --no-mtime --format 'bestvideo[height<=720]+bestaudio/best[height<=720]/best' "${1}" ; }
function yt-dlp-mp4 { yt-dlp -o '%(title)s.%(ext)s' --no-mtime --format 'bestvideo[height<=1080]+bestaudio/best[height<=1080]/best' --merge-output-format 'mp4' "${1}" ; }
function yt-dlp-playlist { yt-dlp --flat-playlist --print-to-file '<li>%(title)s (<a href="%(url)s">link</a>)</li>' 'Playlist.html' "${1}" ; }
1 Like