[Compiz] [Bug 976513] Re: compiz crashed with SIGSEGV in CompWindow::id()

2013-01-24 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: compiz (Ubuntu)
   Status: New => Confirmed

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

Title:
  compiz crashed with SIGSEGV in CompWindow::id()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 976513] Re: compiz crashed with SIGSEGV in CompWindow::id()

2013-01-24 Thread Steve Langasek
this bug was reproducible for me on a freshly installed raring daily
nexus7 image.

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

Title:
  compiz crashed with SIGSEGV in CompWindow::id()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 976513] Re: compiz crashed with SIGSEGV in CompWindow::id()

2013-01-24 Thread Steve Langasek
** Information type changed from Private to Private Security

** Information type changed from Private Security to Public

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

Title:
  compiz crashed with SIGSEGV in CompWindow::id()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104511] Re: Compiz Application Switcher (ALT-Tab) does just use high res icons when provided by .desktop file

2013-01-24 Thread Felix Möller
Thanks for the quick response Sam.

Yes it seems that something in the stack reads only from the .desktop
file. However for applications such as a java application which is
downloaded in place and not coming from the repos I think the .desktop
file is not viable.

gtk_window_set_icon_list() supports multiple resolutions, so the best
one should be used for the switcher.

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

Title:
  Compiz Application Switcher (ALT-Tab) does just use high res icons
  when provided by .desktop file

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104511] Re: Compiz Application Switcher (ALT-Tab) does just use high res icons when provided by .desktop file

2013-01-24 Thread Sam Spilsbury
This is not a compiz bug.

My understanding is that unity/bamf get their icon from the .desktop
file and not the WM_ICON property. I've subscribed unity to get more
info on that.

** Also affects: compiz
   Importance: Undecided
   Status: New

** Also affects: unity
   Importance: Undecided
   Status: New

** Changed in: compiz (Ubuntu)
   Status: New => Invalid

** Changed in: compiz
   Status: New => Invalid

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

Title:
  Compiz Application Switcher (ALT-Tab) does just use high res icons
  when provided by .desktop file

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104511] [NEW] Compiz Application Switcher (ALT-Tab) does just use high res icons when provided by .desktop file

2013-01-24 Thread Felix Möller
Public bug reported:

