Re: [Bug 372789] Re: NotifyOSD notifications shouldn't appear when using fullscreen applications

2009-06-03 Thread Aurélien Gâteau
Ara Pulido wrote:
> Steve, as Aurélien said, this is something the design team needs to
> think about. Aurélien just shared his implementation and it is not
> decided that this is going to be the actual behavior.

Mmm... I think what Steve means is that in my branch notifications are
also blocked if you have a fullscreen window on another virtual desktop,
not a second physical monitor.
This is indeed a bug. Working on it.

-- 
NotifyOSD notifications shouldn't appear when using fullscreen applications
https://bugs.launchpad.net/bugs/372789
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

Re: [Bug 372789] Re: NotifyOSD notifications shouldn't appear when using fullscreen applications

2009-06-03 Thread Aurélien Gâteau
Aurélien Gâteau wrote:
> Ara Pulido wrote:
>> Steve, as Aurélien said, this is something the design team needs to
>> think about. Aurélien just shared his implementation and it is not
>> decided that this is going to be the actual behavior.
> 
> Mmm... I think what Steve means is that in my branch notifications are
> also blocked if you have a fullscreen window on another virtual desktop,
> not a second physical monitor.
> This is indeed a bug. Working on it.

Should be fixed. Can you try to update your checkout?

-- 
NotifyOSD notifications shouldn't appear when using fullscreen applications
https://bugs.launchpad.net/bugs/372789
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

Re: [Bug 372789] Re: NotifyOSD notifications shouldn't appear when using fullscreen applications

2009-06-03 Thread Aurélien Gâteau
Hemanth wrote:
> Yes it's working fine :) , can we just get to know which part of the code
> was updated ?

Sure, here is the diff:

http://bazaar.launchpad.net/~agateau/notify-osd/no-bubble-in-
fullscreen/revision/328?start_revid=328&remember=326&compare_revid=326

-- 
NotifyOSD notifications shouldn't appear when using fullscreen applications
https://bugs.launchpad.net/bugs/372789
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 372789] Re: NotifyOSD notifications shouldn't appear when using fullscreen applications

2009-06-02 Thread Aurélien Gâteau
I implemented fullscreen detection so that bubbles do not show up if
there is a fullscreen window, but I am not sure how to handle multi
monitor setups. We need input from the design team here.

If anyone is interested, the code can be downloaded with:

bzr get lp:~agateau/notify-osd/no-bubble-in-fullscreen

-- 
NotifyOSD notifications shouldn't appear when using fullscreen applications
https://bugs.launchpad.net/bugs/372789
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 308060] Re: Include libmsn in main

2009-03-20 Thread Aurélien Gâteau
Here is a patch which changes the prototype of _tcscpy() to accept a
length parameter and adjust the code accordingly.

** Attachment added: "02-avoid_potential_buffer_overrun.diff"
   http://launchpadlibrarian.net/24149888/02-avoid_potential_buffer_overrun.diff

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 308060] Re: Include libmsn in main

2009-03-20 Thread Aurélien Gâteau
Kees Cook wrote:
> On Fri, Mar 20, 2009 at 02:09:33PM -0000, Aurélien Gâteau wrote:
>> http://launchpadlibrarian.net/24149888/02-avoid_potential_buffer_overrun.diff
> 
> "n" should be verified to be !=0, so that result[-1] isn't used.
[snip]

> This change does not have the same functionality (in toXMLStringUnSafe):
[snip]
> the original can copy up to 4 characters (notice the lack of breaks).
> 
> Also, nothing in the loop is testing that "length" is remaining positive.
> This should be checked in toXMLStringUnSafe, CreateXMLStringR (if nResult
> is ever >= length, abort), and in _tcscpy (where it should abort if n<0).
[snip]

I agree with these remarks (shame on me for the switch() error), I went
to fix those bugs, but after further inspection, I believe the changes
are not necessary or at least not at the right place:

_tcspy() is called from CreateXMLStringR() and toXMLStringUnSafe() only.
- CreateXMLStringR() can be called with a null pointer, in this case it
compute the necessary buffer size. This is what CreateXMLString(), the
only caller, does.

- toXMLStringUnSafe() is called from CreateXMLStringR(), which is fine
and from toXML(), which compute the source string length before.

All in all I think the code is fine, or that the fix should be on the
malloc()/realloc() calls which are done after computing the buffer lengths.

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 308060] Re: Include libmsn in main

2009-03-23 Thread Aurélien Gâteau
My patch is not fine (because of the switch case error I introduced).
What I meant is that _tcscpy() is only dangerous if either the source
buffer is not 0 terminated, or the source buffer is 0 terminated but the
destination buffer is too small.

After further inspection of the original code, I believe it only runs
_tcscpy() on 0 terminated source buffers, and correctly takes care of
allocating destination buffers big enough so that they cannot be
overrun.

That's why I believe the original code is ok and does not need to be
patched.

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 308060] Re: Include libmsn in main

2009-03-24 Thread Aurélien Gâteau
More on this. I wrote a simple test program to exercise the parser. I am
able to make toXMLStringUnSafe read past the source buffer end, but
strangely valgrind does not complain.

I also started to test the whole parser with strange strings. So far I
can't get it to crash or valgrind to complain. I will continue a bit
further on this. I attach my test program to this message, place it
inside the msn/ dir and run "make test" to build it.

** Attachment added: "Test program"
   http://launchpadlibrarian.net/24312398/test.cpp

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 339902] Re: notifications visible through the screensaver

2009-03-26 Thread Aurélien Gâteau
Taking inspiration from KPassivePopup code, attached patch should fix
the problem.


** Attachment added: 
"kubuntu_67_do_not_show_plasma_popups_over_screensaver.diff"
   
http://launchpadlibrarian.net/24365587/kubuntu_67_do_not_show_plasma_popups_over_screensaver.diff

-- 
notifications visible through the screensaver
https://bugs.launchpad.net/bugs/339902
You received this bug notification because you are a member of Ubuntu
Bugs, which is a direct subscriber.

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


[Bug 308060] Re: Include libmsn in main

2009-03-27 Thread Aurélien Gâteau
Please revert! As pointed out by Kees Cook, the patch is not correct.

As I said, I believe the patch is not needed, but if you are to include
this, then at least fix the switch() bug I introduced.

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 308060] Re: Include libmsn in main

2009-03-27 Thread Aurélien Gâteau
... or use this updated patch.

** Attachment added: "Updated version of proposed patch"
   http://launchpadlibrarian.net/24406382/02-avoid_potential_buffer_overrun.diff

-- 
Include libmsn in main
https://bugs.launchpad.net/bugs/308060
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 339313] Re: Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key

2009-04-10 Thread Aurélien Gâteau
I experienced the same problem. I have an access point with an ascii wep
key. I was able to make it run by entering the key in hexadecimal rather
than in ascii. Can you try to do so and see if it fixes the problem?

If you need help converting your key to hex, here is a small Python
trick I used:

- From the command line, start Python:
python

- Enter your key:
key="YourAsciiKey"

- Enter this:
"".join(["%02x" % ord(x) for x in key])

