[Touch-packages] [Bug 1348150] Re: Memory corruption (using memory after freeing) in GNU Make

2014-07-25 Thread Andris
Tested patch also against Ubunto 14.04 source package of make. It fixes the 
memory corruption.
Additionally also tested for real world build where I initially detected the 
bug. No problems also there

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to make-dfsg in Ubuntu.
https://bugs.launchpad.net/bugs/1348150

Title:
  Memory corruption (using memory after freeing) in GNU Make

Status in “make-dfsg” package in Ubuntu:
  New
Status in “make-dfsg” package in Fedora:
  New

Bug description:
  I'm getting memory corruption (accessing memory after freeing) in GNU
  Make on trivial Makefile

  #---
  release:CXXFLAGS ?= -O2 -mfpmath=sse
  debug:  CXXFLAGS ?= -g
  CXXFLAGS ?= -O2 -g

  release debug all:
  @echo $(CXXFLAGS)
  @echo $(CXX)
  #---

  when providing value of CXXFLAGS in command line. For example

  make CXXFLAGS=-O2

  Reproduced on:

  Ubuntu 14.04 LTS x86_64
  Ubuntu 12.04.4 LTS i686 (really chroot)

  Also reproduced with GNU Make-3.82 from ftp.gnu.org compiled from
  sources. Did not happen with GNU Make 4.0 from ftp.gnu.org

  Valgrind error messages (package installed on Ubuntu 14.04 LTS x86_64):
  ==4354== Memcheck, a memory error detector
  ==4354== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
  ==4354== Using Valgrind-3.10.0.SVN and LibVEX; rerun with -h for copyright 
info
  ==4354== Command: make CXXFLAGS=-O3
  ==4354== 
  ==4354== Invalid read of size 1
  ==4354==at 0x4C2E0E2: strlen (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4EC066D: strdup (strdup.c:41)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e880 is 0 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 
  ==4354== Invalid read of size 1
  ==4354==at 0x4C2E0F4: strlen (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4EC066D: strdup (strdup.c:41)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e881 is 1 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 
  ==4354== Invalid read of size 2
  ==4354==at 0x4C2FDC0: __GI_memcpy (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e880 is 0 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 

  From similar test with make-3.82 I'm getting:

  ==24068== Memcheck, a memory error detector
  ==24068== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
  ==24068== Using Valgrind-3.10.0.SVN and LibVEX; rerun with -h for copyright 
info
  ==24068== Command: make-3.82 CXXFLAGS=-O3
  ==24068== 
  ==24068== Invalid read of size 1
  ==24068==at 0x4C2E0E2: strlen (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==24068==by 0x4EC066D: strdup (strdup.c:41)
  ==24068==by 0x412E88: xstrdup (misc.c:413)
  ==24068==by 0x416B8B: eval (read.c:1818)
  ==24068==by 0x417469: eval_makefile (read.c:423)
  ==24068==by 0x417823: 

[Touch-packages] [Bug 1325142] Re: failure to update libpam-systemd in 14.04 due to missing logind init script

2014-07-25 Thread Michael Bewley
I get this issue with a chroot ubuntu 14.04 armhf build running with
android on a samsung galaxy tab 10.1.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to systemd in Ubuntu.
https://bugs.launchpad.net/bugs/1325142

Title:
  failure to update libpam-systemd in 14.04 due to missing logind init
  script

Status in “systemd” package in Ubuntu:
  Confirmed

Bug description:
  Hi,

  while running inside an i386 lubuntu 14.04 chroot, upgrading libpam-
  systemd to version 204-5ubuntu20.2 fails leaving dpkg in a broken
  state. 'apt-get -f install' from within the chroot will not fix it,
  but if the build is made bootable and put into a iso/VM you can
  recover that way in a live session.

  the problem seems to be the /var/lib/dpkg/info/libpam-systemd:i386.prerm 
script failing to bring down the logind daemon with 'invoke-rc.d systemd-logind 
stop', because invoke-rd.d is only looking for the /etc/init.d/ script (doesn't 
exist) and not /etc/init/systemd-logind.conf (does exist).
  ?

  
  Reading package lists...
  Building dependency tree...
  Reading state information...
  The following packages will be upgraded:
libpam-systemd
  1 upgraded, 0 newly installed, 0 to remove and 113 not upgraded.
  3 not fully installed or removed.
  Need to get 0 B/25.2 kB of archives.
  After this operation, 1024 B of additional disk space will be used.
  (Reading database ... 113986 files and directories currently installed.)
  Preparing to unpack .../libpam-systemd_204-5ubuntu20.2_i386.deb ...
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: warning: subprocess old pre-removal script returned error exit status 
100
  dpkg: trying script from the new package instead ...
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: error processing archive 
/var/cache/apt/archives/libpam-systemd_204-5ubuntu20.2_i386.deb (--unpack):
   subprocess new pre-removal script returned error exit status 100
  invoke-rc.d: unknown initscript, /etc/init.d/systemd-logind not found.
  dpkg: error while cleaning up:
   subprocess installed post-installation script returned error exit status 100
  Errors were encountered while processing:
   /var/cache/apt/archives/libpam-systemd_204-5ubuntu20.2_i386.deb
  E: Sub-process /usr/bin/dpkg returned an error code (1)

  
  Our build logs available upon request, but the scripts to setup the chroot to 
recreate it are here:

https://trac.osgeo.org/osgeo/browser/livedvd/gisvm/trunk/bin/build_chroot_nightly.sh

https://trac.osgeo.org/osgeo/browser/livedvd/gisvm/trunk/bin/inchroot_nightly.sh

  
  In a web-search I notice a few others running into the same bug,

  chatter on irc at [18:10], http://irclogs.ubuntu.com/2013/05/28
  /%23ubuntu-devel.txt

  someone else's build log:
  https://launchpad.net/~qutim/+archive/qutim/+build/6039800

  launchpad bug #1323575 seems to be a duplicate of this one.

  
  perhaps related to older launchpad bug #1305395 ?

  note we are also suffering from a failure with update-initramfs, not sure of 
the root cause of that one but I thought I'd mention it in case they were 
related, since they both started happening about the same time, a couple weeks 
ago. (launchpad bug #1317602)
  It all worked ok after the inital releases of 14.04, so something to do with 
a package update since then.

  
  thanks,
  Hamish

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348493] [NEW] Funny charakters when new document by PCManDateimanager

2014-07-25 Thread Heike Harnack
Public bug reported:

Hi,
Sorry, I can't choose the package: go to 'to many matches' or no-go 'no 
matches' found!
The package is LibreOffice Writer or similar.

When I make a new document (empty = leer) and open it with the Writer, I
get funny charakters. It seem to be the picture I see in the LibreOffice
Center (?). With AbiWord there are no charakters. Perhaps it is only
belong to my filemanager (PCMan Dateimanger)?

Yours

Heike

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apport in Ubuntu.
https://bugs.launchpad.net/bugs/1348493

Title:
  Funny charakters when new document by PCManDateimanager

Status in “apport” package in Ubuntu:
  New

Bug description:
  Hi,
  Sorry, I can't choose the package: go to 'to many matches' or no-go 'no 
matches' found!
  The package is LibreOffice Writer or similar.

  When I make a new document (empty = leer) and open it with the Writer,
  I get funny charakters. It seem to be the picture I see in the
  LibreOffice Center (?). With AbiWord there are no charakters. Perhaps
  it is only belong to my filemanager (PCMan Dateimanger)?

  Yours

  Heike

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1018148] Re: Slingshot / Unity 3D dash does not display icons specified as relative path to XDG_DATA_DIRS

2014-07-25 Thread Jonathan Alfonso
** Changed in: unity
   Status: Confirmed = Fix Released

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

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/1018148

Title:
  Slingshot / Unity 3D dash does not display icons specified as relative
  path to XDG_DATA_DIRS

Status in Slingshot App Launcher:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Slingshot is not showing an icon for a game called Minecraft. I am
  using an installer I created ( located here -
  http://dl.dropbox.com/u/54213557/MIFU/mifu.sh ). Plank/Unity's
  launcher are both capable of showing the SVG, however it is not shown
  in Slingshot or Unity 3D Dash.

  Dragging the shortcut onto the Unity 3D launcher fixes the issue.

  The problem is in the mojang-Minecraft.desktop file, the line
  Icon=minecraft.svg should have been minecraft. This can be fixed
  by the package owners however it's unlikely in closed source packages
  that are affected by the same bug such as Skype.

  ProblemType: Bug
  DistroRelease: elementary 0.2
  Package: elementary-desktop 1.271-0~341~precise1 [origin: 
LP-PPA-elementary-os-daily]
  ProcVersionSignature: Ubuntu 3.2.0-25.40-generic 3.2.18
  Uname: Linux 3.2.0-25-generic x86_64
  ApportVersion: 2.0.1-0ubuntu8+elementary3~precise1
  Architecture: amd64
  CrashDB: elementary_meta
  Date: Tue Jun 26 17:35:48 2012
  InstallationMedia: elementary OS 0.2 Luna - Build amd64 LIVE Binary 
20120624-16:17
  ProcEnviron:
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  SourcePackage: elementary-meta
  SuspiciousXErrors:

  ThirdParty: True
  UpgradeStatus: No upgrade log present (probably fresh install)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1335281] Re: new sqlite3 causes mediascanner2 MediaStoreTest.query_short test to fail

2014-07-25 Thread Leo Arias
Hello Jussi. This has been in progress for a long time. Can you please
comment with the status?

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to sqlite3 in Ubuntu.
https://bugs.launchpad.net/bugs/1335281

Title:
  new sqlite3 causes mediascanner2 MediaStoreTest.query_short test to
  fail

Status in “mediascanner2” package in Ubuntu:
  In Progress
Status in “sqlite3” package in Ubuntu:
  Invalid

Bug description:
  
https://code.launchpad.net/~jpakkane/mediascanner2/sqliteworkaround/+merge/224845
  disabled MediaStoreTest.query_short due to a behavioral change in
  sqlite3.

  This test should be re-enabled as soon as possible.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348236] Re: Fails to scan mp3 and consumes all the system memory when scanning

2014-07-25 Thread Jussi Pakkanen
This is most likely the same issue as bug #1346821 and caused by a
GStreamer update.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mediascanner2 in Ubuntu.
https://bugs.launchpad.net/bugs/1348236

Title:
  Fails to scan mp3 and consumes all the system memory when scanning

Status in “mediascanner2” package in Ubuntu:
  New

Bug description:
  Image 148 on mako/flo, try importing file
  http://people.canonical.com/~rsalveti/Existance.mp3, and you'll see
  mediascanner consuming most of the resources available, until killed.

  Probably an issue with gstreamer itself.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1335281] Re: new sqlite3 causes mediascanner2 MediaStoreTest.query_short test to fail