I am trying to set a high resolution for a Java based application
(https://www.willuhn.de/bugzilla/show_bug.cgi?id=1310).

This application uses SWT which uses the GTK function
gtk_window_set_icon() to set an icon for the application.

However, no matter of the resolution I pass there the ALT-Tab switcher
uses a bad icon.

This has been reported as well for Python
(http://askubuntu.com/questions/90845/pygtk-application-icon-blurred-in-
unity) and reported in the forums
(http://ubuntuforums.org/showthread.php?t=2053292).

I tried to get more insights at http://askubuntu.com/questions/245875
/how-do-i-get-high-resolution-icons-in-unity-for-my-application-
without-a-deskto.

The following Java code shows the problem:
import org.eclipse.swt.SWT;
import org.eclipse.swt.graphics.GC;
import org.eclipse.swt.graphics.Image;
import org.eclipse.swt.widgets.Display;
import org.eclipse.swt.widgets.Shell;

public class Test {
  public static void main(String[] args) {
Display display = new Display();

final int SIZE = 256;
Image large = new Image(display, SIZE, SIZE);
GC gc = new GC(large);
gc.setBackground(display.getSystemColor(SWT.COLOR_RED));
gc.fillArc(0, 0, SIZE, SIZE, 45, 270);
gc.dispose();

Shell shell = new Shell(display);
shell.setImages(new Image[] {  large });

shell.open();

while (!shell.isDisposed()) {
  if (!display.readAndDispatch())
display.sleep();
}

large.dispose();
display.dispose();
  }
}

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: compiz 1:0.9.9~daily13.01.21-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-1.5-generic 3.8.0-rc4
Uname: Linux 3.8.0-1-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Thu Jan 24 23:10:03 2013
DistUpgraded: 2013-01-23 07:16:01,014 DEBUG enabling apt cron job
DistroCodename: raring
DistroVariant: ubuntu
DkmsStatus:
 tp-smapi, 0.41, 3.5.0-22-generic, x86_64: installed
 tp-smapi, 0.41, 3.8.0-1-generic, x86_64: installed
 virtualbox, 4.1.22, 3.5.0-22-generic, x86_64: installed
 virtualbox, 4.1.22, 3.8.0-1-generic, x86_64: installed
GraphicsCard:
 Intel Corporation Mobile 4 Series Chipset Integrated Graphics Controller 
[8086:2a42] (rev 07) (prog-if 00 [VGA controller])
   Subsystem: Lenovo Device [17aa:20e4]
   Subsystem: Lenovo Device [17aa:20e4]
InstallationDate: Installed on 2012-03-31 (299 days ago)
InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Beta amd64 (20120331)
MachineType: LENOVO 6474A46
MarkForUpload: True
PackageArchitecture: all
PccardctlIdent:
 Socket 0:
   no product info available
PccardctlStatus:
 Socket 0:
   no card
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 LANG=de_DE.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.8.0-1-generic 
root=UUID=b32d85c9-d1fb-49ca-8c94-c64d321221b3 ro quiet splash vt.handoff=7
SourcePackage: compiz
UpgradeStatus: Upgraded to raring on 2013-01-23 (1 days ago)
dmi.bios.date: 10/17/2012
dmi.bios.vendor: LENOVO
dmi.bios.version: 7UET94WW (3.24 )
dmi.board.name: 6474A46
dmi.board.vendor: LENOVO
dmi.board.version: Not Available
dmi.chassis.asset.tag: No Asset Information
dmi.chassis.type: 10
dmi.chassis.vendor: LENOVO
dmi.chassis.version: Not Available
dmi.modalias: 
dmi:bvnLENOVO:bvr7UET94WW(3.24):bd10/17/2012:svnLENOVO:pn6474A46:pvrThinkPadT400:rvnLENOVO:rn6474A46:rvrNotAvailable:cvnLENOVO:ct10:cvrNotAvailable:
dmi.product.name: 6474A46
dmi.product.version: ThinkPad T400
dmi.sys.vendor: LENOVO
version.compiz: compiz 1:0.9.9~daily13.01.21-0ubuntu1
version.ia32-libs: ia32-libs 20090808ubuntu36
version.libdrm2: libdrm2 2.4.41-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.1.901-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.19-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.6-0ubuntu1
xserver.bootTime: Thu Jan 24 22:57:21 2013
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.1.901-0ubuntu2
xserver.video_driver: intel

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


** Tags: amd64 apport-bug compiz-0.9 raring running-unity ubuntu

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

Title:
  Compiz Application Switcher (ALT-Tab) does just use high res icons
  when provided by .desktop file

To manage notifications about this bug go to:
https://b

[Compiz] [Bug 1104511] Re: Compiz Application Switcher (ALT-Tab) does just use high res icons when provided by .desktop file

2013-01-24 Thread Felix Möller
Screenshot showing the bad resolution of the icon rendered with 256px.

** Attachment added: "resolution is reduced somewhere in the stack"
   
https://bugs.launchpad.net/ubuntu/+source/compiz/+bug/1104511/+attachment/3499253/+files/icon.png

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

Title:
  Compiz Application Switcher (ALT-Tab) does just use high res icons
  when provided by .desktop file

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104417] Re: On card Clock are not accepted the choices

2013-01-24 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1104417

** Tags added: iso-testing

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

Title:
  On card Clock are not accepted the choices

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104397] Re: Is not possible unlock icons on the launcher

2013-01-24 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1104397

** Tags added: iso-testing

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

Title:
  Is not possible unlock icons on the launcher

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104441] Re: Keyboad Layout are not accepted the choises

2013-01-24 Thread Ubuntu QA Website
This bug has been reported on the Ubuntu ISO testing tracker.

A list of all reports related to this bug can be found here:
http://iso.qa.ubuntu.com/qatracker/reports/bugs/1104441

** Tags added: iso-testing

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

Title:
  Keyboad Layout are not accepted the choises

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104441] [NEW] Keyboad Layout are not accepted the choises

2013-01-24 Thread Giovanni Tornatore
Public bug reported:

Hello!

1) I have tested Edubuntu amd64 (ef2cfb6fe3631f9bf273e6624c06261f 
*raring-dvd-amd64.iso 20130124), on live usb persistent.
2) On Sistem Settings>Keyboard Layout: click + for choose a Layout.
3) Selected and click Add.
4) The choise is not accepted.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: compiz 1:0.9.9~daily13.01.21-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-1.5-generic 3.8.0-rc4
Uname: Linux 3.8.0-1-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
CasperVersion: 1.330
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Thu Jan 24 20:36:58 2013
DistUpgraded: Fresh install
DistroCodename: raring
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation G92 [GeForce GTS 250] [10de:0615] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:830b]
LiveMediaBuild: Edubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130124)
MachineType: System manufacturer System Product Name
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true persistent 
file=/cdrom/preseed/username.seed boot=casper initrd=/casper/initrd.lz quiet 
splash --
SourcePackage: compiz
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/14/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 2003
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P7P55D PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2003:bd12/14/2010:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP7P55DPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz 1:0.9.9~daily13.01.21-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.41-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.1.901-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.19-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.6-0ubuntu1
xserver.bootTime: Thu Jan 24 18:40:29 2013
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputUVC Camera (046d:0805) KEYBOARD, id 8
 inputLogitech Unifying Device. Wireless PID:1024 MOUSE, id 9
 inputLogitech Unifying Device. Wireless PID:2011 KEYBOARD, id 10
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.1.901-0ubuntu2
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 raring running-unity ubuntu

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