The hex key should be displayed.

-- 
Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key
https://bugs.launchpad.net/bugs/339313
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-network-manager in ubuntu.

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


[Bug 339313] Re: Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key

2009-04-14 Thread Aurélien Gâteau
I was not asking to enter the hex key in your router, but in the dialog
shown by plasma-widget-network-manager. When I entered the wep key as
hex instead of ascii plasma-widget-network-manager connected
successfully.

-- 
Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key
https://bugs.launchpad.net/bugs/339313
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-network-manager in ubuntu.

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


[Bug 408941] [NEW] Backport support for version 0.10 of the notification spec

2009-08-04 Thread Aurélien Gâteau
Public bug reported:

Binary package hint: notification-daemon

Work has been going on to create a new backward-compatible version of
the notification spec: v0.10. This new spec makes it possible to share
notifications between KDE and GNOME.

Upstream is ok to merge the patches, but I don't think a new release
will be ready for Karmic. Attached debdiff provides a backport.

** Affects: notification-daemon (Ubuntu)
 Importance: Undecided
 Status: New

-- 
Backport support for version 0.10 of the notification spec
https://bugs.launchpad.net/bugs/408941
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 408941] Re: Backport support for version 0.10 of the notification spec

2009-08-04 Thread Aurélien Gâteau

** Attachment added: "notification-daemon-notifications-0.10.debdiff"
   
http://launchpadlibrarian.net/29900434/notification-daemon-notifications-0.10.debdiff

-- 
Backport support for version 0.10 of the notification spec
https://bugs.launchpad.net/bugs/408941
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 408940] [NEW] Backport support for version 0.10 of the notification spec

2009-08-04 Thread Aurélien Gâteau
Public bug reported:

Work has been going on to create a new backward-compatible version of
the notification spec: v0.10. This new spec makes it possible to share
notifications between KDE and GNOME.

Upstream is ok to merge the patches, but I don't think a new release
will be ready for Karmic. Attached debdiff provides a backport.

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

-- 
Backport support for version 0.10 of the notification spec
https://bugs.launchpad.net/bugs/408940
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 408940] Re: Backport support for version 0.10 of the notification spec

2009-08-04 Thread Aurélien Gâteau

** Attachment added: "libnotify-notifications-0.10.debdiff"
   http://launchpadlibrarian.net/29900412/libnotify-notifications-0.10.debdiff

-- 
Backport support for version 0.10 of the notification spec
https://bugs.launchpad.net/bugs/408940
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 400138] [NEW] udev needs Breaks: casper (<< 1.174) for vol_id

2009-07-16 Thread Aurélien Gâteau
Public bug reported:

Updating from Jaunty to Karmic failed on initramfs-tools with this
error:

update-initramfs: Generating /boot/initrd.img-2.6.28-13-generic
cpio: ./lib/udev/vol_id: Cannot stat: No such file or directory
update-initramfs: failed for /boot/initrd.img-2.6.28-13-generic
dpkg: le sous-processus script post-installation installé a retourné une erreur 
de sortie d'état 1
E: dpkg was interrupted, you must manually run 'sudo dpkg --configure -a' to 
correct the problem.

After some investivation with Steve Langasek on #ubuntu-devel, he found
out this was caused by udev missing a "Breaks: casper (<< 1.174)" in
debian/control.

(If you stumble on that bug, you can get out of it with "sudo dpkg -r
lupin-casper casper")

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

-- 
udev needs Breaks: casper (<< 1.174) for vol_id
https://bugs.launchpad.net/bugs/400138
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 339313] Re: Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key

2009-06-10 Thread Aurélien Gâteau
The Kubuntu devs have been working on packaging a new version of the
plasmoid, but it was not fully satisfying :/. Have a look at bug 334052
and bug 330811, maybe the new version can help you nevertheless.

-- 
Kubuntu Jaunty: Cannot Connect To Wireless Network with WEP shared key
https://bugs.launchpad.net/bugs/339313
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 115223] Tested on x86

2007-11-19 Thread Aurélien Gâteau
I just tested it on x86. It works for me.

-- 
Please backport Wengophone 2.1 from Hardy to Feisty
https://bugs.launchpad.net/bugs/115223
You received this bug notification because you are a member of Ubuntu
Bugs, which is the bug contact for Ubuntu.

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


[Bug 548882] Re: right click menus on system tray display off-screen

2010-03-29 Thread Aurélien Gâteau
This should be fixed with the latest dbusmenu patches I sent to Jonathan
Riddell. I don't think they are in yet.

-- 
right click menus on system tray display off-screen
https://bugs.launchpad.net/bugs/548882
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 550000] Re: konsole/systemsettings/dolphin starts up slowly

2010-03-29 Thread Aurélien Gâteau
This is really strange because neither Konsole, Dolphin or System
Settings use the class which is modified by the DBusMenu patch. When you
upgraded the livecd to kdelibs 4.4.1 ubuntu3, did it bring other package
updates with it?

-- 
konsole/systemsettings/dolphin starts up slowly
https://bugs.launchpad.net/bugs/55
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 497769] Re: Crop handles are invisible

2010-02-12 Thread Aurélien Gâteau
It seems the SRU is not going to happen, and since we now have 4.3.5 in
backports, let's close this one. At least I can point users to a
solution now.

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

-- 
Crop handles are invisible
https://bugs.launchpad.net/bugs/497769
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 521011] Re: Knotes crash on close

2010-02-17 Thread Aurélien Gâteau
** Changed in: libdbusmenu-qt (Ubuntu)
   Status: New => Fix Committed

** Changed in: libdbusmenu-qt (Ubuntu)
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

** Changed in: libdbusmenu-qt (Ubuntu)
   Importance: Undecided => High

-- 
 Knotes crash on close
https://bugs.launchpad.net/bugs/521011
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 502409] Re: Wrong dispay in Plasma Indicator Display when quassel-client is installed but not quassel

2010-01-05 Thread Aurélien Gâteau
** Changed in: libindicate-qt (Ubuntu)
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

-- 
Wrong dispay in Plasma Indicator Display when quassel-client is installed but 
not quassel
https://bugs.launchpad.net/bugs/502409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 502409] Re: Wrong dispay in Plasma Indicator Display when quassel-client is installed but not quassel

2010-01-06 Thread Aurélien Gâteau
This should fix the bug. Patch is against Quassel master, but it should
apply to latest release as well.

** Attachment added: "quassel-indicator-ensure-desktop-file-is-found.diff"
   
http://launchpadlibrarian.net/37478281/quassel-indicator-ensure-desktop-file-is-found.diff

** Changed in: libindicate-qt (Ubuntu)
   Importance: Undecided => Medium

** Changed in: libindicate-qt (Ubuntu)
   Status: Confirmed => In Progress

** Package changed: libindicate-qt (Ubuntu) => quassel (Ubuntu)

-- 
Wrong dispay in Plasma Indicator Display when quassel-client is installed but 
not quassel
https://bugs.launchpad.net/bugs/502409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 502409] Re: Wrong dispay in Plasma Indicator Display when quassel-client is installed but not quassel