2014-07-25 Thread Jussi Pakkanen
We fixed this ages ago. Apparently we just forgot to tell --fixes to
bzr. Closing.

** Changed in: mediascanner2 (Ubuntu)
   Status: In Progress = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to sqlite3 in Ubuntu.
https://bugs.launchpad.net/bugs/1335281

Title:
  new sqlite3 causes mediascanner2 MediaStoreTest.query_short test to
  fail

Status in “mediascanner2” package in Ubuntu:
  Fix Released
Status in “sqlite3” package in Ubuntu:
  Invalid

Bug description:
  
https://code.launchpad.net/~jpakkane/mediascanner2/sqliteworkaround/+merge/224845
  disabled MediaStoreTest.query_short due to a behavioral change in
  sqlite3.

  This test should be re-enabled as soon as possible.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1297100] Re: Installing mir-demos also unexpectedly installs *-dev packages

2014-07-25 Thread Alexandros Frantzis
** Branch linked: lp:~alan-griffiths/mir/fix-1297100

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1297100

Title:
  Installing mir-demos also unexpectedly installs *-dev packages

Status in Mir:
  In Progress
Status in “mir” package in Ubuntu:
  Triaged

Bug description:
  Installing mir-demos also installs *-dev packages. I'm not sure what's
  going on here, but I do know that mir-demos is meant to only contain
  demo binaries and somehow that is depending on *-dev packages, which
  looks wrong:

  # Starting on a freshly installed trusty system
  $ sudo apt-get install mir-demos
  [sudo] password for dan: 
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  The following extra packages will be installed:
libboost-program-options-dev libboost-program-options1.54-dev
libboost-program-options1.54.0 libboost1.54-dev libgflags2 libglm-dev
libgoogle-glog0 libmirclient-dev libmirclient7 libmirclientplatform-mesa
libmirplatform libmirplatformgraphics-mesa libmirprotobuf-dev
libmirprotobuf0 libmirserver-dev libmirserver17 libprotobuf-dev
libprotobuf-lite8 libstdc++-4.8-dev libunwind8 mir-doc mircommon-dev
zlib1g-dev
  Suggested packages:
libboost1.54-doc libboost-atomic1.54-dev libboost-chrono1.54-dev
libboost-context1.54-dev libboost-coroutine.54-dev
libboost-date-time1.54-dev libboost-exception1.54-dev
libboost-filesystem1.54-dev libboost-graph1.54-dev
libboost-graph-parallel1.54-dev libboost-iostreams1.54-dev
libboost-locale1.54-dev libboost-log.54-dev libboost-math1.54-dev
libboost-mpi1.54-dev libboost-mpi-python1.54-dev libboost-python1.54-dev
libboost-random1.54-dev libboost-regex1.54-dev
libboost-serialization1.54-dev libboost-signals1.54-dev
libboost-system1.54-dev libboost-test1.54-dev libboost-thread1.54-dev
libboost-timer1.54-dev libboost-wave1.54-dev libboost1.54-tools-dev
libmpfrc++-dev libntl-dev libstdc++-4.8-doc
  The following NEW packages will be installed:
libboost-program-options-dev libboost-program-options1.54-dev
libboost-program-options1.54.0 libboost1.54-dev libgflags2 libglm-dev
libgoogle-glog0 libmirclient-dev libmirclient7 libmirclientplatform-mesa
libmirplatform libmirplatformgraphics-mesa libmirprotobuf-dev
libmirprotobuf0 libmirserver-dev libmirserver17 libprotobuf-dev
libprotobuf-lite8 libstdc++-4.8-dev libunwind8 mir-demos mir-doc
mircommon-dev zlib1g-dev
  0 to upgrade, 24 to newly install, 0 to remove and 0 not to upgrade.
  Need to get 59.1 MB of archives.
  After this operation, 221 MB of additional disk space will be used.
  Do you want to continue? [Y/n]

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1346837] Re: [phone-app]*#06# does not report IMEI when no SIM present

2014-07-25 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

** Changed in: dialer-app (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to dialer-app in Ubuntu.
https://bugs.launchpad.net/bugs/1346837

Title:
  [phone-app]*#06# does not report IMEI when no SIM present

Status in Dialer app for Ubuntu Touch:
  Confirmed
Status in Ubuntu UX bugs:
  Fix Committed
Status in “dialer-app” package in Ubuntu:
  Confirmed

Bug description:
  1. Boot the phone with no SIM present. (No SIMs present for dual-sim)
  2. Open the dialer.
  (2a. Select one of the SIM slots)
  3. Dial *#06#

  Expected result:
 Dialog presented with the IMEI for the corresponding SIM slot.

  Current result:
 Dialog is shown but the IMEI field is empty

  
  This works when a SIM is present, but should not be dependent on this.

To manage notifications about this bug go to:
https://bugs.launchpad.net/dialer-app/+bug/1346837/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348533] [NEW] phone call ring not comes out from earphone.

2014-07-25 Thread Yuan-Chen Cheng
Public bug reported:

ring tone should be out from both speaker and earphone as phone call,
but it only from speaker.

Device: nexus 4
Firmware: utopic r148 (20140724-020204)

Test Procedure:
 * plugin earphone to nexus 4 (both two wired and three wired earphone are 
tested)
 * make a phone call to nexus 4

Expected result:
 * Ring tone comes out from both speaker and earphone

Current result:
 * Ring tone comes out from only speaker.

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


** Tags: armhf mako utopic

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1348533

Title:
  phone call ring not comes out from earphone.

Status in “pulseaudio” package in Ubuntu:
  New

Bug description:
  ring tone should be out from both speaker and earphone as phone call,
  but it only from speaker.

  Device: nexus 4
  Firmware: utopic r148 (20140724-020204)

  Test Procedure:
   * plugin earphone to nexus 4 (both two wired and three wired earphone are 
tested)
   * make a phone call to nexus 4

  Expected result:
   * Ring tone comes out from both speaker and earphone

  Current result:
   * Ring tone comes out from only speaker.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348532] [NEW] u1_downloader downloads failed some files

2014-07-25 Thread Russ Herman
Public bug reported:

I'm recovering my files to move to another provider. The recovery was
incomplete at first, so I retried the utility 4 more times. A few
additional files were delivered in reruns 2 and 3, but then mothing
additional with 4 and 5. I'm attaching a list of the files that never
got delivered.

** Affects: ubuntuone-credentials (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: x.log
   https://bugs.launchpad.net/bugs/1348532/+attachment/4162537/+files/x.log

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to ubuntuone-credentials in
Ubuntu.
https://bugs.launchpad.net/bugs/1348532

Title:
  u1_downloader downloads failed some files

Status in “ubuntuone-credentials” package in Ubuntu:
  New

Bug description:
  I'm recovering my files to move to another provider. The recovery was
  incomplete at first, so I retried the utility 4 more times. A few
  additional files were delivered in reruns 2 and 3, but then mothing
  additional with 4 and 5. I'm attaching a list of the files that never
  got delivered.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntuone-credentials/+bug/1348532/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1347902] Re: /usr/bin/unity8:4:typeinfo:LauncherModel::focusedAppIdChanged:LauncherModel::qt_static_metacall:QMetaObject::activate:unitymir::ApplicationManager::setFocused

2014-07-25 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/unity8

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1347902

Title:
  
/usr/bin/unity8:4:typeinfo:LauncherModel::focusedAppIdChanged:LauncherModel::qt_static_metacall:QMetaObject::activate:unitymir::ApplicationManager::setFocused

Status in The Unity 8 shell:
  In Progress
Status in “unity8” package in Ubuntu:
  In Progress

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding unity8.  This problem was most recently seen with version
  7.90+14.10.20140721.1-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/4f01f79bdfddd8698596211e4bbfba220c30c54b
  contains more details.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1346819] Re: Unity8 non-upstart tests fight for hardware with unity-system-compositor

2014-07-25 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/unity8

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1346819

Title:
  Unity8 non-upstart tests fight for hardware with unity-system-
  compositor

Status in “unity8” package in Ubuntu:
  In Progress

Bug description:
  Running unity8 AP tests (specifically
  unity8.shell.tests.test_upstart.UpstartIntegrationTests.test_no_sigstop)
  sees the following and the testing gets aborted:

  06:09:34.549 INFO _logging:41 - Starting test 
unity8.shell.tests.test_upstart.UpstartIntegrationTests.test_no_sigstop (Native 
Device)
  06:09:34.553 WARNING testcase:112 - No tracing available - install the 
python-autopilot-trace package!
  06:09:34.574 WARNING testcase:159 - Process manager backend unavailable, 
application snapshot support disabled.
  06:09:34.595 WARNING utilities:266 - WARNING: in file 
/home/phablet/autopilot/unity8/shell/tests/__init__.py, line 148 in setUp
  This function is deprecated. Please use 'the Touch class to instantiate a 
device object' instead.

  06:09:34.767 WARNING utilities:266 - WARNING: in file 
/home/phablet/autopilot/unity8/shell/tests/test_upstart.py, line 90 in 
test_no_sigstop
  This function is deprecated. Please use 'fixtures.EnvironmentVariable' 
instead.

  06:09:34.777 WARNING utilities:266 - WARNING: in file 
/home/phablet/autopilot/unity8/shell/tests/test_upstart.py, line 59 in 
_launch_unity
  This function is deprecated. Please use 'fixtures.EnvironmentVariable' 
instead.

  WARNING: QApplication was not created in the main() thread.
  Testability driver loaded. Wire protocol version is 1.4.
  g_dbus_connection_real_closed: Remote peer vanished with error: Underlying 