Title:
  Keyboad Layout are not accepted the choises

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104417] [NEW] On card Clock are not accepted the choices

2013-01-24 Thread Giovanni Tornatore
Public bug reported:

Hello!

1) I have tested Edubuntu amd64 (ef2cfb6fe3631f9bf273e6624c06261f 
*raring-dvd-amd64.iso 20130124), on live usb persistent.
2) On Sistem Settings>Time&Date>Clock: are not accepted the choises.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: compiz 1:0.9.9~daily13.01.21-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-1.5-generic 3.8.0-rc4
Uname: Linux 3.8.0-1-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
CasperVersion: 1.330
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Thu Jan 24 20:05:57 2013
DistUpgraded: Fresh install
DistroCodename: raring
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation G92 [GeForce GTS 250] [10de:0615] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:830b]
LiveMediaBuild: Edubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130124)
MachineType: System manufacturer System Product Name
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true persistent 
file=/cdrom/preseed/username.seed boot=casper initrd=/casper/initrd.lz quiet 
splash --
SourcePackage: compiz
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/14/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 2003
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P7P55D PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2003:bd12/14/2010:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP7P55DPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz 1:0.9.9~daily13.01.21-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.41-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.1.901-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.19-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.6-0ubuntu1
xserver.bootTime: Thu Jan 24 18:40:29 2013
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputUVC Camera (046d:0805) KEYBOARD, id 8
 inputLogitech Unifying Device. Wireless PID:1024 MOUSE, id 9
 inputLogitech Unifying Device. Wireless PID:2011 KEYBOARD, id 10
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.1.901-0ubuntu2
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 raring running-unity ubuntu

** Summary changed:

- Clock is not accept the choices
+ On card Clock are not accepted the choices

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

Title:
  On card Clock are not accepted the choices

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104397] [NEW] Is not possible unlock icons on the launcher

2013-01-24 Thread Giovanni Tornatore
Public bug reported:

Hello!

1) I have tested Edubuntu amd64 (ef2cfb6fe3631f9bf273e6624c06261f 
*raring-dvd-amd64.iso 20130124), on live usb persistent.
2) Is not possible unlock icons on the launcher.

ProblemType: Bug
DistroRelease: Ubuntu 13.04
Package: compiz 1:0.9.9~daily13.01.21-0ubuntu1
ProcVersionSignature: Ubuntu 3.8.0-1.5-generic 3.8.0-rc4
Uname: Linux 3.8.0-1-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.8-0ubuntu2
Architecture: amd64
CasperVersion: 1.330
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
Date: Thu Jan 24 19:18:49 2013
DistUpgraded: Fresh install
DistroCodename: raring
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation G92 [GeForce GTS 250] [10de:0615] (rev a2) (prog-if 00 [VGA 
controller])
   Subsystem: ASUSTeK Computer Inc. Device [1043:830b]
LiveMediaBuild: Edubuntu 13.04 "Raring Ringtail" - Alpha amd64 (20130124)
MachineType: System manufacturer System Product Name
MarkForUpload: True
PackageArchitecture: all
ProcEnviron:
 TERM=xterm
 PATH=(custom, no user)
 XDG_RUNTIME_DIR=
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: noprompt cdrom-detect/try-usb=true persistent 
file=/cdrom/preseed/username.seed boot=casper initrd=/casper/initrd.lz quiet 
splash --
SourcePackage: compiz
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 12/14/2010
dmi.bios.vendor: American Megatrends Inc.
dmi.bios.version: 2003
dmi.board.asset.tag: To Be Filled By O.E.M.
dmi.board.name: P7P55D PRO
dmi.board.vendor: ASUSTeK Computer INC.
dmi.board.version: Rev 1.xx
dmi.chassis.asset.tag: Asset-1234567890
dmi.chassis.type: 3
dmi.chassis.vendor: Chassis Manufacture
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnAmericanMegatrendsInc.:bvr2003:bd12/14/2010:svnSystemmanufacturer:pnSystemProductName:pvrSystemVersion:rvnASUSTeKComputerINC.:rnP7P55DPRO:rvrRev1.xx:cvnChassisManufacture:ct3:cvrChassisVersion:
dmi.product.name: System Product Name
dmi.product.version: System Version
dmi.sys.vendor: System manufacturer
version.compiz: compiz 1:0.9.9~daily13.01.21-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.41-0ubuntu1
version.libgl1-mesa-dri: libgl1-mesa-dri 9.0.2-0ubuntu1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 9.0.2-0ubuntu1
version.xserver-xorg-core: xserver-xorg-core 2:1.13.1.901-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.7.3-0ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.0.0-0ubuntu1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.20.19-0ubuntu2
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.6-0ubuntu1
xserver.bootTime: Thu Jan 24 18:40:29 2013
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputUVC Camera (046d:0805) KEYBOARD, id 8
 inputLogitech Unifying Device. Wireless PID:1024 MOUSE, id 9
 inputLogitech Unifying Device. Wireless PID:2011 KEYBOARD, id 10
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.13.1.901-0ubuntu2
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 raring running-unity ubuntu

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