2010-01-07 Thread Aurélien Gâteau
Fix has been integrated in Quassel master

** Changed in: quassel (Ubuntu)
   Status: In Progress => Fix Committed

** Changed in: quassel (Ubuntu)
 Assignee: Aurélien Gâteau (agateau) => Quassel (quassel)

-- 
Wrong dispay in Plasma Indicator Display when quassel-client is installed but 
not quassel
https://bugs.launchpad.net/bugs/502409
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 496880] Re: konversation doesn't update the msg indicator when just switching back to the application window

2010-01-22 Thread Aurélien Gâteau
This patch should fix the bug. It aggregates all indicator patches into
one, so it should replace the 3 kubuntu indicator patches in the
package.

** Attachment added: "0001-Adds-support-for-Message-Indicator.diff"
   
http://launchpadlibrarian.net/38236911/0001-Adds-support-for-Message-Indicator.diff

** Changed in: konversation (Ubuntu)
   Status: Triaged => Fix Committed

** Changed in: konversation (Ubuntu)
     Assignee: Aurélien Gâteau (agateau) => Jonathan Thomas (echidnaman)

-- 
konversation doesn't update the msg indicator when just switching back to the 
application window
https://bugs.launchpad.net/bugs/496880
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to konversation in ubuntu.

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


[Bug 404026] Re: notify-osd launch assumes GDM

2009-11-20 Thread Aurélien Gâteau
** Changed in: notify-osd (Ubuntu)
   Status: Incomplete => In Progress

** Changed in: notify-osd (Ubuntu)
 Assignee: (unassigned) => Ken VanDine (ken-vandine)

-- 
notify-osd launch assumes GDM
https://bugs.launchpad.net/bugs/404026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 497769] [NEW] Crop handles are invisible

2009-12-17 Thread Aurélien Gâteau
Public bug reported:

Binary package hint: kdegraphics

I got reports from several users that crop handles are invisible, making
it very difficult to use the crop tool.

I suspect the bug is Qt related, but I committed a simple work-around
for it in KDE 4.3 branch anyway (too late for 4.3.4) unfortunately. It
would be really great if an SRU could be created for it.

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

-- 
Crop handles are invisible
https://bugs.launchpad.net/bugs/497769
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdegraphics in ubuntu.

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


[Bug 497769] Re: Crop handles are invisible

2009-12-17 Thread Aurélien Gâteau
Here is the patch. As you can see, it only changes the border color to
be fully opaque, so it's quite trivial.

** Attachment added: "gwenview-fix-invisible-crop-handles.diff"
   
http://launchpadlibrarian.net/36904836/gwenview-fix-invisible-crop-handles.diff

-- 
Crop handles are invisible
https://bugs.launchpad.net/bugs/497769
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdegraphics in ubuntu.

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


[Bug 507905] Re: can't right click if no apps running

2010-02-22 Thread Aurélien Gâteau
** Changed in: plasma-widget-message-indicator
   Status: Fix Committed => Fix Released

** Changed in: plasma-widget-message-indicator (Ubuntu)
 Assignee: (unassigned) => Jonathan Riddell (jr)

-- 
can't right click if no apps running
https://bugs.launchpad.net/bugs/507905
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 526532] [NEW] $HOME/.xsession is ignored

2010-02-23 Thread Aurélien Gâteau
Public bug reported:

Binary package hint: xorg

$HOME/.xsession is not sourced by /etc/X11/Xsession script. This is
because the script /etc/X11/Xsession.d/50x11-common_determine-startup
checks for the "allow-user-session" option from
/etc/X11/Xsession.options, but the option name is "allow-user-xsession".

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

** Description changed:

  Binary package hint: xorg
  
  $HOME/.xsession is not sourced by /etc/X11/Xsession script. This is
- because the script /etc/X11/Xsession.d/50x11-common_determine-startup,
+ because the script /etc/X11/Xsession.d/50x11-common_determine-startup
  checks for the "allow-user-session" option from
  /etc/X11/Xsession.options, but the option name is "allow-user-xsession".

-- 
$HOME/.xsession is ignored
https://bugs.launchpad.net/bugs/526532
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 422069] Re: kmail message indicator patch should go upstream

2009-11-16 Thread Aurélien Gâteau
** Changed in: kdepim (Ubuntu)
   Status: New => Fix Released

-- 
kmail message indicator patch should go upstream
https://bugs.launchpad.net/bugs/422069
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdepim in ubuntu.

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


[Bug 548882] Re: right click menus on system tray display off-screen

2010-04-09 Thread Aurélien Gâteau
** Changed in: ayatana-ubuntu
   Status: Triaged => Fix Released

** Changed in: libdbusmenu-qt (Ubuntu Lucid)
   Status: In Progress => Fix Released

-- 
right click menus on system tray display off-screen
https://bugs.launchpad.net/bugs/548882
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 553685] Re: No icons for "last.fm love and ban" in tray icon

2010-04-02 Thread Aurélien Gâteau
** Changed in: amarok (Ubuntu)
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

-- 
No icons for "last.fm love and ban" in tray icon
https://bugs.launchpad.net/bugs/553685
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 538136] Re: message indicator doesn't move from panel to systray on upgrade

2010-04-02 Thread Aurélien Gâteau
The kconf_update was not a really good idea because it depended on a new
kconf_update binary. Version 0.5.4 (released today) provides a
transitional plasma-widget-indicatordisplay.desktop file to ease the
transition, as suggested by Harald.

** Changed in: plasma-widget-message-indicator
   Status: Fix Released => Fix Committed

-- 
message indicator doesn't move from panel to systray on upgrade
https://bugs.launchpad.net/bugs/538136
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 538136] Re: message indicator doesn't move from panel to systray on upgrade

2010-04-02 Thread Aurélien Gâteau
** Changed in: plasma-widget-message-indicator
   Status: Fix Committed => Fix Released

-- 
message indicator doesn't move from panel to systray on upgrade
https://bugs.launchpad.net/bugs/538136
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 555664] Re: protocol icon in kopete status popup broken

2010-04-06 Thread Aurélien Gâteau
I think this is an upstream bug. The tooltip is not provided via
dbusmenu so it should not be affected by dbusmenu patches. Will test
current trunk to confirm.

-- 
protocol icon in kopete status popup broken
https://bugs.launchpad.net/bugs/555664
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdenetwork in ubuntu.

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


[Bug 555664] Re: protocol icon in kopete status popup broken

2010-04-06 Thread Aurélien Gâteau
Just tested, I have the same problem with pristine KDE trunk.

-- 
protocol icon in kopete status popup broken
https://bugs.launchpad.net/bugs/555664
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdenetwork in ubuntu.

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


[Bug 553685] Re: No icons for "last.fm love and ban" in tray icon

2010-04-06 Thread Aurélien Gâteau
Fixed in latest kdebase-workspace dbusmenu patch (which should be
integrated soon)

** Changed in: amarok (Ubuntu Lucid)
   Status: Triaged => Fix Committed