GIOStream returned 0 bytes on an async read (g-io-error-quark, 0). Exiting.
  Terminated
  ===

  The issue is occurring on both mako and flo.

  Steps to reproduce:
  1. bzr branch lp:ububntu-test-cases/touch
  2. cd touch
  3. ./scripts/provision.sh -i touch -r 110 -n NETWORK_FILE -w
(where network file is your wifi file )
  4. scripts/jenkins.sh -a unity8 -p /tmp/results

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1326470] Re: Scope author should be able to set the number of collapsed results to show

2014-07-25 Thread Launchpad Bug Tracker
** Branch linked: lp:ubuntu/utopic-proposed/unity8

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1326470

Title:
  Scope author should be able to set the number of collapsed results to
  show

Status in The Savilerow project:
  New
Status in Ubuntu UX bugs:
  Fix Committed
Status in The Unity 8 shell:
  In Progress
Status in “unity8” package in Ubuntu:
  In Progress

Bug description:
  In a scope with horizontal card layouts, you can only show up to 2
  results by default.  If the scope only has 1 category, that means most
  of the vertical space is blank, and looks quite empty.  There should
  either be a way to define how many rows to show, or the toolkit should
  show as many as will fill up the veritcal space

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348534] [NEW] foudoulis

2014-07-25 Thread foudoulis
Public bug reported:

foudoulis

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8
ProcVersionSignature: Ubuntu 3.11.0-17.31-generic 3.11.10.3
Uname: Linux 3.11.0-17-generic i686
NonfreeKernelModules: wl
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.2
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Fri Jul 25 11:37:53 2014
DistUpgraded: 2014-04-19 00:38:29,233 DEBUG enabling apt cron job
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus: bcmwl, 6.30.223.141+bdcom, 3.11.0-17-generic, i686: installed
ExtraDebuggingInterest: Yes, including running git bisection searches
GraphicsCard:
 Intel Corporation Mobile 945GSE Express Integrated Graphics Controller 
[8086:27ae] (rev 03) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:1468]
   Subsystem: Hewlett-Packard Company Device [103c:1468]
InstallationDate: Installed on 2013-05-29 (421 days ago)
InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
MachineType: Hewlett-Packard Compaq Mini CQ10-100
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-17-generic 
root=UUID=280174b6-84f5-47a0-acc7-6e8bf8d74376 ro rootflags=sync 
vesafb.invalid=1 drm.debug=0xe nopat plymouth:debug
SourcePackage: xorg
UpgradeStatus: Upgraded to trusty on 2014-04-18 (97 days ago)
dmi.bios.date: 12/11/2009
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: 14680 Ver. F.02
dmi.board.name: 1468
dmi.board.vendor: Hewlett-Packard
dmi.board.version: KBC Version 02.10
dmi.chassis.asset.tag: CNU0031KY4
dmi.chassis.type: 10
dmi.chassis.vendor: Inventec
dmi.modalias: 
dmi:bvnHewlett-Packard:bvr14680Ver.F.02:bd12/11/2009:svnHewlett-Packard:pnCompaqMiniCQ10-100:pvr049120201C030:rvnHewlett-Packard:rn1468:rvrKBCVersion02.10:cvnInventec:ct10:cvr:
dmi.product.name: Compaq Mini CQ10-100
dmi.product.version: 049120201C030
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.11.2+14.04.20140714-0ubuntu1
version.libdrm2: libdrm2 2.4.52-1
version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.3-0ubuntu0.1
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.3-0ubuntu0.1
version.xserver-xorg-core: xserver-xorg-core 2:1.15.1-0ubuntu2
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev 1:2.8.2-1ubuntu2
version.xserver-xorg-video-ati: xserver-xorg-video-ati 1:7.3.0-1ubuntu3.1
version.xserver-xorg-video-intel: xserver-xorg-video-intel 2:2.99.910-0ubuntu1
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau 1:1.0.10-1ubuntu2
xserver.bootTime: Thu Jul 24 16:30:54 2014
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id  17 
 vendor INL
xserver.version: 2:1.15.1-0ubuntu2

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


** Tags: apport-bug compiz-0.9 i386 trusty ubuntu

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to xorg in Ubuntu.
https://bugs.launchpad.net/bugs/1348534

Title:
  foudoulis

Status in “xorg” package in Ubuntu:
  New

Bug description:
  foudoulis

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.11.0-17.31-generic 3.11.10.3
  Uname: Linux 3.11.0-17-generic i686
  NonfreeKernelModules: wl
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Fri Jul 25 11:37:53 2014
  DistUpgraded: 2014-04-19 00:38:29,233 DEBUG enabling apt cron job
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus: bcmwl, 6.30.223.141+bdcom, 3.11.0-17-generic, i686: installed
  ExtraDebuggingInterest: Yes, including running git bisection searches
  GraphicsCard:
   Intel Corporation Mobile 945GSE Express Integrated Graphics Controller 
[8086:27ae] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:1468]
 Subsystem: Hewlett-Packard Company Device [103c:1468]
  InstallationDate: Installed on 2013-05-29 (421 days ago)
  InstallationMedia: Ubuntu 13.04 Raring Ringtail - Release i386 (20130424)
  MachineType: Hewlett-Packard Compaq Mini CQ10-100
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.11.0-17-generic 
root=UUID=280174b6-84f5-47a0-acc7-6e8bf8d74376 ro rootflags=sync 
vesafb.invalid=1 drm.debug=0xe nopat plymouth:debug
  SourcePackage: xorg
  UpgradeStatus: Upgraded to trusty on 2014-04-18 (97 days ago)
  dmi.bios.date: 12/11/2009
  dmi.bios.vendor: 

[Touch-packages] [Bug 1348538] Re: Display should come on when started charging

2014-07-25 Thread Michał Sawicz
Not sure exactly which component this fits into, so added tasks for all
I could think are related.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1348538

Title:
  Display should come on when started charging

Status in Ubuntu UX bugs:
  New
Status in “indicator-power” package in Ubuntu:
  New
Status in “powerd” package in Ubuntu:
  New
Status in “unity-system-compositor” package in Ubuntu:
  New

Bug description:
  The display should be triggered to turn on for a $timeout when
  connected to a charger, so that users can see charging commenced.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity-system-compositor (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-5.10-generic 3.16.0-rc6
  Uname: Linux 3.16.0-5-generic x86_64
  NonfreeKernelModules: nvidia wl
  ApportVersion: 2.14.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Jul 25 09:45:42 2014
  SourcePackage: unity-system-compositor
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1348538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348538] [NEW] Display should come on when started charging

2014-07-25 Thread Michał Sawicz
Public bug reported:

The display should be triggered to turn on for a $timeout when connected
to a charger, so that users can see charging commenced.

ProblemType: Bug
DistroRelease: Ubuntu 14.10
Package: unity-system-compositor (not installed)
ProcVersionSignature: Ubuntu 3.16.0-5.10-generic 3.16.0-rc6
Uname: Linux 3.16.0-5-generic x86_64
NonfreeKernelModules: nvidia wl
ApportVersion: 2.14.4-0ubuntu2
Architecture: amd64
CurrentDesktop: Unity
Date: Fri Jul 25 09:45:42 2014
SourcePackage: unity-system-compositor
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: ubuntu-ux
 Importance: Undecided
 Status: New

** Affects: indicator-power (Ubuntu)
 Importance: Undecided
 Status: New

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

** Affects: unity-system-compositor (Ubuntu)
 Importance: Undecided
 Status: New


** Tags: amd64 apport-bug utopic

** Also affects: ubuntu-ux
   Importance: Undecided
   Status: New

** Also affects: powerd (Ubuntu)
   Importance: Undecided
   Status: New

** Also affects: indicator-power (Ubuntu)
   Importance: Undecided
   Status: New

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity-system-compositor in
Ubuntu.
https://bugs.launchpad.net/bugs/1348538

Title:
  Display should come on when started charging

Status in Ubuntu UX bugs:
  New
Status in “indicator-power” package in Ubuntu:
  New
Status in “powerd” package in Ubuntu:
  New
Status in “unity-system-compositor” package in Ubuntu:
  New

Bug description:
  The display should be triggered to turn on for a $timeout when
  connected to a charger, so that users can see charging commenced.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.10
  Package: unity-system-compositor (not installed)
  ProcVersionSignature: Ubuntu 3.16.0-5.10-generic 3.16.0-rc6
  Uname: Linux 3.16.0-5-generic x86_64
  NonfreeKernelModules: nvidia wl
  ApportVersion: 2.14.4-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Fri Jul 25 09:45:42 2014
  SourcePackage: unity-system-compositor
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1348538/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1348150] Re: Memory corruption (using memory after freeing) in GNU Make

2014-07-25 Thread Dimitri John Ledkov
** Also affects: make-dfsg (Ubuntu Precise)
   Importance: Undecided
   Status: New

** Also affects: make-dfsg (Ubuntu Trusty)
   Importance: Undecided
   Status: New

** Also affects: make-dfsg (Ubuntu Utopic)
   Importance: Undecided
   Status: New

** Changed in: make-dfsg (Ubuntu Utopic)
   Status: New = Invalid

** Changed in: make-dfsg (Ubuntu Trusty)
   Status: New = Confirmed

** Changed in: make-dfsg (Ubuntu Precise)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to make-dfsg in Ubuntu.
https://bugs.launchpad.net/bugs/1348150

Title:
  Memory corruption (using memory after freeing) in GNU Make

Status in “make-dfsg” package in Ubuntu:
  Invalid
Status in “make-dfsg” source package in Precise:
  Confirmed
Status in “make-dfsg” source package in Trusty:
  Confirmed
Status in “make-dfsg” source package in Utopic:
  Invalid
Status in “make-dfsg” package in Fedora:
  New

Bug description:
  I'm getting memory corruption (accessing memory after freeing) in GNU
  Make on trivial Makefile

  #---
  release:CXXFLAGS ?= -O2 -mfpmath=sse
  debug:  CXXFLAGS ?= -g
  CXXFLAGS ?= -O2 -g

  release debug all:
  @echo $(CXXFLAGS)
  @echo $(CXX)
  #---

  when providing value of CXXFLAGS in command line. For example

  make CXXFLAGS=-O2

  Reproduced on:

  Ubuntu 14.04 LTS x86_64
  Ubuntu 12.04.4 LTS i686 (really chroot)

  Also reproduced with GNU Make-3.82 from ftp.gnu.org compiled from
  sources. Did not happen with GNU Make 4.0 from ftp.gnu.org

  Valgrind error messages (package installed on Ubuntu 14.04 LTS x86_64):
  ==4354== Memcheck, a memory error detector
  ==4354== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
  ==4354== Using Valgrind-3.10.0.SVN and LibVEX; rerun with -h for copyright 