Title:
  Is not possible unlock icons on the launcher

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


Re: [Compiz] [Bug 682788] Re: Improve Unity Global Menu

2013-01-24 Thread Aleve Sicofante
2013/1/24 Chad Germann 

> And just remove the vanishing functionality completely. its not like
> that panel area is being used for anything else.
>
> It's used for the window's buttons and title when in maximized mode, and
the application name when non-maximized. The solution is to show the title
whenever the mouse reaches either the top left corner (application title
area when not maximized, buttons area when maximized) or the area between
the menu and the indicators. In other words: show the title of the window
whenever the mouse is on the top bar but outside the menu area.

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

Title:
  Improve Unity Global Menu

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/682788/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104225] Re: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Julian Taylor
*** This bug is a duplicate of bug 1103111 ***
https://bugs.launchpad.net/bugs/1103111

** This bug is no longer a duplicate of bug 1104232
   package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127
** This bug has been marked a duplicate of bug 1103111
   Upgrade failure

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104232] Re: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Julian Taylor
*** This bug is a duplicate of bug 1103111 ***
https://bugs.launchpad.net/bugs/1103111

** This bug has been marked a duplicate of bug 1103111
   Upgrade failure

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104233] Re: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Julian Taylor
*** This bug is a duplicate of bug 1103111 ***
https://bugs.launchpad.net/bugs/1103111

** This bug is no longer a duplicate of bug 1104232
   package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127
** This bug has been marked a duplicate of bug 1103111
   Upgrade failure

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104225] Re: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Stephen M. Webb
*** This bug is a duplicate of bug 1104232 ***
https://bugs.launchpad.net/bugs/1104232

** This bug has been marked a duplicate of bug 1104232
   package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104233] Re: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Stephen M. Webb
*** This bug is a duplicate of bug 1104232 ***
https://bugs.launchpad.net/bugs/1104232

** This bug has been marked a duplicate of bug 1104232
   package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1101199] Re: compiz crashed with SIGSEGV in Glib::Source::prepare_vfunc()

2013-01-24 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: compiz (Ubuntu)
   Status: New => Confirmed

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

Title:
  compiz crashed with SIGSEGV in Glib::Source::prepare_vfunc()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104232] [NEW] package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Stefano P.
Public bug reported:

upgrading from 10.04 to 12.04

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: compiz-plugins-default
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Sat Jan 19 12:27:01 2013
ErrorMessage: ErrorMessage: subprocess rm cleanup returned error exit status 127
InstallationMedia: Ubuntu 10.04.3 LTS "Lucid Lynx" - Release amd64 (20110719.2)
MarkForUpload: True
SourcePackage: compiz
Title: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127
UpgradeStatus: Upgraded to precise on 2013-01-19 (5 days ago)

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


** Tags: amd64 apport-package precise

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104233] [NEW] package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Stefano P.
Public bug reported:

upgrading from 10.04 to 12.04

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: compiz-plugins-default
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Sat Jan 19 12:27:01 2013
ErrorMessage: ErrorMessage: subprocess rm cleanup returned error exit status 127
InstallationMedia: Ubuntu 10.04.3 LTS "Lucid Lynx" - Release amd64 (20110719.2)
MarkForUpload: True
SourcePackage: compiz
Title: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127
UpgradeStatus: Upgraded to precise on 2013-01-19 (5 days ago)

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


** Tags: amd64 apport-package precise

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104225] [NEW] package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 127

2013-01-24 Thread Stefano P.
Public bug reported:

upgrading from 10.04 to 12.04