-- 
No icons for "last.fm love and ban" in tray icon
https://bugs.launchpad.net/bugs/553685
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to amarok in ubuntu.

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


[Bug 533676] Re: Mistakingly c-formatted string in src/timeutils.cpp:47 ‌

2010-03-30 Thread Aurélien Gâteau
** Changed in: plasma-widget-message-indicator
   Status: New => Fix Released

** Changed in: plasma-widget-message-indicator
   Importance: Undecided => High

** Changed in: plasma-widget-message-indicator
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

** Changed in: plasma-widget-message-indicator (Ubuntu)
 Assignee: Aurélien Gâteau (agateau) => Jonathan Riddell (jr)

-- 
Mistakingly c-formatted string in src/timeutils.cpp:47 ‌
https://bugs.launchpad.net/bugs/533676
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 538136] Re: message indicator doesn't move from panel to systray on upgrade

2010-03-30 Thread Aurélien Gâteau
Version 0.5.3 comes with a kconf_update script but... it needs a newer
kconf_update, because kconf_update does not support nested groups. Patch
has been sent upstream.

** Also affects: plasma-widget-message-indicator
   Importance: Undecided
   Status: New

** Changed in: plasma-widget-message-indicator
   Status: New => Fix Released

** Changed in: plasma-widget-message-indicator
   Importance: Undecided => Low

** Changed in: plasma-widget-message-indicator
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

** Changed in: plasma-widget-message-indicator (Ubuntu)
 Assignee: Aurélien Gâteau (agateau) => Jonathan Riddell (jr)

-- 
message indicator doesn't move from panel to systray on upgrade
https://bugs.launchpad.net/bugs/538136
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 541920] Re: No icon for Amarok in indicator-applet

2010-03-31 Thread Aurélien Gâteau
The regression is a packaging bug, assigning Jonathan to it.

** Changed in: amarok (Ubuntu)
 Assignee: Aurélien Gâteau (agateau) => Jonathan Riddell (jr)

-- 
No icon for Amarok in indicator-applet
https://bugs.launchpad.net/bugs/541920
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to amarok in ubuntu.

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


[Bug 462049] Re: Plasma crashes unexpectedly

2010-06-04 Thread Aurélien Gâteau
** Changed in: libindicate
   Status: Fix Committed => Fix Released

-- 
Plasma crashes unexpectedly
https://bugs.launchpad.net/bugs/462049
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 404026] Re: notify-osd launch assumes GDM

2010-03-23 Thread Aurélien Gâteau
Yes it is.

-- 
notify-osd launch assumes GDM
https://bugs.launchpad.net/bugs/404026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


Re: [Bug 541920] Re: No icon for Amarok in indicator-applet

2010-03-23 Thread Aurélien Gâteau
On 22/03/2010 04:41, Ted Gould wrote:
> On Fri, 2010-03-19 at 14:28 +0000, Aurélien Gâteau wrote:
>> The problem is Amarok uses a generated image for its indicator icon (it
>> shows the playback progress). I suspect indicator-applet does not
>> support passing an image by pixels rather by name.
> 
> Yes, so isn't this a bug in Amarok not providing an image name as a
> fallback for clients who don't use bitmap based icons?

There is no notion of image name being a fallback to the bitmap version
in the StatusNotifierItem protocol. This should probably be clearly
defined (the spec has a FIXME which propose the opposite behavior).

Anyway, KDE implementation does not let the developer specify both
versions right now: if you set the icon by pixmap, it unsets the name
and vice-versa.

I just sent a hackish patch to Jonathan Riddell which prevents Amarok
from using pixmap based icons (or overlays) when running on GNOME. This
should work-around this bug.

-- 
No icon for Amarok in indicator-applet
https://bugs.launchpad.net/bugs/541920
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 533676] Re: Mistakingly c-formatted string in src/timeutils.cpp:47 ‌

2010-03-26 Thread Aurélien Gâteau
"%1m" is not a C-formatted string here. The line in question is:

return i18ncp("%1 is a number of minutes", "1m", "%1m", minutes);

The placeholder is "%1" and "m" is a short version of "minute". If a
language use a different short version, it should include it in the
translated string. For example if the short version of "minute" for this
language is "zz", the translated string should be "%1zz".

Maybe what needs to be fixed is the string comment?

-- 
Mistakingly c-formatted string in src/timeutils.cpp:47 ‌
https://bugs.launchpad.net/bugs/533676
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 541920] Re: No icon for Amarok in indicator-applet

2010-03-19 Thread Aurélien Gâteau
The problem is Amarok uses a generated image for its indicator icon (it
shows the playback progress). I suspect indicator-applet does not
support passing an image by pixels rather by name.

** Changed in: indicator-applet (Ubuntu)
   Status: New => Confirmed

** Changed in: indicator-applet (Ubuntu)
 Assignee: (unassigned) => Ted Gould (ted)

-- 
No icon for Amarok in indicator-applet
https://bugs.launchpad.net/bugs/541920
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 514039] Re: nepomukservicestub crashed with SIGSEGV in QTimer::stop()

2010-02-04 Thread Aurélien Gâteau
Unfortunately, I can't reproduce the bug and the Nepomuk code where it
crashes does not exist anymore. Can you still reproduce it with Lucid?

** Changed in: kdebase-runtime (Ubuntu)
   Status: New => Incomplete

-- 
nepomukservicestub crashed with SIGSEGV in QTimer::stop()
https://bugs.launchpad.net/bugs/514039
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-runtime in ubuntu.

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


[Bug 507905] Re: can't right click if no apps running

2010-02-12 Thread Aurélien Gâteau
** Changed in: plasma-widget-message-indicator
   Status: Confirmed => Fix Committed

-- 
can't right click if no apps running
https://bugs.launchpad.net/bugs/507905
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 538136] Re: message indicator doesn't move from panel to systray on upgrade

2010-03-22 Thread Aurélien Gâteau
OK, will have a look at creating a kconf_update script.

-- 
message indicator doesn't move from panel to systray on upgrade
https://bugs.launchpad.net/bugs/538136
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 404026] Re: notify-osd launch assumes GDM

2009-09-08 Thread Aurélien Gâteau
Attached patch fixes the bug. It checks the value of $DESKTOP_SESSION
instead of $GDM_SESSION and also runs notify-osd if $DESKTOP_SESSION is
"kde".

** Attachment added: "notify-osd-kdm.diff"
   http://launchpadlibrarian.net/31495834/notify-osd-kdm.diff

-- 
notify-osd launch assumes GDM
https://bugs.launchpad.net/bugs/404026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 466700] Re: crash in libindicate

2009-11-04 Thread Aurélien Gâteau
*** This bug is a duplicate of bug 462049 ***
https://bugs.launchpad.net/bugs/462049

** This bug has been marked a duplicate of bug 462049
   Plasma crashes unexpectedly

-- 
crash in libindicate
https://bugs.launchpad.net/bugs/466700
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 422069] Re: kmail message indicator patch should go upstream

2009-11-04 Thread Aurélien Gâteau
Patch has been forward ported and submitted for review:

http://reviewboard.kde.org/r/2060/

