Ubuntu Tweak 0.4.0 released!

After two months of development, another milestone version of Ubuntu Tweak is released: that’s Ubuntu Tweak 0.4.0!

The development of this version was taken a long time, because I was busy in my holiday and the new term of college. But I never stop developing with Ubuntu Tweak.

Now it must be the most ever powerful version. Let’s see what Ubuntu Tweak 0.4.0 like:

As you’ve known from One year old of Ubuntu Tweak, Ubuntu Tweak had been redesigned with a new GUI, now it’s more usable in some low screen resolution computer(EEE Pc etc.)

Besides, another new feature has been introduced to Ubuntu Tweak after I finished the GUI design. That’s the “Package Cleaner”.

After a long time of using Ubuntu, after many times of installing and updating, I think there’s a lot of packages that are useless in your Ubuntu, it is called the “Garbage Package”. So is the package cache.

Now you can clean up them easily through Ubuntu Tweak!

If you’re a skilled user of Ubuntu, you must know the opertions can be done by run “sudo apt-get autoremove” or “sudo apt-get clean” in termianl. But Ubuntu Tweak can do it better, you can remove the packages(or cache) in your mind.

For example, you want to remove most of the unneeded packages, but want to remain the old kernels. So you can just select what you want to remove, and click “clear”. If you do with “apt-get autoremove”, all the packages will be removed by once.

Following pictures show how you can clean up packages and cache by Ubuntu Tweak.

Ubuntu Tweak will automately list the unneeded packages(or cache), you can clean up of them by selecting what you want, or just select all.

The pictures show the old kernel can be removed.

The same to clean cache, it will free your disk space.

I hope this feature will help you to manage your Ubuntu with a better solution.

Ubuntu Tweak 0.4.0 has also many other updates, see other pictures:

More powerful Thid Party source:

I’ve made this feature more powerful, now you can get the source details. The homepage, the url, and the long description, You’ll know all thing about the sources.

By clicking the url, you can browser the packages through your web brower, so that you can determine whether this source is what you want.

Change the GNOME Panel Logo

Now you can change the logo of GNOME Panel easily!

Just prepare a png file with size 24×24, and Ubuntu Tweak can help you put it on.

Do you see that I’m using Compiz Fusion as my Panel’s Logo?

Templates and Scripts support directory now

Now you can manage them by creating folders!

If you have many templates or scripts, I think the improvement is useful to you!

New User Folder Settings

I’ve made many changes of User Folder Settings, Now with a new GUI, and you can restore the dictory to the default settings.

Oh, I forgot to tell you, Ubuntu Tweak 0.4.0 has got fully support of Ubuntu 8.10 Intrepid!

If you’ve upgraded to Ubuntu 8.10, you’ll continue enjoying with Ubuntu Tweak!

Upgrade and Downloads

It’s hot and you should upgrade it immediately!

If you are use Ubuntu Tweak through its repository and you’ve upgraded to Ubuntu 8.10, please changed the sources to Intrepid:

deb http://ppa.launchpad.net/tualatrix/ubuntu intrepid main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu intrepid main

If you still using Ubuntu 8.04 Hardy, the old source is still be used.

deb http://ppa.launchpad.net/tualatrix/ubuntu hardy main
deb-src http://ppa.launchpad.net/tualatrix/ubuntu hardy main

Or you want to go and download it from here: downloads

Well, tell me how do you like this version!

This entry was posted in announce and tagged . Bookmark the permalink.