ProblemType: Package
DistroRelease: Ubuntu 12.04
Package: compiz-plugins-default 1:0.9.7.12-0ubuntu1
ProcVersionSignature: Ubuntu 3.2.0-36.57-generic 3.2.35
Uname: Linux 3.2.0-36-generic x86_64
NonfreeKernelModules: nvidia
ApportVersion: 2.0.1-0ubuntu17.1
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Sat Jan 19 12:27:01 2013
ErrorMessage: ErrorMessage: subprocess rm cleanup returned error exit status 127
InstallationMedia: Ubuntu 10.04.3 LTS "Lucid Lynx" - Release amd64 (20110719.2)
MarkForUpload: True
SourcePackage: compiz
Title: package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to 
install/upgrade: ErrorMessage: subprocess rm cleanup returned error exit status 
127
UpgradeStatus: Upgraded to precise on 2013-01-19 (5 days ago)

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


** Tags: amd64 apport-package precise

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

Title:
  package compiz-plugins-default 1:0.9.7.12-0ubuntu1 failed to
  install/upgrade: ErrorMessage: subprocess rm cleanup returned error
  exit status 127

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104188] [NEW] window shadows seem to have very low resolution

2013-01-24 Thread Paul Greindl
Public bug reported:

In 13.04 the window shadows seem to have lower resolution or less
detailed fading. It looks quite strange as you can see stripes where the
colour is shifting. If this was made to improve performance it was a
good thought but does look really bad.

Increase the shadow to the maximum using CCSM or similar to see it. Or
check the screenshot: look on the left side of the nautilus window.

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

** Attachment added: "window shadow pixels"
   
https://bugs.launchpad.net/bugs/1104188/+attachment/3498414/+files/window%20shadow%20pixels

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

Title:
  window shadows seem to have very low resolution

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1104181] Re: gtk-window-decorator crashed with SIGSEGV in g_object_unref()

2013-01-24 Thread Apport retracing service
*** This bug is a duplicate of bug 1061282 ***
https://bugs.launchpad.net/bugs/1061282

Thank you for taking the time to report this crash and helping to make
this software better.  This particular crash has already been reported
and is a duplicate of bug #1061282, so is being marked as such.  Please
look at the other bug report to see if there is any missing information
that you can provide, or to see if there is a workaround for the bug.
Additionally, any further discussion regarding the bug should occur in
the other report.  Please continue to report any other bugs you may
find.

** Attachment removed: "CoreDump.gz"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498386/+files/CoreDump.gz

** Attachment removed: "Disassembly.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498389/+files/Disassembly.txt

** Attachment removed: "ProcMaps.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498397/+files/ProcMaps.txt

** Attachment removed: "ProcStatus.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498399/+files/ProcStatus.txt

** Attachment removed: "Registers.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498400/+files/Registers.txt

** Attachment removed: "Stacktrace.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498401/+files/Stacktrace.txt

** Attachment removed: "ThreadStacktrace.txt"
   
https://bugs.launchpad.net/bugs/1104181/+attachment/3498402/+files/ThreadStacktrace.txt

** This bug has been marked a duplicate of bug 1061282
   gtk-window-decorator crashes in _wnck_window_destroy() from 
wnck_screen_finalize() from g_object_unref() from 
gwd_settings_notified_impl_dispose() from g_object_unref() from 
gwd_settings_finalize()

** Information type changed from Private to Public

** Tags removed: need-amd64-retrace

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

Title:
  gtk-window-decorator crashed with SIGSEGV in g_object_unref()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 900367] Re: Window management - indicate the possibility of restoring (unmaximizing) a window by changing the pointer when it is over the menu bar

2013-01-24 Thread John Lea
** Description changed:

  The cursor should indicate that a maximized window can be grabbed and
  dragged downwards in order to restore (unmaximise) the window.
  
  The idea is to change the current behavior of the cursor on the top
  panel of a maximized window in something like in the attached mockup.
  
  
  Desired solution
  
- - When a user moves the pointer over the dragable area of both a window title 
bars and (when a window is maximised) the top bar, the pointer should change to 
displaying 'grabbing hand'.  The pointer should revert to it's normal state as 
soon as it is outside of the dragable area.
- - The 'grabbing hand' is the hand that is currently displayed when a user 
holds the left mouse button down when over one of areas defined above.
+ - When a user moves the pointer over the dragable area of both a window
+ title bars and (when a window is maximised) the top bar, the pointer
+ should change to displaying the 'hand fingered' pointer.  The pointer
+ should revert to it's normal state as soon as it is outside of the
+ dragable area.
+ 
+ - When the user presses the mouse or touchpad button the 'hand fingered'
+ pointer should change to the 'grabbing hand'.  When the user releases
+ the button the pointer should return to being 'hand fingered'.
+ 
+ - The 'grabbing hand' is the hand that is currently displayed when a
+ user holds the left mouse button down when over one of areas defined
+ above.

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