-- 
kmail message indicator patch should go upstream
https://bugs.launchpad.net/bugs/422069
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdepim in ubuntu.

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


[Bug 404026] Re: notify-osd launch assumes GDM

2009-08-26 Thread Aurélien Gâteau
@Kamus: To reproduce the bug, you must be running KDM, not GDM.

-- 
notify-osd launch assumes GDM
https://bugs.launchpad.net/bugs/404026
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 402799] Re: Ripped MP3 output files are missing.

2009-10-16 Thread Aurélien Gâteau
I encountered this one as well, and was able to fix it by changing the
lame command line:

- Go to Settings > Plugins
- Find the "K3b External Audio Encoder" and click its wrench icon
- Select "Mp3 (lame)" and click "Edit..."
- Change the command to:

lame -r --big-endian -s 44.1 -m s -h --tt %t --ta %a --tl %m --ty %y
--tc %c - %f

Contrary to what the UI says, the raw data seems to be big endian.

-- 
Ripped MP3 output files are missing.
https://bugs.launchpad.net/bugs/402799
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to k3b in ubuntu.

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


[Bug 452614] Re: K3B doesn't rip to mp3. After rip the Audio CD without errors, there is no mp3 file saved

2009-10-16 Thread Aurélien Gâteau
*** This bug is a duplicate of bug 402799 ***
https://bugs.launchpad.net/bugs/402799

** This bug has been marked a duplicate of bug 402799
   Ripped MP3 output files are missing.

-- 
K3B doesn't rip to mp3. After rip the Audio CD without errors, there is no mp3 
file saved
https://bugs.launchpad.net/bugs/452614
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to k3b in ubuntu.

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


[Bug 402799] Re: Ripped MP3 output files are missing.

2009-10-16 Thread Aurélien Gâteau
Instead of changing the command line, you can choose to check both the
"Swap Byte Order" and "Write Wave Header" checkboxes.

-- 
Ripped MP3 output files are missing.
https://bugs.launchpad.net/bugs/402799
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to k3b in ubuntu.

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


[Bug 498683] Re: Cannot change from Ayatana notifications to standard kde notifications in KDE SC 4.4 beta 1

2009-12-21 Thread Aurélien Gâteau
Did you check the "Application notifications" checkbox in systemtray
settings?

-- 
Cannot change from Ayatana notifications to standard kde notifications in KDE 
SC 4.4 beta 1
https://bugs.launchpad.net/bugs/498683
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 497769] Re: Crop handles are invisible

2009-12-21 Thread Aurélien Gâteau
Patch has been packaged in my ppa:
https://launchpad.net/~agateau/+archive/ppa

-- 
Crop handles are invisible
https://bugs.launchpad.net/bugs/497769
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdegraphics in ubuntu.

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


Re: [Bug 498683] Re: Cannot change from Ayatana notifications to standard kde notifications in KDE SC 4.4 beta 1

2010-01-04 Thread Aurélien Gâteau
Jonathan Jesse wrote:
> ok i do not get a KDE logo, but everything works correctly.  where does that
> leave me?

When using Plasma notifications, the KDE logo looks quite small: it
should be in the "title" bar, not where Kopete avatar is supposed to
show. Can you check again you don't see it?

-- 
Cannot change from Ayatana notifications to standard kde notifications in KDE 
SC 4.4 beta 1
https://bugs.launchpad.net/bugs/498683
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.

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


Re: [Bug 498683] Re: Cannot change from Ayatana notifications to standard kde notifications in KDE SC 4.4 beta 1

2010-01-04 Thread Aurélien Gâteau
Simonarde Júnior wrote:
> Well, I like Ayatana too, and after upgrade, the Ayatana option in 
> notification configs are gone... I've seached around and found this:
> -- http://people.canonical.com/~agateau/plasma-ayatana-notifications/
> And now I've got my cool notifications from Ayatana back!

The experimental .so from this page is a patched version of KDE 4.3
systemtray applet. I would advice against using it. In the long time you
 should use Colibri [1] instead. It should be part of Lucid at some
point (crossing fingers :))

Aurélien

[1]:
http://kde-apps.org/content/show.php/Colibri?content=117147

-- 
Cannot change from Ayatana notifications to standard kde notifications in KDE 
SC 4.4 beta 1
https://bugs.launchpad.net/bugs/498683
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-workspace in ubuntu.

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


[Bug 501677] Re: In KDE, 'skip this item' button in notifications area skips two songs

2010-01-04 Thread Aurélien Gâteau
Patch posted to KDE reviewboard:
http://reviewboard.kde.org/r/2485/

** Changed in: kdebase-runtime (Ubuntu)
   Status: New => In Progress

** Changed in: kdebase-runtime (Ubuntu)
   Importance: Undecided => Medium

-- 
In KDE, 'skip this item' button in notifications area skips two songs
https://bugs.launchpad.net/bugs/501677
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to kdebase-runtime in ubuntu.

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


[Bug 501677] Re: In KDE, 'skip this item' button in notifications area skips two songs

2010-01-05 Thread Aurélien Gâteau
Fix committed in kde svn:
http://websvn.kde.org/?view=revision&revision=1070208

** Changed in: kdebase-workspace (Ubuntu)
   Status: In Progress => Fix Committed

-- 
In KDE, 'skip this item' button in notifications area skips two songs
https://bugs.launchpad.net/bugs/501677
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 507905] Re: can't right click if no apps running

2010-01-15 Thread Aurélien Gâteau
** Changed in: plasma-widget-message-indicator
   Status: New => Confirmed

** Changed in: plasma-widget-message-indicator
   Importance: Undecided => Medium

** Changed in: plasma-widget-message-indicator
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

-- 
can't right click if no apps running
https://bugs.launchpad.net/bugs/507905
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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

[Bug 498683] Re: Cannot change from Ayatana notifications to standard kde notifications in KDE SC 4.4 beta 1

2009-12-23 Thread Aurélien Gâteau
As far as I know Ayatana notification patch has not been and will not be
applied to KDE 4.4 beta packages. If the checkbox is checked you should
get Plasma notifications, if it is not checked you should get knotify
old-school notifications (grey box with a 2 pixels black border)

About Kopete notifications, this might be related to Kopete itself.

You might want to do more testing with notify-send (from libnotify-bin
package), a command line tool to create notifications:

notify-send -i kde Hello "This is a text"

should show a notification with a KDE logo, "Hello" as a title and "This
is a text" as a body

-- 
Cannot change from Ayatana notifications to standard kde notifications in KDE 
SC 4.4 beta 1
https://bugs.launchpad.net/bugs/498683
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 453260] Re: Can not connect using WEP ASCII keys

2009-10-20 Thread Aurélien Gâteau
I created a patch to add support for WEP ASCII keys. Can you try this
PPA?

https://launchpad.net/~agateau/+archive/ppa

-- 
Can not connect using WEP ASCII keys
https://bugs.launchpad.net/bugs/453260
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-network-manager in ubuntu.

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


[Bug 937892] Re: some qt apps make unity-panel-service go crazy