42 Responses to Ubuntu Tweak 0.4.0 released!

  1. alde says:

    great!
    thanks!

  2. BostonPeng says:

    I tried to launch UT as updated from the PPA but it crashed on me before I could even see the splash screen. I posted a bug on it so we could try to get it fixed. Once I have the update working I’ll be more than happy to blog the update so more people can see that it’s come out.

  3. Alexis says:

    Really great & usefull.

    thanks for your work!

  4. Pingback: Ubuntu Tweak 0.4.0 released | larryni.me.uk

  5. Dave K says:

    Great! Thanks for the nice work.

    I like the ability to change the icon in the menu. Ironically I like the Ubuntu logo too much to change it now!

    What I reallllly want is the ability to change the “Applications | Places | System” menu so that it is 3 icons with no text. That would really save space on netbooks and screens with small displays, as well as making horizontal sidebars more usable.

  6. Lee Jarratt says:

    I personally love the new interface, great :)

    Lee

  7. Pingback: GUbuntu.es » Lanzado Ubuntu Tweak 0.4.0

  8. Christobal says:

    great work … thank you!

  9. velinx says:

    Gracias!!
    sigue así!

  10. chanklor says:

    excellent, thanks a lot!
    muchas gracias!

  11. xMoDx says:

    ubuntu tweak still never failed to impress me =) im using ubuntu tweak myself and i recommend to my friends =)

  12. archie says:

    I cannot find the CPU power saving settings previously under Power Management.
    Another thing I noticed is that the word “Directory” is misspelled under Personal/User Folder

  13. Pingback: Ubuntu Tweak 0.4.0 » Settings, Tweak, Ubuntu, GNOME, Linux, Home, ShowHide, Advanced » TheXBlog

  14. kuidao says:

    Ubuntu-Tweak don’t runs if the aplication system font size is not integer.

    pepe@adelfa:~$ ubuntu-tweak
    Traceback (most recent call last):
    File “ubuntu-tweak.py”, line 73, in
    launcher = TweakLauncher()
    File “ubuntu-tweak.py”, line 43, in __init__
    from MainWindow import MainWindow
    File “/usr/share/ubuntu-tweak/MainWindow.py”, line 31, in
    from common.Canvas import RenderCell
    File “/usr/share/ubuntu-tweak/common/Canvas.py”, line 13, in
    class RenderCell:
    File “/usr/share/ubuntu-tweak/common/Canvas.py”, line 15, in RenderCell
    font_size = int(font_name.split()[-1])
    ValueError: invalid literal for int() with base 10: ’10.25

  15. BostonPeng says:

    @kuidao:
    That’s actually the bug that I filed yesterday morning. TualatriX has the issue ID’d but as of this morning I’m not seeing that the package has been updated. I’m looking forward to it, though, so I can play with the new goodies myself.

    TualatriX says the int in line 15 just needs to be changed to float but I have no clue how to do that so I have to wait for the new package.

  16. Zac says:

    Very impressed. Getting more useful with each release. Well done.

  17. gceng04 says:

    Ubuntu tweak is GREAT! You are GREAT

  18. Pingback: Ubuntu Tweak 0.4.0 : Press play on Tape!

  19. kuidao says:

    @BostonPeng
    Thank you for your observation. You can change it very easy. Edit file Canvas.py

    sudo gedit /usr/share/ubuntu-tweak/common/Canvas.py

    Line 15 says:
    font_size = int(font_name.split()[-1])

    You may change text “int” to “float”, like this:
    font_size = float(font_name.split()[-1])

    And UT works fine!!

  20. Dlima says:

    Hi, just edit the file “/usr/share/ubuntu-tweak/common/Canvas.py” and change the int on line 15, put float instead. That’s it.

    Cheers

  21. crjackson says:

    I’m not able to use the 3rd party application section. After entering the password I press Authenticate button. Then Ubuntu-Tweak locks up and I have to make it force quite.

    It did this to me on the previous version as well. I have the same results on 4 different systems. Ubuntu Hardy 8.04.1 – all updates installed.

  22. GMaq says:

    Hello,

    Great App! However version 0.4.0 will NOT install in Gutsy because it can’t resolve the dependency for Gnome policykit.

    Can you please continue packaging for Gutsy? It is still a very viable OS, and Ubuntu Tweak is a great way to keep an up to date system in Gutsy.

    Thanks Again for your hard work!

  23. Pingback: Ubuntu Tweak 0.4.0 Facilitando la Configuración de Ubuntu

  24. BostonPeng says:

    Thanks kuidao and Dlima. I wasn’t sure what the exact change I needed to make was and I was afraid of borking things by making the wrong edit. I’ve done that before and I really didn’t want to have to go through it again.

    @Tualatrix:
    Is the package in the PPA getting updated to fix the bug? When I try to get the update again with Synaptic I end up with the same bug. Or is there a way to purge the original update and replace it with the fixed one?

  25. BostonPeng says:

    I just purged my old install of UT but when I installed it again I still got the version with the bug. I’m holding off on blogging the update until I can get it installed without issue from the PPA. I know I can tell my readers how to fix it, but I’d rather not have to do that for any newbies that read my blog and aren’t comfortable editing files like this requires.

  26. BostonPeng says:

    We have a winner! Tualatrix posted an updated version on the PPA and I’m able to run the newest version of UT! Thanks for all the help from everyone. I’m blogging it now.

  27. Pingback: Ubuntu Tweak 0.4.0 is out! « I’m Just an Avatar

  28. Pingback: Ubuntu Tweak 0.4.0: facilitando la configuración del sistema

  29. Pingback: Tecnologia » Blog Archiv » Ubuntu Tweak 0.4.0: facilitando la configuración del sistema

  30. Pingback: Actualidad Tecnologica - Ubuntu Tweak 0.4.0: facilitando la configuración del sistema

  31. Pingback: Ubuntu Tweak 0.4.0: facilitando la configuración del sistema « Solo LiNeX

  32. Pingback: Ubuntu Tweak 0.4.0: facilitando la configuración del sistema | Planeta Tecnologia

  33. jimmy says:

    i love u :*

  34. TualatriX says:

    Hello all!
    Sorry about the bug caused by non-integer font-size, I’ve fixed it and please update from the repository.
    And BostonPeng, thanks of you bug report, and your article about UT 0.4. I’ve seen it.

    @crjackson
    Hmm, this problem is exists for a long time at somebody’s Ubuntu, but I’ve never meet it so it’s hard to debug.
    This time I’ll do more with this problem, hope I’ll fix it.

    @GMap
    OK! Next release(0.4.1, it will come soon), I’ll make a Gutsy package for you and the Gutsy people.

  35. Pingback: Ubuntu Tweak 0.4.0: dando facilidades para la configuración de su sistema « .: clιмвo вloj © :.

  36. olican101 says:

    how do i install it i have downloaded the file and extracted it to my desktop… then what? i tried the readme but it makes no sence

  37. Pingback: links for 2008-10-12 | orioa

  38. blackat says:

    Why was removed the possibility to regolate the cpu usage? Thanks for the future answer.

  39. Pingback: Ubuntu Tweak 0.4.0: facilitando la configuración del sistema « AngelBlog Linux Ubuntu

  40. lionroar says:

    By the way, just tried your tweak application, it is awesome. Thanks, I wonder if I good memory and a good graphics’s card is the reason why it works for some of us. Anyways I like the compiz ease of use, You have just exactly what I need working for me. I like the pick window feature on the lower left side. excellent. Took me hours to get that working on conpiz config manager. Thanks

  41. bornagainpenguin says:

    I’ll be sticking with the earlier version due to lack of CPU throttling support in this release…

  42. Danesh says:

    Thanks dude. Sweet app..

Leave a Reply

Your email address will not be published. Required fields are marked *

*

You may use these HTML tags and attributes: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>