Title:
  Window management - indicate the possibility of restoring
  (unmaximizing) a window by changing the pointer when it is over the
  menu bar

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/900367/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 875311] Re: Expo animations "Fade + Zoom" & "Vortex" result in a black screen

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Expo animations "Fade + Zoom" & "Vortex" result in a black screen

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 936840] Re: key now known as which breaks keyboard shortcuts

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
   key now known as  which breaks keyboard shortcuts

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1033877] Re: Member variables that are not initialized in the constructors reported by cppcheck

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Member variables that are not initialized in the constructors reported
  by cppcheck

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1048272] Re: [regression][GLES]: Cube plugin: Transparency for top and bottom faces broken

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [regression][GLES]: Cube plugin: Transparency for top and bottom faces
  broken

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1048855] Re: [grid] Gedit, Nautilus will not snap/semi-maximize with the mouse

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [grid] Gedit, Nautilus will not snap/semi-maximize with the mouse

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 950160] Re: Unity blocks other programs from binding globally to Super+* (* = any key)

2013-01-24 Thread Daniel van Vugt
This is fix released in Compiz 0.9.9.0. But Launchpad is giving me
strange errors and preventing me from marking it as such.

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

Title:
  Unity blocks other programs from binding globally to Super+* (* = any
  key)

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1057955] Re: Removed schema keys still used in keybindings and automated tests

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Removed schema keys still used in keybindings and automated tests

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 201681] Re: Window management - Cursor position changes relative to window while dragging windows

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Window management - Cursor position changes relative to window while
  dragging windows

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/201681/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 878516] Re: Window management - Restoring a grid-placed window by dragging the title bar downwards does not restore the original window width

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Window management - Restoring a grid-placed window by dragging the
  title bar downwards does not restore the original window width

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/878516/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1031940] Re: Compiz: window flicker when focusing new window with fade effect enabled

2013-01-24 Thread mmm
** Changed in: compiz
   Status: Confirmed => Fix Released

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

Title:
  Compiz: window flicker when focusing new window with fade effect
  enabled

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1048505] Re: [regression-r3320] firepaint doesn't paint any fire any more

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [regression-r3320] firepaint doesn't paint any fire any more

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 754508] Re: Modal dialogs don't appear on the same workspace/monitor as their parent window

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Modal dialogs don't appear on the same workspace/monitor as their
  parent window

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 925867] Re: [regression] Window resize granularity is lost when restored after using Grid

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [regression] Window resize granularity is lost when restored after
  using Grid

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 874146] Re: Multimonitor: New windows open on the wrong monitor, Place Plugin settings silently ignored

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Multimonitor: New windows open on the wrong monitor, Place Plugin
  settings silently ignored

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 751605] Re: Multi-monitor - Windows maximize on the wrong monitor

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Multi-monitor - Windows maximize on the wrong monitor

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/751605/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1056615] Re: CompizConfigPython.test_* fail with SEGFAULT

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  CompizConfigPython.test_* fail with SEGFAULT

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1051802] Re: "Unredirect Fullscreen Windows" can cause significant tearing on fullscreen windows (especially playing video)

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  "Unredirect Fullscreen Windows" can cause significant tearing on
  fullscreen windows (especially playing video)

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1050776] Re: kde4-window-decorator crashes when starting up with oxygen theme

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  kde4-window-decorator crashes when starting up with oxygen theme

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1048840] Re: compiz crashed with SIGSEGV in DodgeAnim::applyDodgeTransform()

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  compiz crashed with SIGSEGV in DodgeAnim::applyDodgeTransform()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1066823] Re: Editors like gedit and others will not recognize *.xml.in files as xml, so if opened there is no syntax highlighting making those files harder to read.

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Editors like gedit and others will not recognize *.xml.in files as
  xml, so if opened there is no syntax highlighting making those files
  harder to read.

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1066187] Re: Enhanced Desktop Zoom: Specific Zoom Factor ignored

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Enhanced Desktop Zoom: Specific Zoom Factor ignored

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1064791] Re: Redundant writes to plugins-with-set-keys

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Redundant writes to plugins-with-set-keys

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 689792] Re: Window Management - Implement maximize and semi-maximise transitions

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Window Management - Implement maximize and semi-maximise transitions

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/689792/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 839602] Re: Grid overlay effect does not disappear when it should

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Grid overlay effect does not disappear when it should

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1048267] Re: [regression-r3320][GLES]: showmouse plugin does not work anymore at all

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [regression-r3320][GLES]: showmouse plugin does not work anymore at
  all

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 868423] Re: Launcher - Workspace switcher should not be in the Launcher by default

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Launcher - Workspace switcher should not be in the Launcher by default

