The Notable Improvements of GNOME 2.22
Michael Larabel writes "Phoronix has up a list compiling eight of the most interesting improvements on track for GNOME 2.22. These improvements include the Epiphany browser switching to the WebKit back-end, transition effects inside the Evince document viewer, a new GNOME application for taking photos and recording videos from web cameras followed by applying special effects, a mouse tweaking module for improved accessibility, and a new GNOME VNC client. On the multimedia end, GNOME 2.22 has a few new features appended to the Totem movie player and the Rhythmbox player. Totem can now search and play YouTube videos and connect to a MythTV server and watch past recordings or view live TV. Rhythmbox now can utilize FM radio tuners, integration with new lyric sites, improved Podcast feed support, and even has support for communicating with newer Sony PSPs. There will also be a standalone Flash player and flash previewing support from the file browser in this release."
The main reason I like gnome is that its a fast window manager with a low cruft index. This looks to me like Gnome trying too hard, and adding too many capabilities to what is, so far as I understand it, just a window manager. Why, for example include vnc? It's not like seperate client/servers for this task aren't available, and most are pretty good.
Is all this new stuff going to slow it down, that's the thing that interests me. If the team have too many things to maintain, just how good a job can they do?
AFAIK, the KDE team is also switching to Apple's fork of KHTML, WebKit.
KHTML is very good of course, but it wouldn't make sense to switch to an engine that's going to be made obolete soon.
Just encouraged me to switch to XFCE...
And people say there should be a single desktop...
Deleted
I used to. And my Gnome using friends that I've talked into trying it still use it.
Compared to Firefox, it's prettier (if you think "fancy colors and icons" is more important than "consistent", you'll disagree), is much better integrated into Gnome, has much nicer "search engine support" (type in the address field, and your installed search engines are at the end of the auto complete list - please, someone, give me a firefox extension for that!), and has a quite nice tag based bookmarking system which can be synchronized with del.icio.us or ma.gnolia.com. All of that, and just a fraction of the memory of Firefox.
I stopped using it approximately the same time as they switched backend, and now use Firefox 3 instead - it doesn't swallow all memory (only almost all), and it actually looks more integrated into Gnome, than Epiphany with a Gecko backend (the times I tried Epiphany/Webkit, it didn't really work yet) since it's not only has a native theme, it also has native form controls (which Epiphany/Webkit apparently has too, but not Epiphany/Gecko). It also works with Online Desktop, and has the famous extensions, which makes up for the other downsides of not using Epiphany.
In other words: people are actually using Epiphany, but I don't think they will for long.
Actually, the plan is to create a new "gtkhtml" widget that's supposed to be able to work with different backends, so that you can use Gecko, Webkit, and existing gtkhtml through the same API. http://www.atoker.com/blog/2008/01/10/putting-the-web-in-gtk/
my pet peevee with _any_ GTK based app is the filechooser.
it's ugly and far from intuitive.
there's a wrapper aplication that allows some GTK apps use KDE's filechooser, but it doesn't work with everyting.
if GTK developers really don't wan't to fix this, could they at least put something to allow the use of KDE's dialogs when the app is not running under gnome ?
BTW, the wrapper is here: http://www.kde-apps.org/content/show.php?content=36077
What ? Me, worry ?
Epiphany is a good browser. I started using it a while ago because I found that it didn't lock up when browsing Slashdot whilst Firefox 2 did (both on Ubuntu platform). I've recently ended up using Konqueror as I have a Kubuntu install this time round and I find it similarly faster than Firefox.The odd thing is, I didn't have any extensions in Firefox at the time, either. Anyway - Epiphany is very good and I suspect quite a lot of Gnome users use it.
Aide-toi, le Ciel t'aidera - Jeanne D'Arc.
I have to agree. I don't like to diss open source products, but man, out of several years of using Gnome I just haven't ever had a good thing to say about Totem.
But an interesting anecdote is that my flatmate recently converted to Linux. He was a Windows "power user", not afraid of getting into any aspect of the system, and he's the same now with Linux. And he is actually completely satisfied by Totem. "But don't you find that it never plays anything properly, ever?" I asked him. "Nope, it plays everything I throw at it" he tells me. I've seen it too. Weird how experiences can vary so much.
Free the Quark 3 from asymptotic confinement! Bring your charm! Don't get down! All colours and flavours welcome!
Any chance that they've removed the dependency on Microsoft's patented .NET technologies via Mono?
(Yes, I know you can manually remove bits of the Gnome environment to get rid of Mono; but the Gnome environment by default includes Mono.)
GCHQ Quantum Insert installed. If only our tongues were made of glass, how much more careful we would be when we speak
"In order to use the WebKit backend, Epiphany must be built with the --with-engine=webkit argument."
That sounds more like WebKit is available, as an option, if you are compiling from source, than "switching" to me...
All that we see or seem is but a dream within a dream.
I find it hard to understand why someone who likes C would then dislike C++ enough to base a toolkit decision on that, especially given the quirky C required for Gtk+, but that aside...
There are, in fact, Qt bindings for C, Objective C, Ruby, Java and many other languages. (QtPython is probably the most widely used.) I'm not sure why you think it's so much more difficult to write bindings for a C++-based API.
What I'm listening to now on Pandora...
Maybe because he's used them. As somebody who was written (and maintained) large programs in both PyGTK and PyQt, I must say that these projects are a great argument in favor of using plain C.
The PyGTK project, for the past several years, has released an update to its bindings within a month of the corresponding GTK+ library. PyQt's last version lagged by about a year. (Not a good sign.) Long after the Qt people had gone to Qt 4.0, we were stuck with PyQt for Qt 3.3, because that's the latest stable release. (It was even hard to get PyQt fixes, because the few PyQt developers spent almost all of their time trying to get PyQt 4 out the door.)
PyGTK has always done just what I expected it to. In PyQt, we always seemed to have trouble with object lifetimes. Qt tried to be just a bit too clever with C++ destructors and object lifetimes and such, and it just didn't translate into HLLs. Between this, and needing to pass C++ method signatures (as a string!) to signal handlers, you really had to write C++-in-Python. It's not really possible to write PyQt code without constantly thinking about the C++ layer. In GTK, I never thought about C: I just wrote Python with a Python GUI library.
I also find the phrase "quirky C required for Gtk+" funny. The C used by GTK+ has always seemed perfectly normal to me. If you want quirky, take a look at the "meta-object compiler" (yet another preprocessor!) that Qt's C++ uses.