[Bug 239927] [NEW] Totem loads video then doesn't play it

2008-06-14 Thread causeitsme
Public bug reported:

Binary package hint: totem

When I click on a Flash video (FLV) that is saved to my Videos folder,
Totem opens and you the video starts loading, it will load the first
frame of the video (very, very slowly). Then, most videos, it doesn't do
anything else. However, I have seen one video that plays the video
really slowly. No sound on any of them. I saved the video by using a how
to on saving you tube videos. How to:l  I played the video using
Firefox, once it was fully loaded I opened tmp and dragged it to the
Desktop, later moved to Videos folder.

Ubuntu
Version: 2.22.2
Build Date: 06/03/2008

Totem
Version: 2.22.1

ProblemType: Bug
Architecture: i386
Date: Sat Jun 14 01:34:05 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/totem-gstreamer
NonfreeKernelModules: ath_hal
Package: totem-gstreamer 2.22.1-0ubuntu2
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: totem
Uname: Linux 2.6.24-18-generic i686

** Affects: totem (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Totem loads video then doesn't play it
https://bugs.launchpad.net/bugs/239927
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239927] Re: Totem loads video then doesn't play it

2008-06-14 Thread causeitsme

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15302681/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/15302682/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/15302683/ProcStatus.txt

-- 
Totem loads video then doesn't play it
https://bugs.launchpad.net/bugs/239927
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239931] [NEW] Please make it possible to have more than four keyboard layouts

2008-06-14 Thread Scott Severance
Public bug reported:

I'd like to be able to toggle between more than four keyboard layouts.
My current layout is US English. I sometimes switch to US International
when I want to type accented characters, as well as ©®¿¡, etc. I'm
learning Dvorak, so my third layout is US Dvorak. Finally, I sometimes
need to type Greek and Hebrew, but I have to choose between the two
since I can only have four layouts.

Please remove the limit on the number of layouts.

** Affects: gnome-control-center (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Please make it possible to have more than four keyboard layouts
https://bugs.launchpad.net/bugs/239931
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-control-center in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 67129] Re: notification-daemon using 237MB of memory

2008-06-14 Thread Steve Beattie
I've reproduced the bug in the version of notification-daemon included
in the Hardy 8.04 release, and have verified that the package in Hardy-
proposed definitely improves the memory usage of it -- doing (in bash):

  $ for ((i = 1; i = 1000; i++)) ; do notify-send -i
/usr/share/icons/Human/48x48/places/distributor-logo.png Message $i
This is message $i ; done

caused the -proposed version to use about an additional 7.5M of memory
versus 57M for the version released in 8.04 (ia32 versions, the amd64
version in -proposed increases by about 10M). There is still likely more
more memory leaks, as the memory usage appears to grow without bound if
the for-loop is repeated multiple times, and it would be nice to address
those, but the -proposed package is a significant enough improvement to
mark this fix as verified.

I don't make extensive use of the notification-daemon, but I noticed no
regressions despite the heavy use I was giving it in for loops, plus the
occasional application usage.

** Tags added: verification-done

** Tags removed: verification-needed

-- 
notification-daemon using 237MB of memory
https://bugs.launchpad.net/bugs/67129
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to notification-daemon in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 181703] Re: Brasero does not recognize audio CD or blank CD-R