2012-04-06 Thread Aurélien Gâteau
** Changed in: appmenu-qt
   Status: Fix Committed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/937892

Title:
  some qt apps make unity-panel-service go crazy

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt/+bug/937892/+subscriptions

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


[Bug 603416] Re: Menubar widget causes first right-click on plasma-desktop to instantly hide

2012-04-02 Thread Aurélien Gâteau
I had a look at fixing that one and it's nasty: when one right-click the
desktop, the desktop window gets focus, thus the menubar widget creates
a desktop window menubar. To do so it creates a Plasma::ToolButton,
which embeds a QToolButton. It seems creating the QToolButton causes the
menu to go away, I assume that since the button is created as a
standalone window (at least at construction time), it is perceived as a
new toplevel window, forcing the window manager to close the popup menu.

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to plasma-widget-menubar in Ubuntu.
https://bugs.launchpad.net/bugs/603416

Title:
  Menubar widget causes first right-click on plasma-desktop to instantly
  hide

To manage notifications about this bug go to:
https://bugs.launchpad.net/plasma-widget-menubar/+bug/603416/+subscriptions

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


[Bug 987910] [NEW] User pictures are not shown in greeters which support them

2012-04-24 Thread Aurélien Gâteau
Public bug reported:

Lightdm-kde 0.1.0 does not properly read the user picture from
liblightdm-qt. Version 0.1.1 was released to fix that issue.

** Affects: lightdm-kde (Ubuntu)
 Importance: Undecided
 Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/987910

Title:
  User pictures are not shown in greeters which support them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm-kde/+bug/987910/+subscriptions

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


[Bug 987910] Re: User pictures are not shown in greeters which support them

2012-04-24 Thread Aurélien Gâteau
** Description changed:

  Lightdm-kde 0.1.0 does not properly read the user picture from
  liblightdm-qt. Version 0.1.1 was released to fix that issue.
+ 
+ -- SRU Information --
+ [Impact]
+ Users who set up a $HOME/.face picture won't see it in any LightDM KDE theme 
which supports user pictures. The generic user icon is used instead.
+ 
+ [Development Fix]
+ liblightdm-qt used to expose the user picture as a QPixmap, but was changed 
to use a QIcon instead. lightdm-kde greeter code was not updated to match this 
change. It has since been fixed upstream in the v0.1 branch 
(https://projects.kde.org/projects/playground/base/lightdm/repository/show?rev=v0.1)
+ 
+ [Stable Fix]
+ debdiff has been uploaded to precise-proposed
+ 
+ [Test Case]
+ - install lightdm-kde
+ - copy a png file as $HOME/.face (any small png icon will do)
+ - open lightdm configuration (kcmshell4 kcm_lightdm), pick either "User Bar" 
or "User List"
+ - restart lightdm => notice the .face image is ignored
+ 
+ [Regression Potential]
+ None expected

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/987910

Title:
  User pictures are not shown in greeters which support them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm-kde/+bug/987910/+subscriptions

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


[Bug 987910] Re: User pictures are not shown in greeters which support them

2012-04-26 Thread Aurélien Gâteau
I confirm the package in precise-proposed fixes the bug.

** Tags removed: verification-needed
** Tags added: verification-done

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/987910

Title:
  User pictures are not shown in greeters which support them

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lightdm-kde/+bug/987910/+subscriptions

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


[Bug 937892] Re: some qt apps make unity-panel-service go crazy

2012-04-04 Thread Aurélien Gâteau
bug is not caused by unity-panel-service

** Changed in: unity
   Status: Confirmed => Invalid

** Changed in: appmenu-qt
 Assignee: (unassigned) => Aurélien Gâteau (agateau)

** Changed in: appmenu-qt
   Status: Confirmed => In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/937892

Title:
  some qt apps make unity-panel-service go crazy

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt/+bug/937892/+subscriptions

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

[Bug 937892] Re: some qt apps make unity-panel-service go crazy

2012-04-04 Thread Aurélien Gâteau
Should be fixed in r45. I pushed a package for it in ppa:agateau
/appmenu-qt . Can you give it a try? (version of appmenu-qt should be
0.2.5.bzr45-0ubuntu1)

** Changed in: appmenu-qt
   Status: In Progress => Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/937892

Title:
  some qt apps make unity-panel-service go crazy

To manage notifications about this bug go to:
https://bugs.launchpad.net/appmenu-qt/+bug/937892/+subscriptions

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-13 Thread Aurélien Gâteau
It works for me here, with the Skype debian package from
http://www.skype.com/intl/fr/get-skype/on-your-
computer/linux/downloading.ubuntu64 (which is still a 32 bit binary).
Which version of Skype do you have installed? The only reason I could
see it failing is if one is using the static build.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-13 Thread Aurélien Gâteau
@David: do you have sni-qt:i386 installed?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-14 Thread Aurélien Gâteau
@Steve: It would be interesting to look at sni-qt debug output when
running Skype. It is a bit tricky to get because Skype is quiet by
default. This blog post explains how to get the debug output out of
Skype: http://agateau.com/2011/09/23/make-skype-a-bit-less-shy/

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-14 Thread Aurélien Gâteau
@David: dpkg would not have let you install the i386 package I think, so
you did the right thing. Anyway, it would not have installed sni-qt:i386
as a dependency, unless people at Skype add the dependency themselves.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 929585] Re: The system settings window is a bit too small after Ubuntu's changes

2012-02-16 Thread Aurélien Gâteau
Thanks for the feedback. I was asking about the resolution because right
now when running on a netbook-sized screen, which do not have enough
space for the window, the patch maximizes the window. In this situation
you get scrollbars but that cannot be avoided.

What you report is different however: when there is enough room around,
System Settings indeed uses a fixed size (it was doing this before the
patch as well). I thought I increased it enough but obviously it needs a
few more pixels. Will look into this.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929585

Title:
  The system settings window is a bit too small after Ubuntu's changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/929585/+subscriptions

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


[Bug 933482] [NEW] Replace "All Settings" button with breadcrumb buttons

2012-02-16 Thread Aurélien Gâteau
Public bug reported:

Following the design specifications details in section 2.1 of the 'Gnome
3 System Settings changes' specification
https://docs.google.com/a/canonical.com/document/d/1ILTJDiDCd25Npt2AmgzF8aOnZZECxTfM0hvsbWT2BxA/edit?ndplr=1&pli=1#heading=h.jztfy8l5q9v5
, the "All Settings" button in Gnome Control Center toolbar must be
removed by breadcrumb buttons, showing "All Settings" when on main page,
and "All Settings > $name_of_page" when on a capplet.

** Affects: gnome-control-center (Ubuntu)
     Importance: Undecided
 Assignee: Aurélien Gâteau (agateau)
 Status: In Progress

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/933482

Title:
  Replace "All Settings" button with breadcrumb buttons

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/933482/+subscriptions

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

[Bug 609173] Re: [VIA controller auto-mute] Headphone output does not work on ASUS P81IJ