info
  ==4354== Command: make CXXFLAGS=-O3
  ==4354== 
  ==4354== Invalid read of size 1
  ==4354==at 0x4C2E0E2: strlen (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4EC066D: strdup (strdup.c:41)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e880 is 0 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 
  ==4354== Invalid read of size 1
  ==4354==at 0x4C2E0F4: strlen (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4EC066D: strdup (strdup.c:41)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e881 is 1 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 
  ==4354== Invalid read of size 2
  ==4354==at 0x4C2FDC0: __GI_memcpy (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x4122B8: ??? (in /usr/bin/make)
  ==4354==by 0x416070: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354==  Address 0x520e880 is 0 bytes inside a block of size 4 free'd
  ==4354==at 0x4C2BDEC: free (in 
/usr/lib/valgrind/vgpreload_memcheck-amd64-linux.so)
  ==4354==by 0x416067: ??? (in /usr/bin/make)
  ==4354==by 0x416BA3: ??? (in /usr/bin/make)
  ==4354==by 0x416F73: ??? (in /usr/bin/make)
  ==4354==by 0x403216: ??? (in /usr/bin/make)
  ==4354==by 0x4E58EC4: (below main) (libc-start.c:287)
  ==4354== 

  From similar test with make-3.82 I'm getting:

  ==24068== Memcheck, a memory error detector
  ==24068== Copyright (C) 2002-2013, and GNU GPL'd, by Julian Seward et al.
  ==24068== Using 

[Touch-packages] [Bug 1348496] Re: [, Realtek ALC880, Line Out, N/A] Pulseaudio fails to detect card

2014-07-25 Thread Raymond
https://git.kernel.org/cgit/linux/kernel/git/tiwai/sound.git/tree/Documentation/sound/alsa
/HD-Audio-Models.txt

 name   Description
  -----
ALC880
==
  3stack3-jack in back and a headphone out
  3stack-digout 3-jack in back, a HP out and a SPDIF out
  5stack5-jack in back, 2-jack in front
  5stack-digout 5-jack in back, 2-jack in front, a SPDIF out
  6stack6-jack in back, 2-jack in front
  6stack-digout 6-jack with a SPDIF out


you must specify model since your BIOS did not setup pin default


sys/class/sound/hwC0D2/init_pin_configs:
0x14 0x
0x15 0x
0x16 0x
0x17 0x
0x18 0x
0x19 0x
0x1a 0x
0x1b 0x
0x1c 0x
0x1d 0x
0x1e 0x
0x1f 0x


** Package changed: pulseaudio (Ubuntu) = alsa-driver (Ubuntu)

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to pulseaudio in Ubuntu.
https://bugs.launchpad.net/bugs/1348496

Title:
  [, Realtek ALC880, Line Out, N/A] Pulseaudio fails to detect card

Status in “alsa-driver” package in Ubuntu:
  New

Bug description:
  Unable to detect the sound card.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: pulseaudio 1:4.0-0ubuntu11
  ProcVersionSignature: Ubuntu 3.13.0-32.57-generic 3.13.11.4
  Uname: Linux 3.13.0-32-generic i686
  ApportVersion: 2.14.1-0ubuntu3.2
  Architecture: i386
  AudioDevicesInUse: Error: command ['fuser', '-v', '/dev/snd/by-path', 
'/dev/snd/controlC0', '/dev/snd/hwC0D2', '/dev/snd/seq', '/dev/snd/timer'] 
failed with exit code 1:
  CurrentDesktop: Unity
  Date: Sat Jul 26 11:43:46 2014
  InstallationDate: Installed on 2014-07-24 (1 days ago)
  InstallationMedia: Ubuntu 14.04 LTS Trusty Tahr - Release i386 (20140417)
  ProcEnviron:
   LANGUAGE=en_IN:en
   PATH=(custom, no user)
   XDG_RUNTIME_DIR=set
   LANG=en_IN
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  Symptom: audio
  Symptom_Card: HDA-Intel - HDA Intel
  Symptom_Jack: Line Out, N/A
  Title: [, Realtek ALC880, Line Out, N/A] Pulseaudio fails to detect card
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 03/21/2007
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: 6.00 PG
  dmi.board.name: LakePort
  dmi.chassis.type: 3
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd03/21/2007:svn:pn:pvr:rvn:rnLakePort:rvr:cvn:ct3:cvr:

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/1348496/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1335481] Re: Mir servers crash with SIGABRT - assertion failed at buffer_queue.cpp:136 - !pending_client_notifications.empty()

2014-07-25 Thread Cemil Azizoglu
** Changed in: mir/0.5
Milestone: 0.5.1 = None

** Changed in: mir/0.5
   Status: Fix Committed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1335481

Title:
  Mir servers crash with SIGABRT - assertion failed at
  buffer_queue.cpp:136 - !pending_client_notifications.empty()

Status in Mir:
  Fix Committed
Status in Mir 0.4 series:
  Won't Fix
Status in Mir 0.5 series:
  Fix Released
Status in “mir” package in Ubuntu:
  Fix Released
Status in “unity-system-compositor” package in Ubuntu:
  Invalid

Bug description:
  Can't say so much, opened the launched an had a crash.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: unity-system-compositor 0.0.4+14.10.20140625-0ubuntu1
  ProcVersionSignature: Ubuntu 3.15.0-6.11-generic 3.15.0
  Uname: Linux 3.15.0-6-generic x86_64
  ApportVersion: 2.14.3-0ubuntu2
  Architecture: amd64
  BootLog:
   * Setting up X socket directories...    
[ OK ]
* Starting automatic crash report generation: apport    
[ OK ]
  Date: Sat Jun 28 20:23:03 2014
  ExecutablePath: /usr/sbin/unity-system-compositor
  GraphicsCard:
   Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller 
(primary) [8086:2a02] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Device [1025:0136]
 Subsystem: Acer Incorporated [ALI] Device [1025:0136]
  InstallationDate: Installed on 2014-06-19 (9 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Alpha amd64+mac (20140619)
  ProcCmdline: /usr/sbin/unity-system-compositor --file /run/mir_socket 
--from-dm-fd 10 --to-dm-fd 13 --vt 7
  ProcEnviron:
   
  Signal: 6
  SourcePackage: unity-system-compositor
  SystemImageInfo: Error: [Errno 2] No such file or directory: 
'system-image-cli'
  Title: unity-system-compositor crashed with SIGABRT in __assert_fail_base()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  version.libdrm: libdrm2 2.4.54-1
  version.lightdm: lightdm 1.11.3-0ubuntu1
  version.mesa: libegl1-mesa-dev N/A

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1303354] Re: [Dash] App Summary appears to be part of Description

2014-07-25 Thread Mike Nagle
** Description changed:

  The tagline in app descriptions looks like it is part of the main
  description, without any spacing or difference in font, which makes it
  hard to read. Is it possible to make the tagline bold or separated in
  some way?
+ 
+ Desired solution
+ -
+ Separate out tagline from rest of info and place directly below screenshots - 
see attached design

** Changed in: ubuntu-ux
   Status: Triaged = Fix Committed

** Attachment added: Preview design showing tagline
   
https://bugs.launchpad.net/unity8/+bug/1303354/+attachment/4162595/+files/Store%20Preview%20v1.jpg

** Description changed:

  The tagline in app descriptions looks like it is part of the main
  description, without any spacing or difference in font, which makes it
  hard to read. Is it possible to make the tagline bold or separated in
  some way?
  
  Desired solution
  -
- Separate out tagline from rest of info and place directly below screenshots - 
see attached design
+ Separate out tagline from rest of info and place directly below screenshots - 
see attached design including the tagline / strapline

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to click in Ubuntu.
https://bugs.launchpad.net/bugs/1303354

Title:
  [Dash] App Summary appears to be part of Description

Status in Click Package metadata search service:
  Triaged
Status in Online service used by software center:
  New
Status in Ubuntu UX bugs:
  Fix Committed
Status in The Unity 8 shell:
  Fix Released
Status in “click” package in Ubuntu:
  New
Status in “unity-scope-click” package in Ubuntu:
  New
Status in “unity8” package in Ubuntu:
  New

Bug description:
  The tagline in app descriptions looks like it is part of the main
  description, without any spacing or difference in font, which makes it
  hard to read. Is it possible to make the tagline bold or separated in
  some way?

  Desired solution
  -
  Separate out tagline from rest of info and place directly below screenshots - 
see attached design including the tagline / strapline

To manage notifications about this bug go to:
https://bugs.launchpad.net/click-package-index/+bug/1303354/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 756317] Re: Captive portals may corrupt apt translation indices

2014-07-25 Thread Roland Giesler
I open a possible duplicate bug #1343205, and it was marked as a
duplicate by Monsta, but...

The symptoms of this in my case are different.

1. It's always the same file that is corrupted.  
/var/lib/apt/lists/za.archive.ubuntu.com_ubuntu_dists_trusty-updates_main_i18n_Translation-en
2. This happens on multiple machines running 14.04 and earlier on different 
internet connections.
3. I have actually run tests and the link does not drop to cause this, it 
happens while the internet connection is stable.

Is this the same issue or not?

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apt in Ubuntu.
https://bugs.launchpad.net/bugs/756317

Title:
  Captive portals may corrupt apt translation indices

Status in “apt” package in Ubuntu:
  Fix Released
Status in “apt” package in Debian:
  New

Bug description:
  I have an adsl modem which returns an html page if the adsl link is
  broken. This page ends as the content of the apt cache files stored in
  /var/lib/apt/lists, which breaks apt.

  The only way to make apt work again is to delete all the files stored
  in /var/lib/apt/lists.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1297100] Re: Installing mir-demos also unexpectedly installs *-dev packages

2014-07-25 Thread PS Jenkins bot
Fix committed into lp:mir/devel at revision None, scheduled for release
in mir, milestone Unknown

** Changed in: mir
   Status: In Progress = Fix Committed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1297100

Title:
  Installing mir-demos also unexpectedly installs *-dev packages

Status in Mir:
  Fix Committed
Status in “mir” package in Ubuntu:
  Triaged

Bug description:
  Installing mir-demos also installs *-dev packages. I'm not sure what's
  going on here, but I do know that mir-demos is meant to only contain
  demo binaries and somehow that is depending on *-dev packages, which
  looks wrong:

  # Starting on a freshly installed trusty system
  $ sudo apt-get install mir-demos
  [sudo] password for dan: 
  Reading package lists... Done
  Building dependency tree   
  Reading state information... Done
  The following extra packages will be installed:
libboost-program-options-dev libboost-program-options1.54-dev
libboost-program-options1.54.0 libboost1.54-dev libgflags2 libglm-dev
libgoogle-glog0 libmirclient-dev libmirclient7 libmirclientplatform-mesa
libmirplatform libmirplatformgraphics-mesa libmirprotobuf-dev
libmirprotobuf0 libmirserver-dev libmirserver17 libprotobuf-dev
libprotobuf-lite8 libstdc++-4.8-dev libunwind8 mir-doc mircommon-dev
zlib1g-dev
  Suggested packages:
libboost1.54-doc libboost-atomic1.54-dev libboost-chrono1.54-dev
libboost-context1.54-dev libboost-coroutine.54-dev
libboost-date-time1.54-dev libboost-exception1.54-dev
libboost-filesystem1.54-dev libboost-graph1.54-dev
libboost-graph-parallel1.54-dev libboost-iostreams1.54-dev
libboost-locale1.54-dev libboost-log.54-dev libboost-math1.54-dev
libboost-mpi1.54-dev libboost-mpi-python1.54-dev libboost-python1.54-dev
libboost-random1.54-dev libboost-regex1.54-dev
libboost-serialization1.54-dev libboost-signals1.54-dev
libboost-system1.54-dev libboost-test1.54-dev libboost-thread1.54-dev
libboost-timer1.54-dev libboost-wave1.54-dev libboost1.54-tools-dev
libmpfrc++-dev libntl-dev libstdc++-4.8-doc
  The following NEW packages will be installed:
libboost-program-options-dev libboost-program-options1.54-dev
libboost-program-options1.54.0 libboost1.54-dev libgflags2 libglm-dev
libgoogle-glog0 libmirclient-dev libmirclient7 libmirclientplatform-mesa
libmirplatform libmirplatformgraphics-mesa libmirprotobuf-dev
libmirprotobuf0 libmirserver-dev libmirserver17 libprotobuf-dev
libprotobuf-lite8 libstdc++-4.8-dev libunwind8 mir-demos mir-doc
mircommon-dev zlib1g-dev
  0 to upgrade, 24 to newly install, 0 to remove and 0 not to upgrade.
  Need to get 59.1 MB of archives.
  After this operation, 221 MB of additional disk space will be used.
  Do you want to continue? [Y/n]

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 597260] Re: Update the launcher animations

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/597260