To manage notifications about this bug go to:
https://bugs.launchpad.net/ayatana-design/+bug/868423/+subscriptions

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1012330] Re: [needs-packaging] Wishlist: Missing plug-In: Wizard

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [needs-packaging] Wishlist: Missing plug-In: Wizard

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1009999] Re: Shift Switcher: Window title display settings partially ignored

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Shift Switcher: Window title display settings partially ignored

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1097664] Re: GLShaderCache::priv [PrivateShaderCache] is leaked

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  GLShaderCache::priv [PrivateShaderCache] is leaked

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1098148] Re: Compiz 0.9.8 trunk FTBFS on ARM due to an unused variable

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Compiz 0.9.8 trunk FTBFS on ARM due to an unused variable

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1097657] Re: PrivateGLScreen::projection is leaked

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  PrivateGLScreen::projection is leaked

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1097649] Re: Several leaks in g_settings_new() [g_object_new()] from ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184]

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Several leaks in g_settings_new() [g_object_new()] from
  ccsGSettingsNewNoPath() [ccs_gsettings_interface_wrapper.c:184]

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1102822] Re: Several memory leaks in g_signal_new() ... from ccsGSettingsWrapperNewForSchema() [ccs_gsettings_interface_wrapper.c:184] from initBackend() [gsettings.c:468]

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Several memory leaks in g_signal_new() ... from
  ccsGSettingsWrapperNewForSchema()
  [ccs_gsettings_interface_wrapper.c:184] from initBackend()
  [gsettings.c:468]

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1100172] Re: Workspacenames plugin: Requires text plugin to work

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Workspacenames plugin: Requires text plugin to work

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1101430] Re: Coverity MISSING_BREAK - CID 12468

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz/0.9.9
   Status: Fix Committed => Fix Released

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

Title:
  Coverity MISSING_BREAK - CID 12468

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1098877] Re: Showmouse plugin: Possible values of the particle life setting can destroy the plugin's functionality

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

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

Title:
  Showmouse plugin: Possible values of the particle life setting can
  destroy the plugin's functionality

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1098758] Re: Thumbnail Window Previews: Flickering of background/glow and window title text

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Thumbnail Window Previews: Flickering of background/glow and window
  title text

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1101465] Re: Coverity MISSING_BREAK - CID 12467

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz/0.9.9
   Status: Fix Committed => Fix Released

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

Title:
  Coverity MISSING_BREAK - CID 12467

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1101558] Re: Coverity MISSING_BREAK - CID 12466

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz/0.9.9
   Status: Fix Committed => Fix Released

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

Title:
  Coverity MISSING_BREAK - CID 12466

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1101557] Re: Coverity MISSING_BREAK - CID 12465

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz/0.9.9
   Status: Fix Committed => Fix Released

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

Title:
  Coverity MISSING_BREAK - CID 12465

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1067534] Re: "Show desktop" plug-in actually works with Unity when ensured that it is loaded after unityshell

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz/0.9.9
   Status: Fix Committed => Fix Released

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