2010-09-17 Thread Aurélien Gâteau
 (I didn't know about modinfo, nice!)
I get this:

filename:   /lib/modules/2.6.35-20-generic/updates/dkms/snd-hda-codec-via.ko
description:VIA HD-audio codec
license:GPL
alias:  snd-hda-codec-id:1106*
srcversion: FEC723AF1CCA00F55012992
depends:snd-hda-codec,snd
vermagic:   2.6.35-20-generic SMP mod_unload modversions 

So it loaded your module.

-- 
[VIA controller auto-mute] Headphone output does not work on ASUS P81IJ
https://bugs.launchpad.net/bugs/609173
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 609173] Re: [VIA controller auto-mute] Headphone output does not work on ASUS P81IJ

2010-09-15 Thread Aurélien Gâteau
I just tried it and unfortunately it didn't change anything.

I am not sure how to verify whether I am running your module though: at
the end of the installation there was a message telling it wasn't able
to build a module for the running kernel, but there are snd-hda-*
modules in /lib/modules/2.6.35-20-generic/updates/dkms/. I tried to
rmmod snd-hda-intel to manually insmod the one from the dkms dir but
rmmod kept saying me the module was in use, even after stopping quite a
lot of processes.

-- 
[VIA controller auto-mute] Headphone output does not work on ASUS P81IJ
https://bugs.launchpad.net/bugs/609173
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 566193] Re: luminosity screen on a laptop cannot be set

2010-09-15 Thread Aurélien Gâteau
Tested today with mainline kernel (2.6.36-999.201009080908). Here are
the results:

(kb means setting brightness with keyboard, applet means setting
brightness with Plasma applet)

mainline: kb=good(1) applet=bad
mainline + acpi_osi: kb=good(1) applet=bad
2.6.35-20: kb=bad applet=bad
2.6.35-20 + acpi_osi: kb=good applet=good

(1) In these cases, brightness is adjusted, but the brightness osd does
not show up

-- 
luminosity screen on a laptop cannot be set
https://bugs.launchpad.net/bugs/566193
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.

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


[Bug 639643] Re: Konversation tray doesn't change color to red on Gnome

2010-09-15 Thread Aurélien Gâteau
Turns out the bug is in the GNOME implementation of the SNI protocol,
reassigned the bug.

** Package changed: konversation (Ubuntu) => indicator-application
(Ubuntu)

** Changed in: indicator-application (Ubuntu)
 Assignee: Aurélien Gâteau (agateau) => Ted Gould (ted)

-- 
Konversation tray doesn't change color to red on Gnome
https://bugs.launchpad.net/bugs/639643
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to konversation in ubuntu.

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-22 Thread Aurélien Gâteau
Indeed, there is nothing about sni-qt in there. Here is the output I
get:

"""
QGtkStyle was unable to detect the current GTK+ theme.
SkypeApplication::ctor
[New Thread 0xf595bb40 (LWP 9203)]
[New Thread 0xf58dab40 (LWP 9204)]
Translation loaded: /usr/share/skype/lang/skype_fr.qm
Install offline content bundle if necessary 
Skype::GUIProxy::GUIProxy(): 0x95bea70
Qt version: 4.8.0
Desktop Manager: ubuntu-2d
"sni-qt/9096" DEBUG 09:15:38.414 
StatusNotifierItemFactory::StatusNotifierItemFactory() m_iconCacheDir: 
"/tmp/sni-qt_skype_9096-nEnDXm" 
"sni-qt/9096" DEBUG 09:15:38.418 void StatusNotifierItemFactory::connectToSnw() 
"sni-qt/9096" DEBUG 09:15:38.426 void StatusNotifierItemFactory::connectToSnw() 
m_isAvailable: true 
"sni-qt/9096" DEBUG 09:15:38.426 virtual QAbstractSystemTrayIconSys* 
StatusNotifierItemFactory::create(QSystemTrayIcon*) 
"sni-qt/9096" DEBUG 09:15:38.426 
StatusNotifierItem::StatusNotifierItem(QSystemTrayIcon*, IconCache*) this: 
StatusNotifierItem(0x9554ca8) 
"sni-qt/9096" DEBUG 09:15:38.426 
StatusNotifierItem::StatusNotifierItem(QSystemTrayIcon*, IconCache*) 
m_objectPath: "/org/kde/statusnotifieritem/1" 
"sni-qt/9096" DEBUG 09:15:38.427 virtual void StatusNotifierItem::updateMenu() 
menu: QMenu(0x9588580) 
"sni-qt/9096" DEBUG 09:15:38.427 void 
StatusNotifierItemFactory::registerItem(StatusNotifierItem*) 
"sni-qt/9096" DEBUG 09:15:38.427 virtual void 
StatusNotifierItem::updateVisibility() NewStatus( "Active" ) 
Midnight timer will fire in 53062 secs 
GUIProxy created 
Lib instance 0x95bea70
> Dispatcher::ctor
  Dispatcher: create transport X11
< X11::ctor
  Dispatcher: announce transport X11
  Dispatcher: create transport D-BUS
Connecting to deprecated signal 
QDBusConnectionInterface::serviceOwnerChanged(QString,QString,QString)
(...)
"""

Can you tell the versions of libqt4-gui, skype and sni-qt:i386?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 915801] Re: sni-qt seems to no longer let skype show up as an indicator in precise

2012-03-22 Thread Aurélien Gâteau
I was using the skype package from skype.com. I just installed the
package which comes from the partner repository, but it's still working
for me. I am puzzled. Will see if I can think of something else.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/915801

Title:
  sni-qt seems to no longer let skype show up as an indicator in precise

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sni-qt/+bug/915801/+subscriptions

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


[Bug 929585] Re: The system settings window is a bit too small after Ubuntu's changes

2012-02-13 Thread Aurélien Gâteau
@Robert Roth and Julien Olivier: Does the window fill your whole screen
or is there still room below it?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/929585

Title:
  The system settings window is a bit too small after Ubuntu's changes

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gnome-control-center/+bug/929585/+subscriptions

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


[Bug 1308440] [NEW] Not enough vertical space to fit text of steps in sidebar of KDE frontend

2014-04-16 Thread Aurélien Gâteau
Public bug reported:

The text of the steps in the sidebar of the KDE frontend do not have
enough vertical space: the current step is always cropped at the bottom.

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

** Attachment added: "Screenshot demonstrating the problem"
   
https://bugs.launchpad.net/bugs/1308440/+attachment/4085251/+files/ubiquity-cropped-sidebar.png

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1308440

Title:
  Not enough vertical space to fit text of steps in sidebar of KDE
  frontend

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubiquity/+bug/1308440/+subscriptions

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


[Bug 1092910] Re: Merge notifications of two incoming messages from the same person

2013-02-22 Thread Aurélien Gâteau
The FDO spec does not explicitly support merging. What happens is
notify-osd remembers the last notification and merges the new one in it
if it satisfies a set of rules mentioned here:
https://wiki.ubuntu.com/NotifyOSD#Merging_notifications

One of those rules is that the application must set a particular hint in the 
notification. Quoting notify-osd page:
"""
If the hint “x-canonical-append” is supplied with a string value “allowed”, and 
replaces_id is not specified, the bubble should be treated as if it allows 
merging. 
"""