Title:
  Update the launcher animations

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Batch of adjustments to the launcher:
  - refine the visual contraction
  - adjust the drag animation (when moving launchers around)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 596879] Re: Add systray support

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/596879

Title:
  Add systray support

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  This is a note to add limited systray support before A2.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 597258] Re: Files Place (Model) - add support for browsing

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/597258

Title:
  Files Place (Model) - add support for browsing

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Let a view browse through files  folders. Design the API and
  integrate with an existing view.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 594175] Re: Gnome terminal isn't painted correctly

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/594175

Title:
  Gnome terminal isn't painted correctly

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Sometimes, after starting Mutter manually from the command line, Gnome
  Terminal's windows are not painted until you do a Ctrl+Alt+D twice or
  some other mass minimise/maximise to, it seems, flush the caches.

  This could also be related to a special-case inside Mutter to deal
  with shaped and/or transparent windows.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 594163] Re: Workspace switch cleanups

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/594163

Title:
  Workspace switch cleanups

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  - Clean up animations
  - Make sure windows are restored to correct position after animating
  - DND through workspaces

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 590729] Re: Make perceptual diff a optional dep

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/590729

Title:
  Make perceptual diff a optional dep

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  As it's not in main, make perceptualdiff an optional bulid dep for the
  tests.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 591616] Re: right click in the sidebar does not work after doing left click

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/591616

Title:
  right click in the sidebar does not work after doing left click

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Steps to reproduce:
    Left click on the icon of a running app then right click on it, 
right click dont have any effect
  Unity: 0.2.7

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 584235] Re: Xul-1.9.2.3+ breaks Mutter

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/584235

Title:
  Xul-1.9.2.3+ breaks Mutter

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Since today (may 22), on up-to-date Maverick, launching any 3.6+
  Firefox version, from the launcher or from /usr/share/applications,
  brings Mutter in a restart/stop loop. Killing and restarting manually
  Mutter does not help.

  Update : When Unity is started within a Gnome session. Everything is fine.
  Update : Same behavior with OOo suggests xul is the breaker. (tested with 
1.9.2.3 and 1.9.2.5).

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 592746] Re: Panel doesn't go to home position after scrolling up

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/592746

Title:
  Panel doesn't go to home position after scrolling up

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When I scroll the panel up to access icons that aren't visible, the
  panel doesn't go back to the home position. See screenshot.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 579683] Re: Unity does not work with latest Mutter

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/579683

Title:
  Unity does not work with latest Mutter

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Ubuntu Lucid
  Unity version: Unity 0.1.38
  Netbook: Fujitsu siemens Amilo Mini UI3520

  
  Unity-session dont start unity.
  I do start it manually.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 580707] Re: Can't add launchers

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/580707

Title:
  Can't add launchers

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  I found that I can't add more than 10 launchers to the Menu (dock?
  dash?). I have ten now, trying to add another one, it doesn't stick.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607813] Re: Design special tiles for the Launcher

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607813

Title:
  Design special tiles for the Launcher

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Review all Launcher visual assets during the Dallas platform sprint

  Description:

  Review all Launcher visual assets during the Dallas platform sprint.
  This includes the design of the special tiles in the launcher (ie.
  workspaces, all applications, etc..) should be finalized and the
  needed assets should be provided to DX through the assets poll.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1095521] Re: Manpage for mount list different options in same paragraph (keybits, nofail, iversion)

2014-07-25 Thread Bug Watch Updater
** Changed in: util-linux (Debian)
   Status: Confirmed = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to util-linux in Ubuntu.
https://bugs.launchpad.net/bugs/1095521

Title:
  Manpage for mount list different options in same paragraph (keybits,
  nofail, iversion)

Status in “util-linux” package in Ubuntu:
  Fix Released
Status in “util-linux” package in Debian:
  Fix Released

Bug description:
  man mount shows under section 'FILESYSTEM INDEPENDENT MOUNT OPTIONS' :

 keybits
Specifies the key size to use for an encryption algorithm.  Used
in  conjunction with the loop and encryption options.  nofail Do
not report errors for this device if it does not  exist.   iver-
sion  Every time the inode is modified, the i_version field will
be incremented.

  
  The nofail and iversion options should be their own options, not a 
continuation of 'keybits'.

  apt-cache policy util-linux :

  util-linux:
Installed: 2.20.1-1ubuntu3
Candidate: 2.20.1-1ubuntu3
Version table:
   *** 2.20.1-1ubuntu3 0
  500 http://au.archive.ubuntu.com/ubuntu/ precise/main amd64 Packages
  100 /var/lib/dpkg/status

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/util-linux/+bug/1095521/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607805] Re: Searching in Files Place shows duplicates

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607805

Title:
  Searching in Files Place shows duplicates

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When searching in Files Place, file items are sometime duplicated
  within groups and across groups; items should be unique within groups,
  and dedupicated across groups according to the Files Place
  specification.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607808] Re: Specify and implement visual treatment for More Results button

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607808

Title:
  Specify and implement visual treatment for More Results button

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  This button needs to be designed, including its hover and click
  states.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607772] Re: Launcher fold position

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607772

Title:
  Launcher fold position

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When Launcher folds, the tile for the active application should be
  center of folded region. If nothing running, center around last point
  of cursor intersection.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607688] Re: Files Place needs size and spacing of items specified

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607688

Title:
  Files Place needs size and spacing of items specified

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Thumbnail size, item spacing, and label treatment need to be added to
  the Files Place spec.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607763] Re: Launcher folded tiles should have correct depth index

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607763

Title:
  Launcher folded tiles should have correct depth index

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Sometimes, when folded, the tiles in the launcher have the wrong depth
  index.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607764] Re: Files Place empty search view is not implemented

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607764

Title:
  Files Place empty search view is not implemented

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Please see Files Place specification for details on what to display
  when no search results are found.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607768] Re: Sections need hover and clicked states

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607768

Title:
  Sections need hover and clicked states

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Section labels in the Dash navigation control should have hover and
  click states.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607516] Re: Icons are blurry

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607516

Title:
  Icons are blurry

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  unity:
Installed: 0.2.18-0ubuntu1~lucid1

  As per the title.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607671] Re: Search Field caret should blink

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607671

Title:
  Search Field caret should blink

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When the caret is displayed, it should blink.

  Use the same frequency as text entries in Chromium.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 599718] Re: UnityLauncherQuicklistMenu clutter_actor_queue_relayout() warning

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/599718

Title:
  UnityLauncherQuicklistMenu clutter_actor_queue_relayout() warning

Status in Unity:
  Fix Released
Status in “clutk” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity

  Running unity 0.2.12 on a GNOME session (ie running unity under
  GNOME, compiz is still running), when moving the mouse over the
  launchers I get those warnings displayed

  (unity:19156): Clutter-WARNING **: The actor
  'UnityLauncherQuicklistMenu' is currently inside an allocation cycle;
  calling clutter_actor_queue_relayout() is not recommended

  (unity:19156): Clutter-WARNING **: The actor
  'UnityLauncherQuicklistMenuItem' is currently inside an allocation
  cycle; calling clutter_actor_queue_relayout() is not recommended

  (unity:19156): Clutter-WARNING **: The actor
  'UnityLauncherQuicklistMenu' is currently inside an allocation cycle;
  calling clutter_actor_queue_relayout() is not recommended

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 597262] Re: Apps Place (Model) - provide basic model support

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/597262

