Slashdot Mirror


GNOME 2.12 Previewed

An anonymous reader writes "Davyd Madeley has completed his Prerelease Tour of GNOME 2.12. Scheduled for release on September 7th, 2005, GNOME 2.12 has picked up a new theme, some features popularised by Apple's System 7, some new multimedia tools and plenty of bug-fixes."

4 of 437 comments (clear)

  1. Re:Still ugly fonts by Gleng · · Score: 4, Informative

    If you're using a Debian based distro, you can run:

    dpkg-reconfigure fontconfig

    And then select the bytecode interpreter from the menu. Fixed. :)

    --
    "Proudly Posting Without Reading The Article"
  2. Re:Still ugly fonts by Gleng · · Score: 4, Informative

    Also, here's a copy of my /etc/fonts/local.conf which disables antialiasing on font sizes under 10 points, so you get nice crisp Windows style rendering on small fonts. I use Tahoma size 8 on my Gnome menus and it looks pretty sweet.

    <?xml version="1.0"?>
    <!DOCTYPE fontconfig SYSTEM "fonts.dtd">
    <fontconfig>
    <include ignore_missing="yes">/var/lib/defoma/fontconfig.d/ fonts.conf</include>

            <match target="font">
                <test name="size" compare="less">
                    <double>10</double>
                </test>
                <edit name="antialias" mode="assign">
                    <bool>false</bool>
                </edit>
            </match>
            <match target="font">
                <test name="pixelsize" compare="less" qual="any">
                    <double>10</double>
                </test>
                <edit mode="assign" name="antialias">
                    <bool>false</bool>
                </edit>
            </match>

    </fontconfig>

    --
    "Proudly Posting Without Reading The Article"
  3. Re:Still ugly fonts - this works too! by bogaboga · · Score: 4, Informative
    1: Install Microsoft true-type fonts.

    2: You could install them via this script: http://vigna.dsi.unimi.it/webFonts4Linux/webFonts. sh

    Then do the following:

    Configure X and Gnome to 96 dpi sudo cp /etc/X11/xorg.conf /etc/X11/xorg.conf.bak sudo gedit /etc/X11/xorg.conf Locate Section "Monitor" and add the following lines before EndSection: # DisplaySize 270 203 # 1024x768 96dpi

    # DisplaySize 338 254 # 1280x960 96dpi

    # DisplaySize 338 270 # 1280x1024 96dpi

    # DisplaySize 370 277 # 1400x1050 96dpi

    # DisplaySize 423 370 # 1600x1400 96dpi

    Uncomment the line corresponding to your current resolution.

    To get other values, use the following formula:

    displaysize = {pixelsize}/96*25.4

    Remember:

    The display size must be "right" so adjust those values till you get your size right.

  4. Re:Gnome vs. KDE by Andre · · Score: 4, Informative

    Qt still is not as free as GTK+, because it is a library and licensed under GPL. GTK+ is licensed under LGPL for a reason. If you use Qt, the license of your application cannot be chosen freely. Either you use the GPL, or you pay for the freedom to choose another license.

    A GUI toolkit is part of the critical infrastructure of a software component on the desktop. Every application needs such a component (apart from fullscreen applications like games).
    And a GUI toolkit is commodity, nothing special anymore.

    Many developments begin at home, and these developments are the programmers' own crown jewels. I want to secure my investment in time and energy, and want to be able to deploy my ideas anywhere I see fit. Of course, I want to take my developments to the workplace and go on without interruption. This is freedom, and highly productive.