KNotification API does not let the application pass custom hints, so it
is impossible for any application using this API to support merging
notifications. It could be possible to fix this by doing one of those:

1. Remove the need for the "x-canonical-append" hint in notify-osd.

2. Modify knotify (the daemon handling notifications behind
KNotification) to always pass the "x-canonical-append" hint.

3. Extend KNotification and knotify to allow applications to pass
arbitrary hints *and* patch applications to pass the "x-canonical-
append" hint.

Of those three, 1. seems doable, 2 and 3 are unlikely to happen.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/1092910

Title:
  Merge notifications of two incoming messages from the same person

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kde4libs/+bug/1092910/+subscriptions

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

[Bug 363430] Re: "error, couldn't find SDL module from MLT, Kdenlive will not start untill you fix this"

2011-11-19 Thread Aurélien Gâteau
I have the problem as well on Kubuntu 11.10. The workaround proposed in
#16 works for me, but that should not be necessary.

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

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/363430

Title:
  "error, couldn't find SDL module from MLT, Kdenlive will not start
  untill you fix this"

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/kdenlive/+bug/363430/+subscriptions

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


[Bug 805303] Re: Gtk-CRITICAL **: IA__gtk_widget_style_get: assertion `GTK_IS_WIDGET (widget)' failed with the default qt4 gui

2011-09-21 Thread Aurélien Gâteau
@Tom Hindle: it fixes the issue here. Can you try the ubuntu-desktop
ppa?

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to qt4-x11 in Ubuntu.
https://bugs.launchpad.net/bugs/805303

Title:
  Gtk-CRITICAL **: IA__gtk_widget_style_get: assertion `GTK_IS_WIDGET
  (widget)' failed with the default qt4 gui

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/805303/+subscriptions

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


[Bug 805972] Re: Touchpad scrolling bounces

2011-09-22 Thread Aurélien Gâteau
** Changed in: qt4-x11 (Ubuntu)
   Importance: Undecided => Critical

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to qt4-x11 in Ubuntu.
https://bugs.launchpad.net/bugs/805972

Title:
  Touchpad scrolling bounces

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/805972/+subscriptions

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


[Bug 693316] Re: Amarok does not register with the menu

2011-09-22 Thread Aurélien Gâteau
** Changed in: amarok
   Status: Confirmed => Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/693316

Title:
  Amarok does not register with the menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/amarok/+bug/693316/+subscriptions

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


Re: [Bug 838470] Re: Skype not showing in indicator

2011-09-27 Thread Aurélien Gâteau
Le 27/09/2011 09:25, Jason a écrit :
> I am running 32 Bit Ubuntu 11.10 with all updates including sni-qt
> 0.24-0ubuntu1.
>
> This has not been fixed for me. Skype is set to automatically log in and
> minimise to the indicator bar. But when it does, there is still no
> indicator. I have to killall skype and restart it when I want to use it.
>
> Anything else I can do to help debug?

Which desktop are you running Unity, Unity 2D, KDE, something else?

You can enable debug output. Create ~/.config/sni-qt.conf and add the 
following to it:

[general]
debug=1

Then start Skype from the command line. You should get a bunch of sni-qt 
messages to paste here.

Aurélien

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/838470

Title:
  Skype not showing in indicator

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libdbusmenu-qt/+bug/838470/+subscriptions

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

[Bug 854448] Re: Skype should depend on sni-qt (multiarch)

2011-09-27 Thread Aurélien Gâteau
@iMac You may need to upgrade to sni-qt 0.2.4, the problem you described
should be fixed with this version.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/854448

Title:
  Skype should depend on sni-qt (multiarch)

To manage notifications about this bug go to:
https://bugs.launchpad.net/sni-qt/+bug/854448/+subscriptions

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


[Bug 860395] Re: sni-qt and hp-systray interact badly

2011-09-27 Thread Aurélien Gâteau
The empty menu bug should be fixed in revision 84 of sni-qt, which
should soon be available from ppa:agateau/sni-qt. Can you confirm it?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/860395

Title:
  sni-qt and hp-systray interact badly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/hplip/+bug/860395/+subscriptions

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


[Bug 805303] Re: Gtk-CRITICAL **: IA__gtk_widget_style_get: assertion `GTK_IS_WIDGET (widget)' failed with the default qt4 gui

2011-09-28 Thread Aurélien Gâteau
>> Correct me if I wrong but this call is happening from the Qt libraries, not
>> from the VLC itself.
>
> That is why it is a bug. The only safe place to call putenv() is early in the
> VLC main() function, before any thread is created. In practice, the VLC code
> base has long since been audited and all setenv(), unsetenv() and putenv()
> calls removed. VLC versions 1.1.0 and later actively prevent libraries from
> modifying its environment as this is a known cause of crashes; that's why you
> see the "Blocked: ..." error message.
>
>> Does that mean VLC initializes the UI in a different thread?
>
> Different thread than... ? Anyway, calling putenv() is not thread-safe in any
> case on glibc, regardless of which thread calls it: glibc does not protect the
> environment against concurrent accesses, so putenv() can crash a concurrent
> *env() function call from another thread.

In this case putenv() and getenv() calls for LIBOVERLAY_SCROLLBAR are done from
the same thread (the one running the GUI event loop) so it would not cause any
problem.

Anyway, I think our only solution for Oneiric is to do what pablomme suggested
in comment #75.

https://bugs.launchpad.net/ubuntu/+source/qt4-x11/+bug/805303/comments/75


** Changed in: overlay-scrollbar (Ubuntu Oneiric)
   Status: Invalid => Confirmed

-- 
You received this bug notification because you are a member of Kubuntu
Bugs, which is subscribed to qt4-x11 in Ubuntu.
https://bugs.launchpad.net/bugs/805303

Title:
  Gtk-CRITICAL **: IA__gtk_widget_style_get: assertion `GTK_IS_WIDGET
  (widget)' failed with the default qt4 gui

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/overlay-scrollbar/+bug/805303/+subscriptions

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


[Bug 848808] Re: metacity crashed with SIGABRT in __kernel_vsyscall()

2011-09-28 Thread Aurélien Gâteau
In the beginning of vlc.out there is a line which says:

  Blocked: call to putenv("LIBOVERLAY_SCROLLBAR=0")

That could be the problem. Anyone knows where this "Blocked" line comes
from?

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/848808

Title:
  metacity crashed with SIGABRT in __kernel_vsyscall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/848808/+subscriptions

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


[Bug 848808] Re: metacity crashed with SIGABRT in __kernel_vsyscall()

2011-09-28 Thread Aurélien Gâteau
Never mind, comment #62 from bug #805303 explains the reason for the
"Blocked" line.

-- 
You received this bug notification because you are a member of Ubuntu
Bugs, which is subscribed to Ubuntu.
https://bugs.launchpad.net/bugs/848808

Title:
  metacity crashed with SIGABRT in __kernel_vsyscall()

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/metacity/+bug/848808/+subscriptions

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


  1   2   3   4   >