Title:
  Apps Place (Model) - provide basic model support

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Provide a simple module to publish an apps place model. Meant also to
  unblock the related packaging activity.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 599425] Re: poor battery performance in Unity

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/599425

Title:
  poor battery performance in Unity

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  The battery life on my Netbook is being eaten up by the new update.  I
  think the problem is the index is being built on battery and
  decreasing the time I have on battery.

  Updated on power, had a full charge, unplugged to go watch TV and
  logged into new Unity.  Within 10 minutes I was at 1/2 battery life
  and 10 minutes later was done to 3/4 battery.  Seems like an index was
  being built for the first time you use the search (zeitigest  I think
  the application is called).  Would be nice if there was a way to
  configure indexing on battery life.

  RUnning a Dell Mini 9 w/ 10.04 completly up to date. 1 GB of RAM on my
  netbook

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 598257] Re: Managing multiple windows of the same type is not user friendly

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/598257

Title:
  Managing multiple windows of the same type is not user friendly

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Version: 0.2.10-0ubuntu1~lucid1

  When I have two different launchers in panel that launch the same application 
type, only one will manage the windows.
  Example: file manager and applications 
  Both run nautilus window manager. But when I click applications button I am 
supposed to manage spawned window with file manager button. This is 
counter-intuitive.

  I would like to have multiple launchers for applications like nautilus
  or firefox, so I can have easy access to different folders/sites right
  away from the panel.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 619693] Re: Startup Notification support

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/619693

Title:
  Startup Notification support

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Unity need to support the Startup Notification standard, ie setting
  the right flags when launching apps, and also reflecting the
  progresses of the startup process on the launcher.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 620011] Re: [master] software-center crashed with AttributeError in _parse_and_or_not_tag()

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/620011

Title:
  [master] software-center crashed with AttributeError in
  _parse_and_or_not_tag()

Status in Ubuntu Software Center:
  Invalid
Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “software-center” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: software-center

  Attempting to run software-center for the first time after a fresh
  install of Maverick

  ProblemType: Crash
  DistroRelease: Ubuntu 10.10
  Package: software-center 2.1.10
  ProcVersionSignature: Ubuntu 2.6.35-15.21-generic 2.6.35.1
  Uname: Linux 2.6.35-15-generic x86_64
  Architecture: amd64
  Date: Wed Aug 18 13:53:23 2010
  ExecutablePath: /usr/share/software-center/software-center
  InstallationMedia: Ubuntu 10.10 Maverick Meerkat - Alpha amd64 (20100818)
  InterpreterPath: /usr/bin/python2.6
  PackageArchitecture: all
  ProcCmdline: /usr/bin/python /usr/bin/software-center
  ProcEnviron:
   LANG=en_US.utf8
   SHELL=/bin/bash
  PythonArgs: ['/usr/bin/software-center']
  SourcePackage: software-center
  Title: software-center crashed with AttributeError in _parse_and_or_not_tag()
  UserGroups: adm admin cdrom dialout lpadmin plugdev sambashare

To manage notifications about this bug go to:
https://bugs.launchpad.net/software-center/+bug/620011/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1335481] Re: Mir servers crash with SIGABRT - assertion failed at buffer_queue.cpp:136 - !pending_client_notifications.empty()

2014-07-25 Thread Daniel van Vugt
** Changed in: mir/0.5
   Status: Fix Released = Fix Committed

** Changed in: mir/0.5
Milestone: None = 0.5.1

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to mir in Ubuntu.
https://bugs.launchpad.net/bugs/1335481

Title:
  Mir servers crash with SIGABRT - assertion failed at
  buffer_queue.cpp:136 - !pending_client_notifications.empty()

Status in Mir:
  Fix Committed
Status in Mir 0.4 series:
  Won't Fix
Status in Mir 0.5 series:
  Fix Committed
Status in “mir” package in Ubuntu:
  Fix Released
Status in “unity-system-compositor” package in Ubuntu:
  Invalid

Bug description:
  Can't say so much, opened the launched an had a crash.

  ProblemType: Crash
  DistroRelease: Ubuntu 14.10
  Package: unity-system-compositor 0.0.4+14.10.20140625-0ubuntu1
  ProcVersionSignature: Ubuntu 3.15.0-6.11-generic 3.15.0
  Uname: Linux 3.15.0-6-generic x86_64
  ApportVersion: 2.14.3-0ubuntu2
  Architecture: amd64
  BootLog:
   * Setting up X socket directories...    
[ OK ]
* Starting automatic crash report generation: apport    
[ OK ]
  Date: Sat Jun 28 20:23:03 2014
  ExecutablePath: /usr/sbin/unity-system-compositor
  GraphicsCard:
   Intel Corporation Mobile GM965/GL960 Integrated Graphics Controller 
(primary) [8086:2a02] (rev 03) (prog-if 00 [VGA controller])
 Subsystem: Acer Incorporated [ALI] Device [1025:0136]
 Subsystem: Acer Incorporated [ALI] Device [1025:0136]
  InstallationDate: Installed on 2014-06-19 (9 days ago)
  InstallationMedia: Ubuntu 14.10 Utopic Unicorn - Alpha amd64+mac (20140619)
  ProcCmdline: /usr/sbin/unity-system-compositor --file /run/mir_socket 
--from-dm-fd 10 --to-dm-fd 13 --vt 7
  ProcEnviron:
   
  Signal: 6
  SourcePackage: unity-system-compositor
  SystemImageInfo: Error: [Errno 2] No such file or directory: 
'system-image-cli'
  Title: unity-system-compositor crashed with SIGABRT in __assert_fail_base()
  UpgradeStatus: No upgrade log present (probably fresh install)
  UserGroups:
   
  version.libdrm: libdrm2 2.4.54-1
  version.lightdm: lightdm 1.11.3-0ubuntu1
  version.mesa: libegl1-mesa-dev N/A

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 615287] Re: Icons needed for groups in the places

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/615287

Title:
  Icons needed for groups in the places

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in Unity Asset Pool:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in Unity Files Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-asset-pool” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  We need some monochrome-unity-style icons for the groups headers in
  the places. Both for files' and applications' place.

  Without considering which exact icons will be needed, here's a list of
  the group names:

  Files place:
   * Recent
   * Downloads
   * Favorite Folders
   * Date ranges: Today, Yesterday, This week, Last week, etc. up to Last Year

  Applications place:
   * Most Used
   * Installed
   * Available

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 613889] Re: Launcher icons stuck in flatten mode

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/613889

Title:
  Launcher icons stuck in flatten mode

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Launcher icons can get stuck in flatten mode sometimes.

  The issue can be reproduced when Unity starts and as soon the launcher
  icons go into flatten mode.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 618545] Re: sync dbus call from unity to place daemons on startup

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/618545

Title:
  sync dbus call from unity to place daemons on startup

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When Unity starts up it does synchronous dbus calls to the place
  daemons to initialize with dbus activation. This is very bad as the
  place daemons does loads of IO on startup - hence will be slow to
  respond if they are not already running.

  I actually had a quick stab at this a while ago, but gave up because
  it seemed to be quite a big patch. As far as I know - in order to do
  async dbus calls with Vala you need to declare an interface for the
  remote end with 'async' modifiers on the methods, and then cast your
  proxy object to that interface. For an example see:
  http://git.gnome.org/browse/vala/tree/tests/dbus/async.test

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 619695] Re: Display removable media (USB device, etc.) on the launcher

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/619695

Title:
  Display removable media (USB device, etc.) on the launcher

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Removable devices should be presented as a new icon on the launcher.
  Activating the device icon should call the files place.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 610226] Re: Dropbox 0.8.90 build shows in the launcher

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/610226

Title:
  Dropbox 0.8.90 build shows in the launcher

Status in Unity:
  Fix Released
Status in “bamf” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Unity 0.2.20
  Dropbox 0.8.90 experimental build with indicator support

  It has the triangle and the title Dropbox. I can't quit it from the
  launcher.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 609787] Re: Ubuntu button edge should be grooved not shadowed

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/609787

Title:
  Ubuntu button edge should be grooved not shadowed

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  The current look of hte Ubuntu button on the panel has a drop shadow
  to the right (on the panel). That makes it look like the button is
  somehow raised above the rest of the panel. Instead, the button should
  be part of the panel. I would suggest moving to a groove edge, rather
  than a drop shadow edge.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 616585] Re: After installation of software, icon not available to run

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/616585

Title:
  After installation of software, icon not available to run

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  I installed virtualbox 3.2 and chrome which I download the
  installation package for.  After installation, they show up in Ubuntu
  Software Center underneath Installed Software but no icons were added
  to the menus.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 616737] Re: GIO Extension point of GAppInfo lauch hooks

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/616737

Title:
  GIO Extension point of GAppInfo lauch hooks

Status in BAMF Application Matching Framework:
  Fix Released
Status in The G Library - GLib:
  Fix Released
Status in Unity:
  Fix Released
Status in WnckSync Library:
  In Progress
Status in “bamf” package in Ubuntu:
  Fix Released
Status in “glib2.0” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “wncksync” package in Ubuntu:
  Fix Released

Bug description:
  We need to update the patch we ship adding the GIO extension point for
  adding a hook called when GAppInfos are launched. See GNOME bugzilla
  https://bugzilla.gnome.org/show_bug.cgi?id=606960.

  Since technically this breaks the ABI and API of GLib we need to
  synchronize this with updating BAMF and Wncksync. Jason has
  volunteered to do that.

  The plan is to use this bug as a tracker-bug collecting both the GIO
  patch and the relevant branches that Jason create, as well as the
  affected Ubuntu packages.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 612323] Re: indicators dont get focus in workspace switch mode

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/612323

Title:
  indicators dont get focus in workspace switch mode

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  click the workspace switcher. now clicking on the indicator opens it
  but unusable

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 610626] Re: Right click on launcher can lead to unresponsive icon

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/610626

Title:
  Right click on launcher can lead to unresponsive icon

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Right click an icon in the launcher.
  Click on the desktop to dismiss the menu.
  This icon becomes unresponsive to hovering and right clicking until another 