Title:
  "Show desktop" plug-in actually works with Unity when ensured that it
  is loaded after unityshell

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1067234] Re: Duplicate file: include/core/point.h == src/point/include/core/point.h

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Duplicate file: include/core/point.h == src/point/include/core/point.h

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1051595] Re: findcompiz_install doesn't work

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  findcompiz_install doesn't work

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1102829] Re: Several memory leaks in google::protobuf::DescriptorPool::InternalAddGeneratedFile() from google::protobuf::protobuf_AddDesc_*()

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Several memory leaks in
  google::protobuf::DescriptorPool::InternalAddGeneratedFile() from
  google::protobuf::protobuf_AddDesc_*()

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1068173] Re: [Multimonitor] [Grid] plug-in: The window snapping does not follow the preview, but uses the display the mousepointer is on when the mousebutton gets released

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [Multimonitor] [Grid] plug-in: The window snapping does not follow the
  preview, but uses the display the mousepointer is on when the
  mousebutton gets released

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1075584] Re: Workspacenames Plug-in: Wishlist: No default values for workspacenames, should be changed

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Workspacenames Plug-in: Wishlist: No default values for
  workspacenames, should be changed

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1076876] Re: 100_expo_layout.patch does not apply totally cleanly

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  100_expo_layout.patch does not apply totally cleanly

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1075600] Re: Workspacenames Plug-in: Wishlist: Default Appearance values not ideal

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Workspacenames Plug-in: Wishlist: Default Appearance values not ideal

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1070297] Re: Resizeinfo Plug-in: No possibility to change the color and transparency of the rounded background outline

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Resizeinfo Plug-in: No possibility to change the color and
  transparency of the rounded background outline

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1070233] Re: Resizeinfo Plug-in: Gradient color 2 and 3 settings are ignored and no background gradient is rendered

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Resizeinfo Plug-in: Gradient color 2 and 3 settings are ignored and no
  background gradient is rendered

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1068503] Re: scaleaddon: Draw Window Highlight is a solid white rectangle. No transparency.

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  scaleaddon: Draw Window Highlight is a solid white rectangle. No
  transparency.

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1086704] Re: Build uses pyrexc without checking that it exists

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Build uses pyrexc without checking that it exists

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1083027] Re: cmake suggests (kind of) expo is disabled but it still builds correctly.

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  cmake suggests (kind of) expo is disabled but it still builds
  correctly.

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1082265] Re: KDE Appmenu doesn't work with compiz decorators

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  KDE Appmenu doesn't work with compiz decorators

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1086337] Re: HTML5 video in Firefox continues to tear

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  HTML5 video in Firefox continues to tear

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1077823] Re: gtk-window-decorator: decorator.c : a small typo error

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  gtk-window-decorator: decorator.c :  a small typo error

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1089246] Re: Add support for blacklisting some drivers from using unredirected fullscreen windows

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Add support for blacklisting some drivers from using unredirected
  fullscreen windows

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1086789] Re: Build warning "multiple rules generate gtk/gnome/compiz.desktop. build will not be correct; continuing anyway"

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Build warning "multiple rules generate gtk/gnome/compiz.desktop. build
  will not be correct; continuing anyway"

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1085687] Re: CCSObjectDeathTest.GetInterface fails

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  CCSObjectDeathTest.GetInterface fails

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1088414] Re: On ARM lp:compiz defaults to GL instead of GLES and FTBFS unless you -DBUILD_GLES=ON

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  On ARM lp:compiz defaults to GL instead of GLES and FTBFS unless you
  -DBUILD_GLES=ON

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1097179] Re: compiz_test_resize_logic: Multiple errors: Conditional jump or move depends on uninitialised value(s)

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  compiz_test_resize_logic: Multiple errors: Conditional jump or move
  depends on uninitialised value(s)

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1095915] Re: opengl plugin FTBFS with clang

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  opengl plugin FTBFS with clang

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1089863] Re: KWD: Appmenu always pops up at top-left corner of the screen

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  KWD: Appmenu always pops up at top-left corner of the screen

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1096455] Re: Compiz reports incorrect _NET_DESKTOP_GEOMETRY until first viewport switch

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Compiz reports incorrect _NET_DESKTOP_GEOMETRY until first viewport
  switch

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1091103] Re: Default blacklist string shouldn't contain double escape

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Default blacklist string shouldn't contain double escape

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1096780] Re: Plugin names are not sorted (they're shown in directory order) when cmake is run

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Plugin names are not sorted (they're shown in directory order) when
  cmake is run

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1095906] Re: Building compiz with clang++ on raring fails to build libgtest

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Building compiz with clang++ on raring fails to build libgtest

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1058149] Re: compiz fails to build with GNU gold linker

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  compiz fails to build with GNU gold linker

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1066793] Re: std::vector > is duplicated in 63 plugins

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  std::vector > is duplicated in
  63 plugins

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1066803] Re: std::vector > is duplicated in 6 plugins

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  std::vector > is
  duplicated in 6 plugins

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1059549] Re: [regression] [quantal] Workspace overview (expo) doesn't always display the active workspace colored

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  [regression] [quantal] Workspace overview (expo) doesn't always
  display the active workspace colored

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1060804] Re: Compiz can't build with clang

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Compiz can't build with clang

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1060708] Re: Redundant check for libcompizconfig_internal in compizconfig gsettings tests

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  Redundant check for libcompizconfig_internal in compizconfig gsettings
  tests

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


[Compiz] [Bug 1070817] Re: make test fails in CompizConfigPython.test_* (OTHER_FAULT)

2013-01-24 Thread Daniel van Vugt
** Changed in: compiz
   Status: Fix Committed => Fix Released

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

Title:
  make test fails in CompizConfigPython.test_* (OTHER_FAULT)

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

___
Mailing list: https://launchpad.net/~compiz
Post to : compiz@lists.launchpad.net
Unsubscribe : https://launchpad.net/~compiz
More help   : https://help.launchpad.net/ListHelp


  1   2   >