Official announcements | Annonces officielles
matttbe, Tuesday 19 April 2011 à 13:15
|
|
Subscription date : 24 January 2009
Messages : 12573
|
Hello everybody!
I'm proud to announce the release of the new 2.3.0~1 version.
GLX-Dock 2.3.0
- A lot of new applets are available in our new repository! (Transmission, Deluge, MintMenu, Translator, Quote of the day, etc). You can install them for free in a single click!
- The new "Recent-Events" applet lets you browse your last activties (music, videos, documents, web pages, etc).
- The System-Monitor applet can now monitor CPU temperature and fan speed.
- The menus have a better layout.
- The Logout applet now warns you when the computer needs to be restarted.
- The Stack applet now displays the web page's favicon.
- The Drop and Share applet now handles UbuntuOne.
- Better integration with Compiz and Kwin.
- Several bug-fixes and improvments.
More details about this release will be added asap!
Feel free to report any bugs, ideas, problems, questions, etc.!
Thanks to all contributors and Fabounet in particular
And... Thank you for using Cairo-Dock |
Tofe, Tuesday 19 April 2011 à 13:52
|
|
Subscription date : 09 February 2008
Messages : 921
|
Yepeeee \o/ I'll update the ArchLinux PKGBUILD tonight ! |
Guest, Tuesday 19 April 2011 à 15:55
|
|
|
Thank you for the 2.3.0 release and many congratulations to the Cairo Dock team! |
Subscription date : 30 November 2007
Messages : 17118
|
woot ! needs to make an official announce and some screenshots/videos now |
hotice, Tuesday 19 April 2011 à 16:02
|
|
Subscription date : 19 April 2011
Messages : 1
|
Congratulations on yet another great release! |
Tofe, Tuesday 19 April 2011 à 16:25
|
|
Subscription date : 09 February 2008
Messages : 921
|
Mmmh when will the corresponding .tar.gz be generated ? |
matttbe, Tuesday 19 April 2011 à 16:44
|
|
Subscription date : 24 January 2009
Messages : 12573
|
Tofe : Mmmh when will the corresponding .tar.gz be generated ? In a few minutes sorry |
Tofe, Tuesday 19 April 2011 à 19:12
|
|
Subscription date : 09 February 2008
Messages : 921
|
May I complain again ? The 2.3.0~1 version of launchpad has been packaged under the rc1 version... Would it be a problem to release it as a complete new version ? |
matttbe, Tuesday 19 April 2011 à 19:35
|
|
Subscription date : 24 January 2009
Messages : 12573
|
As said Tofe, the millestone was wrong, sorry for that but it's fixed!
About Cairo-Dock packages on different distributions:
- For Debian and Ubuntu users:
- Our ppa and repository have been updated (Debian and Ubuntu) => From the repository
- A new version will be uploaded in Ubuntu Natty repositories asap (don't hesite to confirm this bug )!
- For ArchLinux users: Tofe will updated PKGBUILD asap!
|
Subscription date : 26 October 2008
Messages : 1904
|
Waouh that was fast...
COngrats to all. |
Tofe, Tuesday 19 April 2011 à 19:42
|
|
Subscription date : 09 February 2008
Messages : 921
|
Archlinux packages: done ! |
Guest, Tuesday 19 April 2011 à 20:51
|
|
|
Its zapata!I cant install the new version it say that it cant find the file some 404 error here:
sudo apt-get update >/dev/null
W: Failed to fetch http://download.tuxfamily.org/glxdock/repository/ubuntu/dists/julia/cairo-dock/binary-i386/Packages.gz 404 Not Found
W: Failed to fetch http://ppa.launchpad.net/cairo-dock-team/ppa/ubuntu/dists/julia/main/binary-i386/Packages.gz 404 Not Found
E: Some index files failed to download, they have been ignored, or old ones used instead. |
Guest, Tuesday 19 April 2011 à 20:53
|
|
|
I am running the version 2.3.0-0rc2 and i cant find the 2.3.0-1 in my package manager nor in the update manager who also says that it cant find the indexses on this link??? |
matttbe, Tuesday 19 April 2011 à 22:32
|
|
Subscription date : 24 January 2009
Messages : 12573
|
I am running the version 2.3.0-0rc2 and i cant find the 2.3.0-1 in my package manager nor in the update manager who also says that it cant find the indexses on this link??? Hello,
I will update our weekly ppa tonight or a bit later, be patient
zapata : sudo apt-get update >/dev/null
W: Failed to fetch http://download.tuxfamily.org/glxdock/repository/ubuntu/dists/julia/cairo-dock/binary-i386/Packages.gz 404 Not Found
W: Failed to fetch http://ppa.launchpad.net/cairo-dock-team/ppa/ubuntu/dists/julia/main/binary-i386/Packages.gz 404 Not Found
E: Some index files failed to download, they have been ignored, or old ones used instead. I guess you're using Linux Mint and you don't use the correct name (have a look to our wiki )
Simply launch this command to resolve this bug: sudo sed -i 's/julia cairo-dock/maverick cairo-dock/g' /etc/apt/sources.list and remove this repository ppa:cairo-dock-team/ppa |
Tofe, Wednesday 20 April 2011 à 09:37
|
|
Subscription date : 09 February 2008
Messages : 921
|
Ah ! I think I found a mistake in the plugin's CMakeLists.txt !
It's about the mono interface for DBus. It looks like if:
- you have mono (it looks for the "gmcs" program)
- you DON'T have all of the following packages: glib-sharp-2.0 ndesk-dbus-1.0 ndesk-dbus-glib-1.0
Then the compilation of mono is still activated, but it will fail. And it will not see that it failed to compile, so it will simply fail when doing make install.
I don't have access to bzr right now, but the fix would to replace:
#find_package (Mono)
find_program (GMCS_EXECUTABLE gmcs)
if ("${GMCS_EXECUTABLE}" STREQUAL "" OR NOT EXISTS ${GMCS_EXECUTABLE})
message (STATUS "Could not find Mono compiler gmcs, won't build Mono interface.")
set (with_mono "no")
else()
set (MONO_FOUND "TRUE")
pkg_check_modules (MONO_PACKAGE glib-sharp-2.0 ndesk-dbus-1.0 ndesk-dbus-glib-1.0)
if ("${MONO_PACKAGE_FOUND}" STREQUAL "")
message (STATUS "Could not find glib-sharp-2.0, ndesk-dbus-1.0 or ndesk-dbus-glib-1.0; won't be built Mono interface.")
set (with_mono "no")
else()
set (with_mono "yes")
endif()
endif()
with:
#find_package (Mono)
find_program (GMCS_EXECUTABLE gmcs)
if ("${GMCS_EXECUTABLE}" STREQUAL "" OR NOT EXISTS ${GMCS_EXECUTABLE})
message (STATUS "Could not find Mono compiler gmcs, won't build Mono interface.")
set (with_mono "no")
else()
pkg_check_modules (MONO_PACKAGE glib-sharp-2.0 ndesk-dbus-1.0 ndesk-dbus-glib-1.0)
if ("${MONO_PACKAGE_FOUND}" STREQUAL "")
message (STATUS "Could not find glib-sharp-2.0, ndesk-dbus-1.0 or ndesk-dbus-glib-1.0; won't be built Mono interface.")
set (with_mono "no")
else()
set (with_mono "yes")
set (MONO_FOUND "TRUE")
endif()
endif()
PS: I didn't test this patch |
zapata, Wednesday 20 April 2011 à 09:49
|
|
Subscription date : 20 December 2010
Messages : 155
|
Well i dont know what happend but it worked all of a sudden! |
matttbe, Wednesday 20 April 2011 à 10:58
|
|
fabounet, Wednesday 20 April 2011 à 14:25
|
|
Subscription date : 30 November 2007
Messages : 17118
|
thanks a lot Matttbe and Tofe ! |
matttbe, Thursday 21 April 2011 à 19:30
|
|
Subscription date : 24 January 2009
Messages : 12573
|
Just to note that Cairo-Dock v2.3.0~1 is available in Ubuntu Natty repositories (universe)
(and this news on Webupd8 and on Unixmen and we are still banned in omgubuntu ) |
ppmt, Friday 22 April 2011 à 16:44
|
|
Subscription date : 29 November 2007
Messages : 3520
|
Well done guys!
and thanks for the Unixmen site Matttbe I didn't know it |
Official announcements | Annonces officielles
|