Slashdot Mirror


Gnome 2.0 RC2 Asks For Abuse

A nameless reader submits: "The GNOME Desktop 2.0 release candidate 2 has been released! Gnome 2.0 should be coming out soon! The release notes have some good information."

13 of 214 comments (clear)

  1. RC code name by joeykiller · · Score: 5, Informative

    For those of you who don't understand swedish too well: This release's code name, "Glad Midsommar", means "Happy midsummer". The swedes love a good mid summer party.

    1. Re:RC code name by Anonymous Coward · · Score: 1, Informative

      Hep, Danes included.
      We should all party together.

    2. Re:RC code name by bokmann · · Score: 3, Informative

      OK, this is off-topic, but relevant to this particular comment.

      I know the perfect hangover cure. When I have a hangover, I can't sleep... so, oddly enough, after a heavy night of drinking, I'm up early, curled up in the fetal position on a couch cursing my own existance. (At least, when I used to drink a lot thats what I did... but that was 10 years ago).

      OK, here's the cure:
      1) 2 or more excederin (with both asprin and tylenol as pain releivers, it is always good at taking the edge off - and it has caffeine - a plus for this crowd)
      2) a multivitamin, like centrum.
      3) a b-complex vitamin suppliment(a lot of drug stores sell this as something like B-100). Alcohol flushes b complex vitamins from your system, which is one of the reasons you will feel like crap.
      4) Gatorade. Swallow all of those pills with a big jug of gatorade... it contains a lot of the electrolytes you need, but pissed out because your kidneys were dumping all the alcohol.
      5) a high-carbohydrate breakfast. Something like pancakes.

      finally, after doing all of that, melt yourself in a warm shower.

      Seriously... Do all this, and you will feel a LOT better.

  2. Garnome by Spock+the+Vulcan · · Score: 5, Informative

    As always, if you want to give the latest Gnome a whirl without messing up your existing system, try Garnome
    It takes a while to build (about an hour on my 1.0 GHz PIII), but it doesn't touch your existing install - everything goes into ~/garnome.

  3. Gnome2 problems by Anonymous Coward · · Score: 2, Informative

    I always been a gnome user, and i prefer gnome over KDE but i am dissapointed. I have been compiling gnome2 from CVS every 2-3 weeks.
    Things I hope they can change in by release day.
    Japanese Input is broken in gnome2 applications.
    File Chooser is not improved.( I know this is planned for the 2.2 release)
    I was expecting a lot more from gnome control center.
    Default configurations are bad.

  4. Re:Does anyone know... by Ami+Ganguli · · Score: 5, Informative

    I don't have any inside information, but if you look here you can see that they've added an unscheduled release candidate and they had planned two weeks between the last release candidate and going gold.

    Assuming we don't get another release candidate (which I think is a good bet - I'm running the nightlies and they feel solid) that places 2.0 around July 7.

    --
    It is tempting, if the only tool you have is a hammer, to treat everything as if it were a nail. - Abraham Maslow
  5. Re:Looking forward with mixed feelings by Karora · · Score: 3, Informative

    Gnome2 will hit Debian unstable fairly soon. In fact it is mostly in there already - there are just a few things in experimental really.

    I would say that in your case you probably will be better off with Gnome2, because it does seem snappier than 1.4.

    --

    ...heellpppp! I've been captured by little green penguins!
  6. Re:What about KDE? by RPoet · · Score: 2, Informative

    Very nice reasoning, and quite original, too.

    --
    "Oppression and harassment is a small price to pay to live in the land of the free." -- Montgomery Burns.
  7. Why use either? by Arker · · Score: 2, Informative

    Seriously, I run straight WindowMaker even on newer hardware, sure on a fast machine I bring up a gnome panel occassionally to mess around with, but I honestly never really understood why people seem to think they have to have KDE or GNOME on a machine - particularly an older one of course. Install the libs, and whatever applications you have to have, and they'll run just fine without any panels or the like...

    --
    =-=-=-=-=-=-=-=-=-=-=-=-=-=-
    Friends don't let friends enable ecmascript.
  8. Re:Just anti-aliasing? by JamesHenstridge · · Score: 3, Informative

    If you are using Xft for font rendering (that is, you set the GDK_USE_XFT environment variable to 1), you can turn on cleartype style rendering. If your LCD panel is in RGB order, you can put the following in your ~/.Xdefaults file:
    Xft.rgba: rgb

    Or equivalently, in your ~/.xftconfig file:
    match edit rgba=rgb;

  9. Re:Where's the ChangeLog ? by JamesHenstridge · · Score: 2, Informative

    You can use bugzilla to find this information.

    As an example, here is a list of all bugs with the GNOME2 keyword that are in the RESOLVED, VERIFIED or CLOSED state that changed state between the RC1 and RC2 releases. It is not complete, and probably isn't fully accurate (some changes may have been fixed but no new tarball is available yet), but it gives you an idea of what has changed.

  10. How to enable anti-aliasing? by JamesHenstridge · · Score: 5, Informative

    First of all, you must enable Xft support (the new font system for X). This is done by defining the GDK_USE_XFT environment variable before running a program. The best way to turn this on for the entire desktop is by defining it in the X startup script (probably ~/.gnomerc, ~/.Xclients or ~/.xinitrc):

    #!/bin/bash
    export GDK_USE_XFT=1
    # set up $PATH and $LD_LIBRARY_PATH if needed
    exec gnome-session

    After doing this, you may still not see antialiased fonts. For instance, on Red Hat systems, the default /etc/X11/XftConfig file has the following lines:

    match
    any size < 14
    any size > 8
    edit antialias=false;

    which turns off antialiasing for fonts with sizes between 8 and 14. By commenting out these lines, AA will be enabled for all fonts. If you have an LCD panel, add a line like the following to /etx/X11/XftConfig or ~/.xftconfig:

    match edit rgba=rgb;

    This will turn on ClearType style subpixel antialiasing.