2008-06-14 Thread Steve Jackson
This is happening for me too, trying to burn an iso image to a blank CD-R. 
Output from Brasero -d:
(brasero:30369): GLib-GObject-CRITICAL **: g_object_set: assertion `G_IS_OBJECT 
(object)' failed

The UI says there is no space available.
It is version 0.7.1-3ubuntu1 in Hardy.

Serpentine works flawlessly on the same CD.

-- 
Brasero does not recognize audio CD or blank CD-R
https://bugs.launchpad.net/bugs/181703
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 144273] Re: transfering songs to iPod incorrectly modifies the year id3 tag

2008-06-14 Thread Hewus
I can confirm that with this version, the issue has been resolved, and I
have not experienced any regressions. Thank you :-)

-- 
transfering songs to iPod incorrectly modifies the year id3 tag
https://bugs.launchpad.net/bugs/144273
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 220656] Re: zenity --progress cancel button doesn't return a value

2008-06-14 Thread bodhi.zazen
This looks like an old report, but I ran into the same type of issue.

I do not have a solution, but an ugly hack to test if zenity is running
and if not kill the children processes.

That statement just looks wrong o.O

At any rate ...

Take a command foo ...

foo | zenity --progress --auto-kill  # Need to add an  at the end so the 
script continues.
RUNNING=0
while [ $RUNNING - eq 0 ]
do
 if [ -z $(pidof zenity) ] ; then
pkill foo # You may need to kill -9 `pidof foo`
RUNNING=1
fi
done

NOTE : this just kills the children precesses, you may also want to
clean up after them (remove temp files ...)

-- 
zenity --progress cancel button doesn't return a value
https://bugs.launchpad.net/bugs/220656
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239524] Re: [new-upstream] Brasero 0.7.90

2008-06-14 Thread Mantas Kriaučiūnas
** Also affects: brasero (Baltix)
   Importance: Undecided
   Status: New

-- 
[new-upstream] Brasero 0.7.90
https://bugs.launchpad.net/bugs/239524
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239941] Re: Can not read Chinese

2008-06-14 Thread Eric Chi

** Attachment added: Screenshot-FM961 - Live Broadcast (温哥华 fm96.1).png
   
http://launchpadlibrarian.net/15303836/Screenshot-FM961%20-%20Live%20Broadcast%20%28%E6%B8%A9%E5%93%A5%E5%8D%8E%20fm96.1%29.png

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15303837/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/15303838/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/15303839/ProcStatus.txt

-- 
Can not read Chinese
https://bugs.launchpad.net/bugs/239941
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 239941] [NEW] Can not read Chinese

2008-06-14 Thread Eric Chi
Public bug reported:

Binary package hint: rhythmbox

The chinese name of the song can not be read

ProblemType: Bug
Architecture: i386
Date: Sat Jun 14 15:41:29 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/rhythmbox
NonfreeKernelModules: nvidia
Package: rhythmbox 0.11.5-0ubuntu7
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=zh_CN.UTF-8
 SHELL=/bin/bash
SourcePackage: rhythmbox
Uname: Linux 2.6.24-18-generic i686

** Affects: rhythmbox (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Can not read Chinese
https://bugs.launchpad.net/bugs/239941
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 200337] Re: CD/DVD burning problem in hardy

2008-06-14 Thread Cio
This is kind of unrelated to the burning issue, but since I mentioned here that 
DVDs burned with Hardy are not WinXP compatible, I should also mention the 
related bug:
https://bugs.launchpad.net/ubuntu/+source/cdrkit/+bug/233942

(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=482032)
(http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=482032)

-- 
CD/DVD burning problem in hardy
https://bugs.launchpad.net/bugs/200337
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to nautilus-cd-burner in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 219826] Re: no trash symbol on the gnome-panel

2008-06-14 Thread Daniel
*** This bug is a duplicate of bug 49594 ***
https://bugs.launchpad.net/bugs/49594

My trash symbol is also invisible, but I can use it. It makes no
different if trash is filled with something. Trash is still invisible.

-- 
no trash symbol on the gnome-panel
https://bugs.launchpad.net/bugs/219826
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239944] [NEW] Black background, white text

2008-06-14 Thread joepurlings
Public bug reported:

Binary package hint: evolution

A html mail with black background and white text shows black text in
Evolution.

A saved copy of the mail opened in both Opera and Firefox is completely
readable.

Something must go wrong with the interpetation of the following tags:
p class=MsoNormalspan 
style='font-size:11.0pt;font-family:Calibri,sans-serif;
color:white'

Evolution used is 2.22.2 in Ubuntu 8.04.

ProblemType: Bug
Architecture: i386
Date: Sat Jun 14 09:46:30 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/evolution
NonfreeKernelModules: nvidia
Package: evolution 2.22.2-0ubuntu1.2
PackageArchitecture: i386
ProcEnviron:
 
PATH=/home/username/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=nl_NL.UTF-8
 SHELL=/bin/bash
SourcePackage: evolution
Uname: Linux 2.6.24-18-generic i686

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Black background, white text
https://bugs.launchpad.net/bugs/239944
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239944] Re: Black background, white text

2008-06-14 Thread joepurlings

** Attachment added: Copy of the mail that went wrong (took the plaintext and 
headers off)
   http://launchpadlibrarian.net/15303888/test.html

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15303889/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/15303890/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/15303891/ProcStatus.txt

-- 
Black background, white text
https://bugs.launchpad.net/bugs/239944
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 211528] Re: [Hardy] Brasero cannot copy a DVD to file image

2008-06-14 Thread Botond Szász
Having the same problem here. Fresh clean install on a Dell Inspiron
1525 of Hardy (8.04). Very annoying.

-- 
[Hardy] Brasero cannot copy a DVD to file image
https://bugs.launchpad.net/bugs/211528
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 202949] Re: Offer overburn when burning a .ISO file

2008-06-14 Thread Mantas Kriaučiūnas
Why the status of this bug is set to Fix Committed ? This bug isn't
fixed, it seems someone set status of upstream bug to Fix Released by
mistake, look at latest comments in upstream bug:

David Prieto at 2008-04-19 16:52 UTC wrote:
 There still is no way to activate overburn when trying to burn an .ISO file.
 There is no question asking you if you want to activate it, it just doesn't 
 let you burn it at all.
 So I think the bug should be reopened.

** Changed in: brasero (Ubuntu)
   Status: Fix Committed = Confirmed

-- 
Offer overburn when burning a .ISO file
https://bugs.launchpad.net/bugs/202949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 207072] Re: nautilus does not display samba shares for machines inside an ADS network.

2008-06-14 Thread redfox
I have a question that does not directly concern this bug but is
somewhat related.  On my system, there is some inconsistency in the way
the icons of the machines containing the shares are displayed in
Nautilus.  Most of the time, they are displayed correctly, i.e. inside
the workgroup.  However, sometimes they also appear alongside the
Windows Network icon, i.e. just after clicking on Network.

Can anybody explain this inconsistency?  Could it possibly point to
another bug in Ubuntu 8.04?

-- 
nautilus does not display samba shares for machines inside an ADS network.
https://bugs.launchpad.net/bugs/207072
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is the registrant for gvfs.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 199561] Re: Brasero cannot burn a CD ISO image to DVD+RW

2008-06-14 Thread Mantas Kriaučiūnas
It seems this bug is duplicate of bug #226209 (Brasero requieres 4GiB on
/tmp to burn an iso image on DVD) and it's already fixed in new upstream
version (0.7.90).

-- 
Brasero cannot burn a CD ISO image to DVD+RW
https://bugs.launchpad.net/bugs/199561
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239524] Re: [new-upstream] Brasero 0.7.90

2008-06-14 Thread Mantas Kriaučiūnas
Please upload new Brasero version to Ubuntu - it will fix lots of
important bugs, like bug #199561 (Brasero cannot burn a CD ISO image to
DVD+RW); bug #226209 (Brasero requieres 4GiB on /tmp to burn an iso
image on DVD); bug #198771 (Brasero is still running with gnome_vfs) and
others.

-- 
[new-upstream] Brasero 0.7.90
https://bugs.launchpad.net/bugs/239524
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to brasero in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239949] [NEW] Evince uses document-specific settings across different documents

2008-06-14 Thread François Ingelrest
Public bug reported:

Binary package hint: evince

See bug 153882.

If you change the number of pages per paper sheet to print a given
document, this setting is reused for other non-related document. This
should not happen.

** Affects: evince (Ubuntu)
 Importance: Undecided
 Status: New

** Summary changed:

- Evince use document-specific settings across different documents
+ Evince uses document-specific settings across different documents

-- 
Evince uses document-specific settings across different documents
https://bugs.launchpad.net/bugs/239949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evince in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


Re: [Bug 219826] Re: no trash symbol on the gnome-panel

2008-06-14 Thread jdelima
*** This bug is a duplicate of bug 49594 ***
https://bugs.launchpad.net/bugs/49594

i haven't been able to restore the trash symbol since i upgraded to 
hardy.  but i discovered that i can delete  empty trash by going to 
file browser and moving unwanted files to the deleted items folder.  i 
think trash has been renamed deleted items.  so i don't bother trying 
to restore the trash on the gnome panel.

Daniel wrote:
 *** This bug is a duplicate of bug 49594 ***
 https://bugs.launchpad.net/bugs/49594

 My trash symbol is also invisible, but I can use it. It makes no
 different if trash is filled with something. Trash is still invisible.



-- 
no trash symbol on the gnome-panel
https://bugs.launchpad.net/bugs/219826
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-panel in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239954] [NEW] message Syntek didgicam not working but it is working

2008-06-14 Thread oldjudy
Public bug reported:

Binary package hint: ekiga

When setting up the message given is that the Syntek Digicam fails - but going 
further it is working showing a pix.
Also cannot find a phone test button/programme/echo.
Ubuntu Hardy.

ProblemType: Bug
Architecture: i386
Date: Sat Jun 14 10:44:44 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/ekiga
Package: ekiga 2.0.12-0ubuntu2
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=en_US.UTF-8
 SHELL=/bin/bash
SourcePackage: ekiga
Uname: Linux 2.6.24-18-generic i686

** Affects: ekiga (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
message Syntek didgicam not working but it is working
https://bugs.launchpad.net/bugs/239954
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to ekiga in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239954] Re: message Syntek didgicam not working but it is working

2008-06-14 Thread oldjudy

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15304934/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/15304935/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/15304936/ProcStatus.txt

-- 
message Syntek didgicam not working but it is working
https://bugs.launchpad.net/bugs/239954
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to ekiga in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 150846] Re: Quit button freezes screen but does not present Log out etc. options dialog

2008-06-14 Thread Adi Roiban
*** This bug is a duplicate of bug 123078 ***
https://bugs.launchpad.net/bugs/123078

** Also affects: gnome-session (Ubuntu)
   Importance: Undecided
   Status: New

-- 
Quit button freezes screen but does not present Log out etc. options dialog
https://bugs.launchpad.net/bugs/150846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239949] Re: Evince uses document-specific settings across different documents

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, the description is not really detailled
though. what ubuntu version do you use?

** Changed in: evince (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Incomplete

-- 
Evince uses document-specific settings across different documents
https://bugs.launchpad.net/bugs/239949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239944] Re: Black background, white text

2008-06-14 Thread Sebastien Bacher
** Changed in: gtkhtml3.14 (Ubuntu)
Sourcepackagename: evolution = gtkhtml3.14

** Changed in: gtkhtml3.14 (Ubuntu)
   Importance: Undecided = Low

-- 
Black background, white text
https://bugs.launchpad.net/bugs/239944
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gtkhtml3.14 in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239941] Re: Can not read Chinese

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, could you attach an example to the bug?

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Incomplete

-- 
Can not read Chinese
https://bugs.launchpad.net/bugs/239941
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 218707] Re: Shutdown dialog does not show

2008-06-14 Thread Adi Roiban
*** This bug is a duplicate of bug 123078 ***
https://bugs.launchpad.net/bugs/123078

** This bug is no longer a duplicate of bug 150846
   Quit button freezes screen but does not present Log out etc. options dialog

** This bug has been marked a duplicate of bug 123078
   System - Quit takes a long time to appear

-- 
Shutdown dialog does not show
https://bugs.launchpad.net/bugs/218707
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee (via bug 123078).

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 7560] Re: Wastebasket fails with read only directories

2008-06-14 Thread Justin Murphy
type sudo chown -R {insert user name here} ~/.local/share/Trash/* into
the terminal

This will change the owner of all files in the trash to you then just
empty the trash like normal

Ubuntu Hardy

-- 
Wastebasket fails with read only directories
https://bugs.launchpad.net/bugs/7560
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a direct subscriber.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239931] Re: Please make it possible to have more than four keyboard layouts

2008-06-14 Thread Sebastien Bacher
Thanks for the bug report. This particular bug has already been
reported, but feel free to report any other bugs you find.

** Changed in: gnome-control-center (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Invalid

-- 
Please make it possible to have more than four keyboard layouts
https://bugs.launchpad.net/bugs/239931
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 150846] Re: Quit button freezes screen but does not present Log out etc. options dialog

2008-06-14 Thread Adi Roiban
*** This bug is a duplicate of bug 123078 ***
https://bugs.launchpad.net/bugs/123078

** This bug has been marked a duplicate of bug 123078
   System - Quit takes a long time to appear

-- 
Quit button freezes screen but does not present Log out etc. options dialog
https://bugs.launchpad.net/bugs/150846
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-session in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239488] Re: nautilus - reenabling /apps/nautilus/preferences/show_desktop does not show desktop

2008-06-14 Thread Sebastien Bacher
closing the bug, nautilus can't do changes when it's not running

** Changed in: nautilus (Ubuntu)
   Status: Incomplete = Invalid

-- 
nautilus - reenabling /apps/nautilus/preferences/show_desktop does not show 
desktop
https://bugs.launchpad.net/bugs/239488
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239888] Re: totem player video does not move with window

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, do you use the desktop effects option?

** Changed in: totem (Ubuntu)
   Importance: Undecided = Low
   Status: New = Incomplete

-- 
totem player video does not move with window
https://bugs.launchpad.net/bugs/239888
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to totem in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 233864] Re: Progress bar while copying to storage media is non-sensical.

2008-06-14 Thread Sebastien Bacher
** Changed in: rhythmbox (Ubuntu)
   Status: Invalid = Triaged

** Also affects: rhythmbox via
   http://bugzilla.gnome.org/show_bug.cgi?id=538240
   Importance: Unknown
   Status: Unknown

-- 
Progress bar while copying to storage media is non-sensical.
https://bugs.launchpad.net/bugs/233864
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239757] Re: Rhythmbox jams after other apps use ALSA

2008-06-14 Thread Sebastien Bacher
you don't have a really constructive attitude there

system, preferences, sounds, audio and video describes how to access
the property dialog you don't seem able to find on your installation

you should have 3 menus available, system is one of those, it has a
preferences category which has a sounds entry, click on this one, in
the dialog one option is audio and video

-- 
Rhythmbox jams after other apps use ALSA
https://bugs.launchpad.net/bugs/239757
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 127315] Re: F-Spot puts photos in Photos folder not Pictures folder

2008-06-14 Thread Michael Monreal

** Attachment added: Missing Photos folder
   http://launchpadlibrarian.net/15305204/fspot.png

-- 
F-Spot puts photos in Photos folder not Pictures folder
https://bugs.launchpad.net/bugs/127315
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to f-spot in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 127315] Re: F-Spot puts photos in Photos folder not Pictures folder

2008-06-14 Thread Michael Monreal
I just found that on a fresh ubuntu installation I get this error
message when I first open the preferences in f-spot (having canceled the
initial import dialog). Has anyone checked if f-spot actually creates
~/Photos/ if it needs it?

-- 
F-Spot puts photos in Photos folder not Pictures folder
https://bugs.launchpad.net/bugs/127315
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to f-spot in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 201224] Re: epiphany has no menue entry in Hardy

2008-06-14 Thread Sebastien Bacher
the issue is not an epiphany-browser one but a race in the menus code,
since the .desktop and the binary are in different packages the .desktop
might be unpacked before having the binary available which will make the
menu item not being listed since the binary it uses is not available and
the menus code will not do an another update until the next event
triggering a refresh or a session restart, anyway that's a known issue
in the code and not due to the software shipping the entry

** Changed in: epiphany-browser (Ubuntu)
   Status: New = Invalid

-- 
epiphany has no menue entry in Hardy
https://bugs.launchpad.net/bugs/201224
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239927] Re: Totem loads video then doesn't play it

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, does gst-launch-0.10 playbin
uri=file:///directory/to/video plays the video correctly? could you
attach an example to the bug?

** Changed in: totem (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Incomplete

-- 
Totem loads video then doesn't play it
https://bugs.launchpad.net/bugs/239927
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239954] Re: message Syntek didgicam not working but it is working

2008-06-14 Thread Yannick Defais
Hello,

I do not clearly understand what Ekiga tells you about your webcam.

To test you may register an account on ekiga.net, wait for the confirmation 
mail, then you should be able to call the echo test:
sip:[EMAIL PROTECTED]

You'll find more documentation here:
https://help.ubuntu.com/community/Ekiga

Regards,
Yannick

-- 
message Syntek didgicam not working but it is working
https://bugs.launchpad.net/bugs/239954
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to ekiga in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 233832] Re: gedit does not keep window position

2008-06-14 Thread Roman Polach
Well the upstream bug is something different: it is about not remembering 
window size if it has been maximized.
This bug is about not remembering window size in any window state.

Also I found that this problem does not appear for newly created users.
So it doesn't seem to be normal gedit behaviour.


** Summary changed:

- gedit does not keep window position
+ gedit does not keep the window size

** Description changed:

  In Hardy (default compiz appearance settings), after I close and open again 
gedit, its
- window has almost maximized position and size (and right side is slightly 
behind the screen)
- no matter what was the previous position and size before closing.
+ window has almost maximized size (and right side is slightly behind the 
screen)
+ no matter what was the previous window state and size before closing.

** Description changed:

  In Hardy (default compiz appearance settings), after I close and open again 
gedit, its
  window has almost maximized size (and right side is slightly behind the 
screen)
  no matter what was the previous window state and size before closing.
+ 
+ However this problem is not seen for newly created users.

-- 
gedit does not keep the window size
https://bugs.launchpad.net/bugs/233832
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 233832] Re: gedit does not keep the window size

2008-06-14 Thread Roman Polach
Corrected description.

-- 
gedit does not keep the window size
https://bugs.launchpad.net/bugs/233832
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239965] [NEW] Cursor blinking in email editor

2008-06-14 Thread t-gely
Public bug reported:

Binary package hint: evolution

The cursor blinking in email editor make cursor shadow copies under
moves. The cursor blinking slow and special. I'cant make faster or
slower. The window refress looks like wrong. (I use nvidia video card on
Hardy Heron)

Thanks,
Gery

ProblemType: Bug
Architecture: i386
Date: Sat Jun 14 11:24:49 2008
DistroRelease: Ubuntu 8.04
ExecutablePath: /usr/bin/evolution
Package: evolution 2.22.2-0ubuntu1.2
PackageArchitecture: i386
ProcEnviron:
 PATH=/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games
 LANG=hu_HU.UTF-8
 SHELL=/bin/bash
SourcePackage: evolution
Uname: Linux 2.6.24-18-generic i686

** Affects: evolution (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: apport-bug

-- 
Cursor blinking in email editor
https://bugs.launchpad.net/bugs/239965
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239965] Re: Cursor blinking in email editor

2008-06-14 Thread t-gely

** Attachment added: Dependencies.txt
   http://launchpadlibrarian.net/15305394/Dependencies.txt

** Attachment added: ProcMaps.txt
   http://launchpadlibrarian.net/15305395/ProcMaps.txt

** Attachment added: ProcStatus.txt
   http://launchpadlibrarian.net/15305396/ProcStatus.txt

-- 
Cursor blinking in email editor
https://bugs.launchpad.net/bugs/239965
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 148646] Re: [Gutsy] Crash on podcast download

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, could you try if that's still an issue in
hardy?

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Incomplete

-- 
[Gutsy] Crash on podcast download
https://bugs.launchpad.net/bugs/148646
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 128821] Re: [gutsy] Rhythmbox - can't create a playlist on the fly

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, that works correctly on hardy apparently,
could you try if that's still an issue for you?

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Incomplete

-- 
[gutsy] Rhythmbox - can't create a playlist on the fly
https://bugs.launchpad.net/bugs/128821
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 113693] Re: rhythmbox should provide more music radio stations

2008-06-14 Thread Sebastien Bacher
the list has been updated before hardy, do you consider the issue fixed
now?

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Incomplete

-- 
rhythmbox should provide more music radio stations
https://bugs.launchpad.net/bugs/113693
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to rhythmbox in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 192229] Re: weird selection rectangle

2008-06-14 Thread Sebastien Bacher
** Summary changed:

- Using built-in keyboard commands to control volume makes lists behave weird
+ weird selection rectangle

-- 
weird selection rectangle
https://bugs.launchpad.net/bugs/192229
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 95326] Re: sound juicer aac formatted files skip and...

2008-06-14 Thread Sebastien Bacher
does anybody still get the issue in hardy and could describe easy steps
to trigger the bug there?

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: New = Incomplete

** Changed in: gstreamer0.10 (Ubuntu)
   Status: New = Incomplete

** Changed in: sound-juicer (Ubuntu)
   Status: New = Incomplete

-- 
sound juicer aac formatted files skip and...
https://bugs.launchpad.net/bugs/95326
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239965] Re: Cursor blinking in email editor

2008-06-14 Thread Sebastien Bacher
thank you for your bug report, could you make a screenshot showing the
issue? what videodriver do you use?

** Changed in: evolution (Ubuntu)
   Importance: Undecided = Low
   Status: New = Incomplete

-- 
Cursor blinking in email editor
https://bugs.launchpad.net/bugs/239965
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239949] Re: Evince uses document-specific settings across different documents

2008-06-14 Thread François Ingelrest
I'm using an up-to-date Ubuntu 8.10. What kind of other details do you
need? For me, it's the same than bug 153882 but I was told to open a new
one.

-- 
Evince uses document-specific settings across different documents
https://bugs.launchpad.net/bugs/239949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 221900] Re: After logging in by thinkfinger, I have to give nm-applet access to keyring by typing in password

2008-06-14 Thread LaTrell
I have the same laptop Dell M1530 and I am having problem with the
fingerprint acknowledging the installs.  I followed all the procedures
and still nothing not even a simple ask to scan.  Anyways to remove
files that were installed that are not working to start the procedures
again?  JesperDJ, do you still have the procedures to loading your
installs.  Currently installing Skype hopethis work.

Thanks for any and all assistant


LaTrell

-- 
After logging in by thinkfinger, I have to give nm-applet access to keyring by 
typing in password
https://bugs.launchpad.net/bugs/221900
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 202941] Re: [hardy] gnome-keyring-manager not installable

2008-06-14 Thread Florent Guiliani
Same here:

[EMAIL PROTECTED]:~/tmp/trader$ sudo aptitude install gnome-keyring-manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Building tag database... Done
No candidate version found for gnome-keyring-manager
No candidate version found for gnome-keyring-manager
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~/tmp/trader$

Here is my apt/source.list:

deb http://de.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy main restricted
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb http://de.archive.ubuntu.com/ubuntu/ hardy universe
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy universe
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe
deb http://de.archive.ubuntu.com/ubuntu/ hardy multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-backports main restricted 
universe multiverse
deb http://archive.canonical.com/ubuntu hardy partner
deb-src http://archive.canonical.com/ubuntu hardy partner
deb http://security.ubuntu.com/ubuntu hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted
deb http://security.ubuntu.com/ubuntu hardy-security universe
deb-src http://security.ubuntu.com/ubuntu hardy-security universe
deb http://security.ubuntu.com/ubuntu hardy-security multiverse
deb-src http://security.ubuntu.com/ubuntu hardy-security multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-proposed restricted main 
multiverse universe


** Changed in: gnome-keyring-manager (Ubuntu)
   Status: Invalid = Confirmed

-- 
[hardy] gnome-keyring-manager not installable
https://bugs.launchpad.net/bugs/202941
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring-manager in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 187887] Re: evolution-exchange-storage crashed with signal 5 in g_return_if_fail_warning()

2008-06-14 Thread Žilvinas
Problem long solved, no more crashes - with 8.04 release 8) it is not
bothering me anymore. Time to close ?

-- 
evolution-exchange-storage crashed with signal 5 in g_return_if_fail_warning()
https://bugs.launchpad.net/bugs/187887
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 164986] Re: It can only have one music library

2008-06-14 Thread Sebastien Bacher
that's known upstream, you can read about it on
http://bugzilla.gnome.org/show_bug.cgi?id=100552

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Triaged

** Also affects: rhythmbox via
   http://bugzilla.gnome.org/show_bug.cgi?id=100552
   Importance: Unknown
   Status: Unknown

-- 
It can only have one music library
https://bugs.launchpad.net/bugs/164986
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 204384] Re: More (free) music stores in Rhythmbox

2008-06-14 Thread Sebastien Bacher
the ubuntu team doesn't have the ressources to work on that and there is
other priority to work on in rhythmbox, you should open a request on
bugzilla.gnome.org if you really think that's something required though

** Changed in: rhythmbox (Ubuntu)
   Status: New = Won't Fix

-- 
More (free) music stores in Rhythmbox
https://bugs.launchpad.net/bugs/204384
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 205976] Re: rhythmbox holds on to removable drives

2008-06-14 Thread Sebastien Bacher
how do you unmount the device? what device are you using? I've tried
using an ipod on hardy and it works correctly

** Changed in: rhythmbox (Ubuntu)
   Status: New = Incomplete

-- 
rhythmbox holds on to removable drives
https://bugs.launchpad.net/bugs/205976
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 196576] Re: Edit Automatic Playlist window does not scroll and cuts off when there are many list items

2008-06-14 Thread Sebastien Bacher
Thanks for your bug report. This bug has been reported to the developers
of the software. You can track it and make comments here:
http://bugzilla.gnome.org/show_bug.cgi?id=538285

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: Confirmed = Triaged

** Also affects: rhythmbox via
   http://bugzilla.gnome.org/show_bug.cgi?id=538285
   Importance: Unknown
   Status: Unknown

-- 
Edit Automatic Playlist window does not scroll and cuts off when there are many 
list items 
https://bugs.launchpad.net/bugs/196576
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 190950] Re: [hardy] gnome-desktop-environment is broken

2008-06-14 Thread Florent Guiliani
Same here :

[EMAIL PROTECTED]:~/tmp/trader$ sudo aptitude install gnome-keyring-manager
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Building tag database... Done
No candidate version found for gnome-keyring-manager
No candidate version found for gnome-keyring-manager
No packages will be installed, upgraded, or removed.
0 packages upgraded, 0 newly installed, 0 to remove and 0 not upgraded.
Need to get 0B of archives. After unpacking 0B will be used.
Writing extended state information... Done
Reading package lists... Done
Building dependency tree
Reading state information... Done
Reading extended state information
Initializing package states... Done
Building tag database... Done
[EMAIL PROTECTED]:~/tmp/trader$

with the following repositories:

deb http://de.archive.ubuntu.com/ubuntu/ hardy main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy main restricted
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates main restricted
deb http://de.archive.ubuntu.com/ubuntu/ hardy universe
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy universe
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates universe
deb http://de.archive.ubuntu.com/ubuntu/ hardy multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse
deb-src http://de.archive.ubuntu.com/ubuntu/ hardy-updates multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-backports main restricted 
universe multiverse
deb http://archive.canonical.com/ubuntu hardy partner
deb-src http://archive.canonical.com/ubuntu hardy partner
deb http://security.ubuntu.com/ubuntu hardy-security main restricted
deb-src http://security.ubuntu.com/ubuntu hardy-security main restricted
deb http://security.ubuntu.com/ubuntu hardy-security universe
deb-src http://security.ubuntu.com/ubuntu hardy-security universe
deb http://security.ubuntu.com/ubuntu hardy-security multiverse
deb-src http://security.ubuntu.com/ubuntu hardy-security multiverse
deb http://de.archive.ubuntu.com/ubuntu/ hardy-proposed restricted main 
multiverse universe

-- 
[hardy] gnome-desktop-environment is broken
https://bugs.launchpad.net/bugs/190950
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring-manager in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 193086] Re: Podcasts/feeds download and play, but still says failed. Unable to control playback within sound file.

2008-06-14 Thread Sebastien Bacher
Thank you for your bug report, the issue seem similar to
http://bugzilla.gnome.org/show_bug.cgi?id=479897

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: Confirmed = Triaged

** Also affects: rhythmbox via
   http://bugzilla.gnome.org/show_bug.cgi?id=479897
   Importance: Unknown
   Status: Unknown

-- 
Podcasts/feeds download and play, but still says failed. Unable to control 
playback within sound file.
https://bugs.launchpad.net/bugs/193086
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 230016] Re: [intrepid] Rebuild with perl 5.10

2008-06-14 Thread Colin Watson
vim (1:7.1.293-3ubuntu1) intrepid; urgency=low

  * Merge from debian unstable (LP: #234766), remaining changes:
- Enable detection of GNU screen as a mouse-capable terminal.
- Add NoDisplay=true to gvim.desktop.
- Drop vim-lesstif package and lesstif2-dev build-dependency.
- Build-depend on libxt-dev.
- Restore a number of Conflicts/Replaces and include
  /usr/share/man/ru.{KOI8-R,UTF-8}{,/man1}, both to help with upgrade
  problems from 6.06.
- Enable Python interpreter on basic builds.
- Create a .pot file for translations.
- Disable autoindent, line-wrapping, and backup files by default.
- Omni completion for Launchpad bugs.

 -- Fabien Tassin [EMAIL PROTECTED]  Sun, 25 May 2008 14:10:50 +0200

vim (1:7.1.293-3) unstable; urgency=low

  * runtime/syntax/debchangelog.vim,debsources.vim:
- Update the list of supported Ubuntu releases.
  * debian/policy/vim-policy.xml:
- Remove svn keywords since it's not being stored in svn anymore.
  * debian/vim-variant.postinst:
- Remove switching on $1 since it's safe to always add the alternatives.
  * debian/vim-variants.prerm:
- Add removal of alternatives during deconfigure.  (Closes: #411697)
  * debian/README.Debian:
- Add information about mimicing Vim's default modeline behavior and the
  securemodelines plugin.  (Closes: #479060)
  * debian/rules:
- Separate build-arch and build-indep targets so Vim's policy document
  aren't built on the buildd's (thus avoiding the openjade segfault on
  arm).
  * debian/control:
- Move docbook-utils and docbook-xml to Build-Depends-Indep
  * src/if_python.c:
- If building against Python 2.5, use ssize_t instead of int according to
  PEP 353.

 -- James Vega [EMAIL PROTECTED]  Sun, 04 May 2008 14:11:17 -0400

** Changed in: vim (Ubuntu)
 Assignee: (unassigned) = Colin Watson (kamion)
   Status: Fix Committed = Fix Released

-- 
[intrepid] Rebuild with perl 5.10
https://bugs.launchpad.net/bugs/230016
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to xchat-gnome in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 198788] Re: Deleting files from queue

2008-06-14 Thread Sebastien Bacher
*** This bug is a duplicate of bug 43499 ***
https://bugs.launchpad.net/bugs/43499

Thanks for the bug report. This particular bug has already been
reported, but feel free to report any other bugs you find.

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Invalid

** This bug has been marked a duplicate of bug 43499
   Delete Songs from the 'Queued Songs' list

-- 
Deleting files from queue
https://bugs.launchpad.net/bugs/198788
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 158137] Re: Large music (80 gb) library slows rhythmbox to an unusable crawl

2008-06-14 Thread Sebastien Bacher
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Invalid

-- 
Large music (80 gb) library slows rhythmbox to an unusable crawl
https://bugs.launchpad.net/bugs/158137
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 163395] Re: Rhythmbox does not inhibit hibernation

2008-06-14 Thread Sebastien Bacher
there is a plugin available in the current version doing that, closing
the bug

** Changed in: rhythmbox (Ubuntu)
 Assignee: Basilio Kublik (sourcercito) = Ubuntu Desktop Bugs 
(desktop-bugs)
   Status: Incomplete = Fix Released

-- 
Rhythmbox does not inhibit hibernation
https://bugs.launchpad.net/bugs/163395
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 186338] Re: radio playback works, but does not appear as playback

2008-06-14 Thread Sebastien Bacher
do you still get the issue in hardy? could you describe easy steps to
trigger it?

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)

-- 
radio playback works, but does not appear as playback
https://bugs.launchpad.net/bugs/186338
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 212098] Re: easy file sharing not notifying about logout/login

2008-06-14 Thread Josh Smith
couldnt we just change the text in the dialog to be something more useful.
ie change:
'net usershare' returned error 255: net usershare add: failed to add share 
public. Error was Operation not permitted
to:
'net usershare' returned error 255: net usershare add: failed to add share 
public. Error was Operation not permitted. You may need to log out.

-- 
easy file sharing not notifying about logout/login
https://bugs.launchpad.net/bugs/212098
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 202941] Re: [hardy] gnome-keyring-manager not installable

2008-06-14 Thread Sebastien Bacher
that's not a bug, the software is deprecated and has been removed in
hardy

** Changed in: gnome-keyring-manager (Ubuntu)
   Status: Confirmed = Invalid

-- 
[hardy] gnome-keyring-manager not installable
https://bugs.launchpad.net/bugs/202941
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to gnome-keyring-manager in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 172914] Re: Cover Art plugin does not work for compilations

2008-06-14 Thread Sebastien Bacher
thank you for your bug report. that works correctly on hardy apparently,
could you try if that's still an issue for you and attach a rhythmbox -d
log?

** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Incomplete

-- 
Cover Art plugin does not work for compilations
https://bugs.launchpad.net/bugs/172914
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239949] Re: Evince uses document-specific settings across different documents

2008-06-14 Thread Sebastien Bacher
specifing the ubuntu version is enough for now, a bug should always have
the basic informations in its description

** Changed in: evince (Ubuntu)
   Status: Incomplete = New

-- 
Evince uses document-specific settings across different documents
https://bugs.launchpad.net/bugs/239949
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 217590] Re: Rhythmbox visualization crashes

2008-06-14 Thread Sebastien Bacher
the log has no stacktrace, do you still get the issue? why do you want
to install yelp-dbgsym, that's a rhythmbox issue you describe

-- 
Rhythmbox visualization crashes
https://bugs.launchpad.net/bugs/217590
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 212866] Re: rhythmbox crashed with SIGSEGV

2008-06-14 Thread Sebastien Bacher
Closing for now since it works correctly now, feel free to reopen if you
get the issue again though

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Invalid

-- 
rhythmbox crashed with SIGSEGV
https://bugs.launchpad.net/bugs/212866
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 212453] Re: Rhythmbox library removes itself

2008-06-14 Thread Sebastien Bacher
do you still get the issue? could you describe how to trigger it easily?

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: Confirmed = Incomplete

-- 
Rhythmbox library removes itself
https://bugs.launchpad.net/bugs/212453
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239965] Re: Cursor blinking in email editor

2008-06-14 Thread t-gely

** Attachment added: Képernyőkép.png
   http://launchpadlibrarian.net/15306846/K%C3%A9perny%C5%91k%C3%A9p.png

-- 
Cursor blinking in email editor
https://bugs.launchpad.net/bugs/239965
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs

[Bug 239965] Re: Cursor blinking in email editor

2008-06-14 Thread t-gely
Video driver
EnvyNg 169.12 Nvidia driver (Geforce 8600GT)

-- 
Cursor blinking in email editor
https://bugs.launchpad.net/bugs/239965
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to evolution in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 218294] Re: rhythmbox is not downloading coverflows anymore!

2008-06-14 Thread Sebastien Bacher
coudl you describe easy steps to trigger the issue and attach the debug
log requested?

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low

-- 
rhythmbox is not downloading coverflows anymore!
https://bugs.launchpad.net/bugs/218294
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Sebastien Bacher
could you read https://wiki.ubuntu.com/DebuggingRemovableDevices and
attach the informations required there?

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 218620] Re: rhythmbox problem opening files from file browser

2008-06-14 Thread Sebastien Bacher
Thanks for the bug report. This particular bug has already been
reported, but feel free to report any other bugs you find.

** Changed in: rhythmbox (Ubuntu)
   Importance: Undecided = Low
   Status: Incomplete = Invalid

-- 
rhythmbox problem opening files from file browser 
https://bugs.launchpad.net/bugs/218620
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 202526] Re: rhythmbox crashed with SIGSEGV in g_type_check_instance_cast()

2008-06-14 Thread Sebastien Bacher
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Invalid

-- 
rhythmbox crashed with SIGSEGV in g_type_check_instance_cast()
https://bugs.launchpad.net/bugs/202526
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


Re: [Bug 172914] Re: Cover Art plugin does not work for compilations

2008-06-14 Thread rorzer
It's working for me in hardy, with Rhythmbox 0.11.5

On Sat, Jun 14, 2008 at 10:47 PM, Sebastien Bacher [EMAIL PROTECTED]
wrote:

 thank you for your bug report. that works correctly on hardy apparently,
 could you try if that's still an issue for you and attach a rhythmbox -d
 log?

 ** Changed in: rhythmbox (Ubuntu)
   Status: Confirmed = Incomplete

 --
 Cover Art plugin does not work for compilations
 https://bugs.launchpad.net/bugs/172914
 You received this bug notification because you are a direct subscriber
 of the bug.



** Attachment added: unnamed
   http://launchpadlibrarian.net/15306893/unnamed

-- 
Cover Art plugin does not work for compilations
https://bugs.launchpad.net/bugs/172914
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 219736] Re: Font change on next song

2008-06-14 Thread Sebastien Bacher
is that specific to one song or do you get the issue on any song? could
you try on hardy?

-- 
Font change on next song
https://bugs.launchpad.net/bugs/219736
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 205439] Re: rhythmbox crashed with SIGSEGV in g_slice_free_chain_with_offset()

2008-06-14 Thread Sebastien Bacher
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Invalid

-- 
rhythmbox crashed with SIGSEGV in g_slice_free_chain_with_offset()
https://bugs.launchpad.net/bugs/205439
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 231254] Re: Vinagre says Connection to host was closed with working server

2008-06-14 Thread Emilio Pozuelo Monfort
This is fixed in Intrepid

** Changed in: vinagre (Ubuntu)
   Status: New = Fix Committed

-- 
Vinagre says Connection to host was closed with working server
https://bugs.launchpad.net/bugs/231254
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to vinagre in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195266] Re: Nautilus does not update trashcan icon

2008-06-14 Thread Tiede
I don't know what happened, but the trash icon issue seemed to be fixed about a 
month or so ago.
Now, I am sad to say that the problem is showing its ugly head again.
I wish I knew what specific update brought back the issue, but I am afraid I 
cannot recall...
Thanks for trying anyways... Hopefully a proper fix will come out for this 
regression.

-- 
Nautilus does not update trashcan icon
https://bugs.launchpad.net/bugs/195266
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195266] Re: Nautilus does not update trashcan icon

2008-06-14 Thread Tiede
Sorry for double posting, but I just noticed that the status of this bug report 
is Fix Released.
That particular fix no longer works. Somebody, please re-open this bug as the 
issue is STILL current under up-to-date hardy.

-- 
Nautilus does not update trashcan icon
https://bugs.launchpad.net/bugs/195266
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195266] Re: Nautilus does not update trashcan icon

2008-06-14 Thread Tiede
Re-opening this bug since the fix no longer works

** Changed in: nautilus (Ubuntu)
   Status: Fix Released = Confirmed

-- 
Nautilus does not update trashcan icon
https://bugs.launchpad.net/bugs/195266
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 186338] Re: radio playback works, but does not appear as playback

2008-06-14 Thread Maulwurf
Sorry, I am back on Gutsy. 
To trigger it on gutsy I do:
- start rythmbox
- switch to radio stations (list is already filled. I have attached one entry 
of my playlist. find more on http://www.rautemusik.fm/streams.php (using real 
player streams) )
- choose and start a stream by double clicking the entry.
- it immediatly says paused 
- stream gets buffered
- stream starts playing
- status is still paused

this is the same if
- choos a stream from the list by single click
- play it with the appropriate button from the menubar.

version:
Rhythmbox 0.11.2


** Attachment added: raute_club.ram
   http://launchpadlibrarian.net/15307669/raute_club.ram

-- 
radio playback works, but does not appear as playback
https://bugs.launchpad.net/bugs/186338
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Rory McCann
OK here are the files for the it.

** Attachment added: ls -l /dev/sd*
   http://launchpadlibrarian.net/15307734/devices.txt

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Rory McCann

** Attachment added: udev
   http://launchpadlibrarian.net/15307737/udev.log

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Rory McCann

** Attachment added: gnome-volume-manager
   http://launchpadlibrarian.net/15307743/gvm.log

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Rory McCann

** Attachment added: lshal
   http://launchpadlibrarian.net/15307748/lshal.txt

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Rory McCann

** Attachment added: dmesg
   http://launchpadlibrarian.net/15307755/dmesg.txt

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 200587] Re: [Wishlist] pop-up window when start copying music files from cds

2008-06-14 Thread Sebastien Bacher
not sure than adding extra dialog would be really useful, it would go in
the user way, maybe you could directly open the bug on
bugzilla.gnome.org which is the right place to discuss such behaviour
changes since you seem to have an opinion on the topic and are better
placed to argue there

** Changed in: rhythmbox (Ubuntu)
 Assignee: (unassigned) = Ubuntu Desktop Bugs (desktop-bugs)
   Status: Confirmed = Incomplete

-- 
[Wishlist] pop-up window when start copying music files from cds
https://bugs.launchpad.net/bugs/200587
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 239899] Re: Black arrows in yelp are backwards (Hebrew Locale)

2008-06-14 Thread Mark Krapivner
yes. same problem here...
yelp 2.22.1 on ubuntu 8.04.1

-- 
Black arrows in yelp are backwards (Hebrew Locale)
https://bugs.launchpad.net/bugs/239899
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to yelp in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 208723] Re: rhythmbox crashed with SIGSEGV in PyFrame_New()

2008-06-14 Thread Sebastien Bacher
We are closing this bug report as it lacks the information, described in
the previous comments, we need to investigate the problem further.
However, please reopen it if you can give us the missing information and
don't hesitate to submit bug reports in the future.

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Invalid

-- 
rhythmbox crashed with SIGSEGV in PyFrame_New()
https://bugs.launchpad.net/bugs/208723
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 237690] Re: [New Upstream] Firefox 3 RC2 is available

2008-06-14 Thread Swistak
Note that analogous radio buttons in Thunderbird are not grayed out.
It's a bit inconsistent.

-- 
[New Upstream] Firefox 3 RC2 is available
https://bugs.launchpad.net/bugs/237690
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is subscribed to devhelp in ubuntu.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 93396] Re: File save dialog delets filename when changing directory

2008-06-14 Thread hamoda
This bug still exists in a fresh installation of Ubuntu 8.04 Hardy
Heron. I could reproduce it only with gedit (v2.22.3):

- open an existing file
- select save as - file selector dialog opens (file name is in the name 
field)
- on the left side in the places panel single click on any place - the file 
name is being deleted from the name field

I could not find a package gtk+2.0 - 2.12.7-1ubuntu1 on my machine and
also not in the repos...

-- 
File save dialog delets filename when changing directory
https://bugs.launchpad.net/bugs/93396
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 186338] Re: radio playback works, but does not appear as playback

2008-06-14 Thread Sebastien Bacher
does anybody get the issue on hardy? could be one of the bug fixed in
the new version

-- 
radio playback works, but does not appear as playback
https://bugs.launchpad.net/bugs/186338
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 172914] Re: Cover Art plugin does not work for compilations

2008-06-14 Thread Sebastien Bacher
closing the bug since that's working correctly now

** Changed in: rhythmbox (Ubuntu)
   Status: Incomplete = Fix Released

-- 
Cover Art plugin does not work for compilations
https://bugs.launchpad.net/bugs/172914
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195208] Re: rythmbox doesn't work for iPod touch

2008-06-14 Thread Sebastien Bacher
the lshal log lists info.capabilities = {'camera', 'camera',
'access_control'} (string list), reassigning to hal-info

** Changed in: hal-info (Ubuntu)
Sourcepackagename: rhythmbox = hal-info
 Assignee: Ubuntu Desktop Bugs (desktop-bugs) = (unassigned)

-- 
rythmbox doesn't work for iPod touch
https://bugs.launchpad.net/bugs/195208
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


[Bug 195266] Re: Nautilus does not update trashcan icon

2008-06-14 Thread Sebastien Bacher
don't reopen a bug only because you have a similar issue, it could be an
another code bug leading to the same behaviour, better to open a new bug

** Changed in: nautilus (Ubuntu)
   Status: Confirmed = Fix Released

-- 
Nautilus does not update trashcan icon
https://bugs.launchpad.net/bugs/195266
You received this bug notification because you are a member of Ubuntu
Desktop Bugs, which is a bug assignee.

-- 
desktop-bugs mailing list
desktop-bugs@lists.ubuntu.com
https://lists.ubuntu.com/mailman/listinfo/desktop-bugs


  1   2   3   >