Slashdot Mirror


KDE 3.0 Alpha1 Available for Developers

Dre writes: "Just a few weeks after the release of the rock-solid KDE 2.2.1, the KDE Project today announced the release of KDE 3.0 Alpha1. Targeted at developers who want to get a head start on porting or writing applications to KDE 3, the release is pretty much a straight port of the KDE 2.2 branch to Qt 3. However, for developers this brings an impressive array of new features to KDE, including new database classes, new data-aware widgets, improved RAD development with a much-enhanced Qt Designer, a new powerful regular expression class (with full Unicode support), improved internationalization support (including the ability to mix different character sets in the same text), bi-directional language support (for languages such as Arabic and Hebrew), multi-monitor (Xinerama and multi-screen) support, better integration of pure Qt applications into KDE, and hardware-accelerated alpha blending. With the Qt port out of the way, the KDE developers can now focus on the planned KDE improvements. Read the full announcement here, or go straight to the source (alternative link)."

19 of 294 comments (clear)

  1. Great, just what we needed by Anonymous Coward · · Score: -1, Troll

    Now it'll run slower than ever! 2.2.1 compiled for i686 using obj-prelink is still as slow and bloated as Windows XP. Sorry, guys, but unless things ever get _faster_, I'll stay where I am.

  2. Solaris Uses Gnome by Anonymous Coward · · Score: -1, Troll

    So KDE will go away soon; don't waste your time

  3. oh boy more bloat by Anonymous Coward · · Score: -1, Troll

    can hardly wait till KDE reaches 4.0. it will be bloat bloat city. it is already fat as a christmas turkey and filled with as much shit.

  4. Re:GNOME _is_ obsolete by Anonymous Coward · · Score: -1, Troll

    Troll?

  5. Re:Egg Trolls Fake Pussy Technique by Anonymous Coward · · Score: -1, Troll

    Bravo
    I can vouch for this technique it works great.
    I hope Egg Troll can bring us more informative
    article in the future.
    This really is news for nerds.

  6. Re:Flamebait by Anonymous Coward · · Score: -1, Troll

    I think you need your cum drentched ass hole examined.
    Your gonna end up with an anal fissure if you keep letting taco fuck you like that.

  7. mod up! must read by Anonymous Coward · · Score: -1, Troll

    wow. That explains a lot. All along, I thought hemos and cmdr taco were gay. Turns out they're just muslims!

  8. ATTN: Egg Troll by Anonymous Coward · · Score: -1, Troll

    What's your sexual fantasy?

  9. Gay Llama Jihad. by Anonymous Coward · · Score: -1, Troll
    We, the Gay Llamas' of America proclaim jihad on CmdrTaco.



    THANKYOU AND GOODNIGHT

  10. Re:Don't get me wrong but... by Anonymous Coward · · Score: -1, Troll

    Suck my cock, "Snoozer_man"! Fuck you.

  11. Re:have you tried it mike? by slashdot2.2sucks · · Score: -1, Troll

    made me change user names

    Slashdot requires you to wait 2 minutes between each successful posting of a comment to allow everyone a fair chance at posting a comment.

    It's been 1 minute since you last successfully posted a comment

    If you this error seems to be incorrect, please provide the following in your report to Source Forge:

    Browser type
    User ID/Nickname or AC
    What steps caused this error
    Whether or not you know your ISP to be using a proxy or some sort of service that gives you an IP that others are using simultaneously.
    How many posts to this form you successfully submitted during the day

    * Please choose 'formkeys' for the category!
    Thank you.

  12. egg troll=jackass by Anonymous Coward · · Score: -1, Troll

    egg troll is a whiney bitch. Fuck egg troll.

    1. Re:egg troll=jackass by Anonymous Coward · · Score: -1, Troll

      egg troll is a whiney bitch. Fuck egg troll.

      I did. He's not a whiny bitch at all. He's a hot hung stud with sperm to spare! He did get a little squeamish that one time I stuck my finger up his ass, but he "loosened up" (tee-hee) after a bit. Buh-bye now, I have an AA meeting in about 20 mins.

      -Jenna Bush

  13. Are you a moderator? by Anonymous Coward · · Score: -1, Troll

    Then waste some of your mod points on this post!

  14. Let me spell it out for you... by Anonymous Coward · · Score: -1, Troll

    ...FUCK YOU!

  15. Re:unstable??? by Anonymous Coward · · Score: -1, Troll

    I swear to god I'll rip your fucking throat out if you even try to talk again! Don't fuck with Miguel Ramirez, you dirty cracker!

  16. That does not make sense! by Anonymous Coward · · Score: -1, Troll
    In Johny Cochrane's voice:

    Ladies & gentlemen of this supposed jury, Chef's attorney would certainly believe that his client wrote 'Stinky Britches' 10 years ago, and they make a good case, hell I almost felt pity myself, but ladies & gentlemen of the supposed jury, I have one final thing that I want you to consider. Ladies & gentlemen, this is Chewbacca. Chewbacca is a Wookie from the planet Kishu, but Chewbacca lives on the planet Endor.

    Now think about it... THAT DOES NOT MAKE SENSE! Why would a Wookie, an 8' tall Wookie want to live on Endor with a bunch of 2' tall Ewoks? THAT DOES NOT MAKE SENSE! But more importantly we have to ask ourselves, "What does this have to do with this case?". NOTHING! Ladies & gentlemen it has nothing to do with this case, IT DOES NOT MAKE SENSE!

    Look at me, I'm a lawyer, defending a major record company and I'm talking about Chewbacca. Does that make sense? Ladies & gentlemen, I AM NOT MAKING ANY SENSE! None of this makes sense. And so you have to rememeber, when you're in that jury room, deliberating and conjugating the emancipation proclamation, does it make sense? NO! Ladies & gentlemen of this supposed jury it does not make sense.

    If Chewbacca lives on Endor, you must acquit. The defence rests.

  17. the tree and the forest by mj6798 · · Score: 1, Troll
    Microsoft is already technologically much more cutting edge than KDE: they are moving towards a safe, reflective runtime and a higher-level language with a built-in component model. KDE is still based on a language and runtime with virtually no built-in support for components.

    The forefront of desktop technology is happening with Java (OSX, pure Java) and C# (Windows); C and C++-based efforts are widely deployed (Windows, KDE, Gnome), but they are already falling behind.

  18. Java Garbage Collection vs. C++ destructors by Anonymous Coward · · Score: -1, Troll

    For the record, Java garbage collection is absolutely not cheap nor predictable - and it blocks ALL threads while it collects. Java finalizers are only good to reclaim memory resources (and most expert Java books say not to use them at all for all the trouble they cause when you reference other objects inside finalizers). C++'s destructors, on the other hand, reclaim both memory and non-memory resources like file descriptors, graphics contexts - you name it. To accomplish this in Java you have to turn your code inside out and let the USER of your library wrap your code inside a try-finally block and call in the finally block whatever home-grown ResourceRelease()/close() function for your class - i.e., the object encapsulation breaks down in Java for resource reclamation.