icon is hovered.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 611968] Re: Closing a window of an application on the dock by default removes that icon

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/611968

Title:
  Closing a window of an application on the dock by default removes that
  icon

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When you have added an application to the dock, and then open a window
  of that application, it all functions well. Until you close that
  window, at which point it removes it from the dock, so you can't open
  it again from the dock, which is frustrating. If this can be fixed it
  would be ideal,

  J

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 619068] Re: Unity place files needs internationalization support

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/619068

Title:
  Unity place files needs internationalization support

Status in Ubuntu Translations:
  Fix Released
Status in Unity:
  Fix Released
Status in Unity Files Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity-place-files

  Right now Unity place files lacks i18n support, which effectively
  means it is not translatable.

  In order to comply with the main inclusion process
  (https://wiki.ubuntu.com/MainInclusionProcess), the Ubuntu philosophy
  (http://www.ubuntu.com/project/about-ubuntu/our-philosophy), and in
  short for non-English speakers to be able to use it, the application
  needs to implement internationalization.

  This means adding gettext support, marking visible strings for
  translation and exposing them in Launchpad.

  For more information see the internationalization guide at:

    https://wiki.ubuntu.com/UbuntuDevelopment/Internationalisation
  (still WIP).

  It would be very useful to have this in place by the User Interface
  Freeze on the 26th of August, so that translators can then start doing
  their work according to the release schedule.

  Thanks!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/619068/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 613368] Re: Inverted indices support in libdee

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/613368

Title:
  Inverted indices support in libdee

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Required to:
  1) Do incremental updates of the result sets (not call .clear() on the model)
  2) De-dupe the results properly
  3) Searching apps and respecting the bloody XDG menu spec :-)
  4) Generally being a wickedly awesome API

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 612993] Re: Undecorate maximized windows

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/612993

Title:
  Undecorate maximized windows

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Modify mutter to undecorate maximized windows with Unity

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 619072] Re: Unity Applications Place needs internationalization support

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/619072

Title:
  Unity Applications Place needs internationalization support

Status in Ubuntu Translations:
  Fix Released
Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released
Status in “unity” source package in Maverick:
  New
Status in “unity-place-applications” source package in Maverick:
  Fix Released

Bug description:
  Right now Unity Applications Place lacks i18n support, which
  effectively means it is not translatable.

  In order to comply with the main inclusion process
  (https://wiki.ubuntu.com/MainInclusionProcess), the Ubuntu philosophy
  (http://www.ubuntu.com/project/about-ubuntu/our-philosophy), and in
  short for non-English speakers to be able to use it, the application
  needs to implement internationalization.

  This means adding gettext support, marking visible strings for
  translation and exposing them in Launchpad.

  For more information see the internationalization guide at:

https://wiki.ubuntu.com/UbuntuDevelopment/Internationalisation
  (still WIP).

  It would be very useful to have this in place by the User Interface
  Freeze on the 26th of August, so that translators can then start doing
  their work according to the release schedule.

  Thanks!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/619072/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 612537] Re: Dash doesn't hide when clicking an app in the Available group

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/612537

Title:
  Dash doesn't hide when clicking an app in the Available group

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  In the applications place, when clicking an Available app (loading up
  the software-center) the dash doesn't hide. This means the user is
  unable to see the software center.

  Note to implementer: The files place and apps place have different
  behaviour here. The files place activates folder browsing which should
  not hide the dash. Maybe a new key in the [Activation] group of the
  .place file to control the behaviour?

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608148] Re: Applications Place search does not work

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608148

Title:
  Applications Place search does not work

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Searching for fire doesn't find Firefox, for example.

  Please see Applications Place Ix Specification for intended search
  behavior.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608138] Re: Applications Place needs size and spacing of items specified

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608138

Title:
  Applications Place needs size and spacing of items specified

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Icon size, item spacing, and label treatment need to be added to the
  Applications Place spec.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608134] Re: In Applications Place, Most Used group should filter contents based on current section

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608134

Title:
  In Applications Place, Most Used group should filter contents based on
  current section

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  For example, when viewing the Games Section, the Most Used group
  should display the Most Used games. Currently, the Most Used group
  shows the same items regardless of the current section.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607847] Re: Specify and implement a maximum width on the Search Field

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607847

Title:
  Specify and implement a maximum width on the Search Field

Status in Ayatana Design:
  New
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Search Field is becoming way too wide on many screens, especially on
  the Dash home screen where it takes up the entire width of the Dash.

  Let's try a maximum width of 30 characters.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608151] Re: In Applications Place, Installed group should always be expanded

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608151

Title:
  In Applications Place, Installed group should always be expanded

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Installed group is currently collapsed but expandable; instead, it
  should always be fully expanded (including when searching), and not
  display a collapse/expand button.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608133] Re: Successive search states cause blinking/flashing

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608133

Title:
  Successive search states cause blinking/flashing

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in Unity Files Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  As the set of search results changes, the groups/items displayed in
  the Dash should smoothly grow or shrink. Currently, the Dash flashes
  when search results change.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608130] Re: Deliver and implement design for Dash forward/back buttons

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608130

Title:
  Deliver and implement design for Dash forward/back buttons

Status in Ayatana Design:
  New
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Forward/back buttons are currently missing from the Dash navigation
  bar.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607840] Re: Applications place empty section view not implemented

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607840

Title:
  Applications place empty section view not implemented

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released

Bug description:
  When viewing an empty section, a message about the missing
  applications is displayed. More details can be found in the
  Applications Place Ix Specification (2.1.6.b).

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 607834] Re: Empty section view not implemented

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/607834

Title:
  Empty section view not implemented

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When viewing an empty section, a message about the missing files is
  displayed. More details can be found in the Files Place Ix
  Specification.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 586810] Re: Port libzeitgeist from EggDbus to GDBus

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/586810

Title:
  Port libzeitgeist from EggDbus to GDBus

Status in Zeitgeist Client Library:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  As GDBus is now in GLib trunk EggDBus will probably be more or less
  unmaintained.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 633081] Re: launcher transient tiles transitions should be much more graceful

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/633081

Title:
  launcher transient tiles transitions should be much more graceful

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  the reveal and close animation of transient tiles should be
  implemented as in the prototype (if you have problems running it,
  there is also a video linked from the specs). As it is now is far from
  being smooth, especially the closing one.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 630790] Re: Duplicate launchers in the dock

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/630790

Title:
  Duplicate launchers in the dock

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  I had 2 Evolution icons on my dock:

  Evolution calendar and evolution mail.

  upon opening evolution mail, it would open it under a new launcher:
  mail and calendar evolution

  upon opening evolution calendar instead, SOMETIMES it would open it
  under the same launcher, while other times it would open it under
  mail and calendar evolution

  by pinning and opening directly mail and calendar evolution it is
  always opened in place as expected...

  as a workaround i removed from the dock the problematic launchers and
  kept only the working one, but this is really ugly for the unity
  experience imho: the non working launchers clutter the dock and
  confuse the new users

  (i also have a problem with duplicate launchers inside the place-
  applications ...there were 2 copies of cheese showing there,
  unfortunately i cannot verify if this is still happening with the
  latest updates due to Bug #629692 )

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 632227] Re: Untranslatable string for empty sections

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/632227

Title:
  Untranslatable string for empty sections

Status in Ubuntu Translations:
  Fix Released
Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in Unity Files Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released

Bug description:
  The message displayed for empty sections can not be properly
  translated due to it using Vala @-format. For instance in the Danish
  locale it becomes:

There are no præsentationer in your Home folder

  Futhermore the TRANSLATORS comment on the offending line needs to be
  above the line not on the same line

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-translations/+bug/632227/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 629692] Re: unity-applications-daemon crashed with SIGSEGV in gee_list_list_iterator()

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/629692

Title:
  unity-applications-daemon crashed with SIGSEGV in
  gee_list_list_iterator()

Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity-place-applications

  Description:  Ubuntu maverick (development branch)
  Release:  10.10

  unity-place-applications:
Installé : 0.2.16-0ubuntu1
Candidat : 0.2.16-0ubuntu1
   Table de version :
   *** 0.2.16-0ubuntu1 0
  500 http://gp.archive.ubuntu.com/ubuntu/ maverick/main i386 Packages
  100 /var/lib/dpkg/status
  i click on unity applications menu or on one of the unity applications menu 
and then Xserver crashed

  ProblemType: Crash
  DistroRelease: Ubuntu 10.10
  Package: unity-place-applications 0.2.16-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-19.28-generic 2.6.35.3
  Uname: Linux 2.6.35-19-generic i686
  Architecture: i386
  Date: Fri Sep  3 13:28:58 2010
  ExecutablePath: /usr/lib/unity-place-applications/unity-applications-daemon
  InstallationMedia: Ubuntu 9.10 Karmic Koala - Release i386 (20091028.5)
  ProcCmdline: /usr/lib/unity-place-applications/unity-applications-daemon
  ProcEnviron:
   SHELL=/bin/bash
   LANG=fr_FR.utf8
  SegvAnalysis:
   Segfault happened at: 0xadc6b3 gee_list_list_iterator+35:  mov
(%esi),%eax
   PC (0x00adc6b3) ok
   source (%esi) (0x) not located in a known VMA region (needed 
readable region)!
   destination %eax ok
  SegvReason: reading NULL VMA
  Signal: 11
  SourcePackage: unity-place-applications
  StacktraceTop:
   gee_list_list_iterator () from /usr/lib/libgee.so.2
   ?? ()
   ?? ()
   ?? ()
   ?? ()
  Title: unity-applications-daemon crashed with SIGSEGV in 
gee_list_list_iterator()
  UserGroups: adm admin audio cdrom dialout dip fax floppy fuse lpadmin netdev 
plugdev sambashare tape vboxusers video

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 628372] Re: Docky freezes in zeitgeist-gio when launching application

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/628372

Title:
  Docky freezes in zeitgeist-gio when launching application

Status in Docky:
  Invalid
Status in Zeitgeist Client Library:
  Fix Released
Status in Unity:
  Fix Released
Status in “docky” package in Ubuntu:
  Invalid
Status in “libzeitgeist” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: docky

  Since today's (kernel) updates Docky freezes when launching an --
  previously not running -- application from the dock. The icon jump
  animation isn't shown, the mouseover stays on screen, and Docky
  becomes completely unresponsive.

  Launching applications in other way or minimizing/maximizing windows
  doesn't freeze Docky.

  I'm using
  Ubuntu version: Maverick alpha
  Docky version: 2.1.0 vzr docky r1620 ppa
  Kernal version: 2.6.35.19
  CLR version: 2.0.50727.1433

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 623352] Re: add GIO module for libzeitgeist

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/623352

Title:
  add GIO module for libzeitgeist

Status in Zeitgeist Client Library:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Implement a GIO module that uses libzeitgeist to send events to
  Zeitgeist each time an app is launched

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 624505] Re: Unity needs 8 activity icons for the home screen

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/624505

Title:
  Unity needs 8 activity icons for the home screen

Status in Ayatana Design:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Subject says it all

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 622440] Re: fts extension doesn't support deletes

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/622440

Title:
  fts extension doesn't support deletes

Status in Unity:
  Fix Released
Status in Zeitgeist Extensions:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  The Zeitgeist FTS Extension does not hook up to the deletion hooks
  available since ZG = 0.5.0. ALl the internal machinery is set up for
  it, but was never wired up because it was developed prior to ZG 0.5.0.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 621365] Re: Incorrect transparency in Workspaces view

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/621365

Title:
  Incorrect transparency in Workspaces view

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Workspaces view doesn't have enough opacity and disappears when mouse in not 
over Workspaces icon. After the workspace is switched, windows are 
transparent too. See attached screenshots. 
  The bug might be related to bug 620737

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 621779] Re: Windows raised in wrong order

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/621779

Title:
  Windows raised in wrong order

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  In trunk, the algorithm to choose which window should be raised when
  the use clicks on an app icon is wrong in that it always raises the
  window that the user touched furtherest from last (instead of the the
  last window of the application that the user touched).

  It also does not take into account windows with urgent hints on them.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 621020] Re: Unity crash when closing maximized window

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/621020

Title:
  Unity crash when closing maximized window

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  I just had unity trunk crash on me. It was caused by me clicking
  Commit in a maximized bzr-gtk window (which causes that window to
  close). I can't reproduce this 100% of the time... But here's a trace
  for you :-)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 620758] Re: Applications don't always show up when unminimizing

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/620758

Title:
  Applications don't always show up when unminimizing

Status in Mutter:
  New
Status in Unity:
  Fix Released
Status in “mutter” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity

  Whenever the window buttons change between application and top panel,
  the first try to unminimize a minimized application via the launcher
  will fail (but the global menu gets updated correctly).

  To reproduce:

  1.) Start a gnome-terminal from the launcher (not maximized).
  2.) Click on its minimize button, then on the launcher - gnome-terminal gets 
restored like expected
  3.) Maximize the window to bring the window buttons to the top panel.
  4.) Now minimize gnome-terminal, then click on the launcher - the global 
menu will update but gnome-terminal won't show (plus, the desktop is blocked).
  5.) Click on the launcher again - the app expose mode gets initiated.
  6.) Click on the gnome-terminal to focus it and repeat 4. - this time 
gnome-terminal gets restored to its maximized state like expected (subsequent 
tries succeed as well).
  7.) Unmaximize gnome-terminal to bring the window buttons back to the 
application.
  9.) Repeat 2. - the global menu will update but gnome-terminal won't show 
(plus, the desktop is blocked where the window is supposed to be).
  10.) Clicking the launcher a second time again will start the app expose 
mode, selecting the gnome-terminal will show it in its unmaximized state and 
repeating the process will succeed.

  unity: 0.2.28-0ubuntu1
  mutter:2.31.5-0ubuntu3.1
  clutter 1.2.12-0ubuntu5

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 617308] Re: fts doesn't index uris correctly

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/617308

Title:
  fts doesn't index uris correctly

Status in Unity:
  Fix Released
Status in Zeitgeist Extensions:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  When I have a uri that says file:///..foo%20bar, it's not
  returned when searching for bar.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 608153] Re: Trackpad scrolling is slow and jerky; should be identical to Launcher scrolling behavior

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/608153

Title:
  Trackpad scrolling is slow and jerky; should be identical to Launcher
  scrolling behavior

Status in Ayatana Design:
  New
Status in The Clutter Toolkit:
  Fix Released
Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Scrolling the Dash using my trackpad is very slow and jerky.

  The Dash should share scrolling behavior with the Launcher; in fact,
  the scrolling calculations should be shared between the Launcher, the
  Dash, and possibly other scrollable views in the future.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 620427] Re: tomboy applet prevents the indicator to be shown

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/620427

Title:
  tomboy applet prevents the indicator to be shown

Status in Unity:
  Fix Released
Status in “gnome-session” package in Ubuntu:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity

  Quicklists no longer work on any of my launcher icons in Unity.  This
  means I cannot pin an icon to the launcher or benefit from the
  quicklist of (for instance) Tomboy.  When I right click on a launcher
  I either get nothing or I gues the app name and Quit as my only
  options.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.10
  Package: unity 0.2.26-0ubuntu1
  ProcVersionSignature: Ubuntu 2.6.35-15.21-generic 2.6.35.1
  Uname: Linux 2.6.35-15-generic i686
  Architecture: i386
  Date: Thu Aug 19 12:34:34 2010
  InstallationMedia: Ubuntu-Netbook 10.10 Maverick Meerkat - Alpha i386 
(20100803.1)
  ProcEnviron:
   LANG=en_GB.utf8
   SHELL=/bin/bash
  SourcePackage: unity

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 600187] Re: Missing applications in Unity Applications Place

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/600187

Title:
  Missing applications in Unity Applications Place

Status in Ubuntu Software Center:
  Invalid
Status in Unity:
  Fix Released
Status in Unity Applications Lens:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-applications” package in Ubuntu:
  Fix Released

Bug description:
  Gnome Control Center should be included in the System section in the
  Unity Applications Place. Likewise for other utilities provided by
  Gnome such as gnome-display-properties et al.

To manage notifications about this bug go to:
https://bugs.launchpad.net/software-center/+bug/600187/+subscriptions

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 598449] Re: the folders category is empty

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/598449

Title:
  the folders category is empty

Status in Unity:
  Fix Released
Status in Unity Files Lens:
  Fix Released
Status in Zeitgeist Framework:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  Binary package hint: unity-place-files

  Using 0.5.2-0ubuntu1 in current maverick the Folders category is
  empty though I've been using nautilus and browsing folders since the
  update, should it record those or is there another way to add folders
  to the list?

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 1323772] Re: Unattended apt-get dist-upgrade -qq --force-yes on 14.04 fails on grub configuration.

2014-07-25 Thread Anders Hall
Note that the bug https://bugs.launchpad.net/cloud-init/+bug/1309079
mentions that the work-around is not good enough. Will test myself
today.

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to apt in Ubuntu.
https://bugs.launchpad.net/bugs/1323772

Title:
  Unattended apt-get dist-upgrade -qq --force-yes on 14.04 fails on
  grub configuration.

Status in “apt” package in Ubuntu:
  Confirmed

Bug description:
  Unattended apt-get dist-upgrade -qq --force-yes on 14.04 fails on
  Grub configuration.

  Reproduce by using  apt-get dist-upgrade -qq --force-yes on the
  latest Ubuntu 14.04 image (https://cloud-
  images.ubuntu.com/locator/ec2/). It will not select grub defaults
  (install the package maintainer's version) during upgrade. Setup
  will prompt the user for input.

  This is a new behavior (for me, since Ubuntu 6). It breaks
  automatic/scripted setup of servers.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 652840] Re: Files place is slow to come up and dismiss

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/652840

Title:
  Files place is slow to come up and dismiss

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  The files place is slow to show on screen and takes  1s to go away
  when dismissing it.

  This is because there is a miscommunication in the DBus
  interactions, where Unity sends us a barrage of messages that confuses
  the files daemon. The daemon then emits PlaceEntryInfoChanged (when
  the info hasnøt really changed) - this then confuses Unity and it
  sends an even bigger barrage of messages to the files daemon :-)

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 651232] Re: evolution matching isn't at best (icon not beeing the right one in the launcher)

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Confirmed

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/651232

Title:
  evolution matching isn't at best (icon not beeing the right one in the
  launcher)

Status in BAMF Application Matching Framework:
  Triaged
Status in Unity:
  Triaged
Status in Unity 2D:
  Triaged
Status in “bamf” package in Ubuntu:
  Triaged
Status in “unity” package in Ubuntu:
  Confirmed

Bug description:
  in UNE, we have 3 differents icons for evolution:
  evolution express mail
  evolution express calendar
  evolution express contact

  The thing is evolution is just one process, and so, we get the icon of the 
first launched desktop file in the launcher.
  Tweaks like for OOo will be needed there.

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 650908] Re: Files not sorted according to locale in folder browsing mode

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/650908

Title:
  Files not sorted according to locale in folder browsing mode

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  When you're in folder browsing mode the files are not sorted correctly
  according to you current locale. Ie. 'éléphant.txt' should come
  directly after 'elephant.txt', but before 'tiger.txt'. Currently it
  doesn't.

  The reason is that we only set LC_MESSAGES and not LC_ALL in the
  setlocale() call in the beginning on main().

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


[Touch-packages] [Bug 650897] Re: Unable to activate root section of pathbar in folder browsing mode

2014-07-25 Thread Treviño
** Changed in: unity (Ubuntu)
   Status: New = Fix Released

-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to unity in Ubuntu.
https://bugs.launchpad.net/bugs/650897

Title:
  Unable to activate root section of pathbar in folder browsing mode

Status in Unity:
  Fix Released
Status in “unity” package in Ubuntu:
  Fix Released
Status in “unity-place-files” package in Ubuntu:
  Fix Released

Bug description:
  Under certain circumstances, clicking the root section of the path bar
  in the folder browsing mode of the files place, doesn't take you to
  the root section.

  To reproduce:

   1) Enter files place
   2) Click a folder in the Favorite Folders group
   3) Click the All Files section on the pathbar

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

-- 
Mailing list: https://launchpad.net/~touch-packages
Post to : touch-packages@lists.launchpad.net
Unsubscribe : https://launchpad.net/~touch-packages
More help   : https://help.launchpad.net/ListHelp


  1   2   3   4   5   6   >