[Touch-packages] [Bug 1537782] Re: Modifier ignored when pressing a key if TextInput has active focus

2016-01-28 Thread Michał Sawicz
See the discussion on https://codereview.qt-project.org/#/c/147556/,
Qt's behaviour is correct here.

QShortcut [1], or QML's Shortcut [2] from qt-5.5 should be used for this
instead.

[1] http://doc.qt.io/qt-5/qshortcut.html
[2] http://doc.qt.io/qt-5/qml-qtquick-shortcut.html

** Changed in: qtdeclarative-opensource-src (Ubuntu)
   Status: In Progress => Invalid

** Changed in: canonical-devices-system-image
 Assignee: Michał Sawicz (saviq) => Bill Filler (bfiller)

** Changed in: canonical-devices-system-image
Milestone: ww04-2016 => None

** Changed in: canonical-devices-system-image
   Status: In Progress => New

** Also affects: webbrowser-app (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: qtdeclarative-opensource-src (Ubuntu)
 Assignee: Michael Terry (mterry) => (unassigned)

** Summary changed:

- Modifier ignored when pressing a key if TextInput has active focus
+ Need to use (Q)Shortcuts instead of Keys.onPressed for shortcuts

** Description changed:

  On a phone with a bluetooth keyboard connected, with the following
  standalone example, if I press Ctrl+T I expect the message "Ctrl+T
  pressed" to be printed on the console, but instead the Ctrl key is
  ignored and "t" is inserted in the text field.
  
  import QtQuick 2.4
  Item {
-   TextInput {
- anchors.centerIn: parent
- width: parent.width - 20
- height: 100
- Component.onCompleted: forceActiveFocus()
-   }
-   Keys.onPressed: {
- console.log("key pressed:", event.key, event.modifiers)
- if (event.key == Qt.Key_T && event.modifiers == Qt.ControlModifier) {
-   console.log("Ctrl+T pressed")
-   event.accepted = true
- }
-   }
+   TextInput {
+ anchors.centerIn: parent
+ width: parent.width - 20
+ height: 100
+ Component.onCompleted: forceActiveFocus()
+   }
+   Keys.onPressed: {
+ console.log("key pressed:", event.key, event.modifiers)
+ if (event.key == Qt.Key_T && event.modifiers == Qt.ControlModifier) {
+   console.log("Ctrl+T pressed")
+   event.accepted = true
+ }
+   }
  }
+ 
+ =
+ 
+ See the discussion on https://codereview.qt-project.org/#/c/147556/,
+ Qt's behaviour is correct here.
+ 
+ QShortcut [1], or QML's Shortcut [2] from qt-5.5 should be used for this
+ instead.
+ 
+ [1] http://doc.qt.io/qt-5/qshortcut.html
+ [2] http://doc.qt.io/qt-5/qml-qtquick-shortcut.html

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

Title:
  Need to use (Q)Shortcuts instead of Keys.onPressed for shortcuts

Status in Canonical System Image:
  New
Status in qtdeclarative-opensource-src package in Ubuntu:
  Invalid
Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  On a phone with a bluetooth keyboard connected, with the following
  standalone example, if I press Ctrl+T I expect the message "Ctrl+T
  pressed" to be printed on the console, but instead the Ctrl key is
  ignored and "t" is inserted in the text field.

  import QtQuick 2.4
  Item {
    TextInput {
  anchors.centerIn: parent
  width: parent.width - 20
  height: 100
  Component.onCompleted: forceActiveFocus()
    }
    Keys.onPressed: {
  console.log("key pressed:", event.key, event.modifiers)
  if (event.key == Qt.Key_T && event.modifiers == Qt.ControlModifier) {
    console.log("Ctrl+T pressed")
    event.accepted = true
  }
    }
  }

  =

  See the discussion on https://codereview.qt-project.org/#/c/147556/,
  Qt's behaviour is correct here.

  QShortcut [1], or QML's Shortcut [2] from qt-5.5 should be used for
  this instead.

  [1] http://doc.qt.io/qt-5/qshortcut.html
  [2] http://doc.qt.io/qt-5/qml-qtquick-shortcut.html

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1537782/+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 1539137] [NEW] Results model updates performance is poor with hundreds of results

2016-01-28 Thread Pawel Stolowski
Public bug reported:

The implementation of incremental result model updates have some
bottlenecks and doesn't scale well when number of results increases.
This is not visible with the number of results we currently have on the
phone, but it gets really bad if scope pushes hundreds of them.

** Affects: unity-scopes-shell (Ubuntu)
 Importance: High
 Assignee: Pawel Stolowski (stolowski)
 Status: Confirmed

** Summary changed:

- Results model updates performance is poor
+ Results model updates performance is poor with hundreds of results

** Changed in: unity-scopes-shell (Ubuntu)
   Importance: Undecided => High

** Changed in: unity-scopes-shell (Ubuntu)
 Assignee: (unassigned) => Pawel Stolowski (stolowski)

** Changed in: unity-scopes-shell (Ubuntu)
   Status: New => Confirmed

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

Title:
  Results model updates performance is poor with hundreds of results

Status in unity-scopes-shell package in Ubuntu:
  Confirmed

Bug description:
  The implementation of incremental result model updates have some
  bottlenecks and doesn't scale well when number of results increases.
  This is not visible with the number of results we currently have on
  the phone, but it gets really bad if scope pushes hundreds of them.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1539137/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
There is a very similar bug https://bugs.launchpad.net/ubuntu/+source
/ubuntu-ui-toolkit/+bug/1518002 but with different apps listed that is
fixed in the branch attached to that bug.

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
I flashed the rc-proposed image on mako and I have problems reproducing
this bug.

- In music-app it seems like the whole background is flashing white before 
showing the proper page, not just the top
- Messaging-app looks fine. No white box.
- Dekko crashes on startup after I added an account.
- Contacts-app some times hangs, and some times crashes.

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 577972] Re: package policykit-1 0.96-2 failed to install/upgrade: subproces installed post-installation script gaf een foutwaarde 2 terug

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

** Changed in: policykit-1 (Ubuntu)
   Status: New => Invalid

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

Title:
  package policykit-1 0.96-2 failed to install/upgrade: subproces
  installed post-installation script gaf een foutwaarde 2 terug

Status in policykit-1 package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: policykit-1

  this  happens after a power faillure while upgrading from 9.10 to
  10.04

  ProblemType: Package
  DistroRelease: Ubuntu 10.04
  Package: policykit-1 0.96-2
  ProcVersionSignature: Ubuntu 2.6.31-19.56-generic
  Uname: Linux 2.6.31-19-generic i686
  Architecture: i386
  Date: Sun May  9 20:29:44 2010
  ErrorMessage: subproces installed post-installation script gaf een foutwaarde 
2 terug
  SourcePackage: policykit-1
  Title: package policykit-1 0.96-2 failed to install/upgrade: subproces 
installed post-installation script gaf een foutwaarde 2 terug

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/policykit-1/+bug/577972/+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 1539070] Re: My Music cardinality incorrect in Music aggregator

2016-01-28 Thread Pat McGowan
This will be fixed alongside bug #1539068

** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-devices-system-image
Milestone: None => ww08-2016

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Alejandro J. Cura (alecu)

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

Title:
  My Music cardinality incorrect in Music aggregator

Status in Canonical System Image:
  Confirmed
Status in unity-scope-mediascanner package in Ubuntu:
  In Progress

Bug description:
  The My Music scope should show 3 results in the Music aggregator
  (according to spec).

  Currently, if it is the only source selected in settings it shows 4
  results, when other sources are chosen, it shows 2.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539070/+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 578572] Re: no sound below certain volume

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  no sound below certain volume

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  When using the system volume control, the "Master" mixer reaches 0 and
  the output is muted before the volume control reaches 0%.

  This workaround works, but even at the lowest volume setting sound will not 
be very quiet:
  https://wiki.ubuntu.com/DebuggingSoundProblems/KarmicCaveats#Volume range 
anomalies

  I suspect that that the sound driver is not giving the right mixer name 
information to PulseAudio, as described on this page:
  http://pulseaudio.org/wiki/PulseAudioStoleMyVolumes

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: alsa-base 1.0.22.1+dfsg-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-22-generic x86_64
  NonfreeKernelModules: nvidia
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  tom 351 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xdffdc000 irq 16'
 Mixer name : 'SigmaTel STAC9227'
 Components : 'HDA:83847618,102801db,00100201'
 Controls  : 36
 Simple ctrls  : 23
  Date: Mon May 10 16:28:08 2010
  InstallationMedia: Ubuntu 10.04 LTS "Lucid Lynx" - Release amd64 (20100429)
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_CA.utf8
   SHELL=/bin/bash
  SourcePackage: alsa-driver
  dmi.bios.date: 05/24/2007
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: 2.5.0
  dmi.board.name: 0CT017
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 7
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvr2.5.0:bd05/24/2007:svnDellInc.:pnDellDXP061:pvr:rvnDellInc.:rn0CT017:rvr:cvnDellInc.:ct7:cvr:
  dmi.product.name: Dell DXP061
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/578572/+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 1515446] Re: network file systems in FSTAB no longer mount at boot with NetworkManager

2016-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package network-manager - 1.0.4-0ubuntu8

---
network-manager (1.0.4-0ubuntu8) xenial; urgency=medium

  * Fix NetworkManager-wait-online.service so it is enabled so NFS
and other remote FS work with name resolution. (LP: #1515446)

 -- Bryan Quigley   Thu, 28 Jan 2016
10:45:31 +0100

** Changed in: network-manager (Ubuntu)
   Status: Fix Committed => Fix Released

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

Title:
  network file systems in FSTAB no longer mount at boot with
  NetworkManager

Status in One Hundred Papercuts:
  Fix Released
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager package in Debian:
  New

Bug description:
  After a fresh install of 15.10, nfs shares no longer mount on boot.
  I'm using the same line to mount as I did in 14.04 prior:

  :/share  /mnt/share  ntfs4  _netdev, auto 0 0

  This line worked just fine in 14.04, and 14.10 on my laptop, to mount
  the shares at boot.

  Manual mounting after boot works fine.  Systemctl shows a name
  resolution failure (see below)

  lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10

  lsb_release -rd
  Description:Ubuntu 15.10
  Release:15.10
  bjwest@razorback:~$ apt-cache policy nfs-common
  nfs-common:
Installed: 1:1.2.8-9ubuntu10
Candidate: 1:1.2.8-9ubuntu10
Version table:

   *** 1:1.2.8-9ubuntu10 0
  500 http://us.archive.ubuntu.com/ubuntu/ wily/main amd64 Packages
  100 /var/lib/dpkg/status

  systemctl status mnt-share.mount
  ● mnt-share.mount - /mnt/share
 Loaded: loaded (/etc/fstab)
 Active: failed (Result: exit-code) since Wed 2015-11-11 18:58:13 CST; 2min 
15s ago
  Where: /mnt/share
   What: hog:/share
   Docs: man:fstab(5)
 man:systemd-fstab-generator(8)
Process: 731 ExecMount=/bin/mount hog:/share /mnt/share -t nfs4 -o _netdev 
(code=exited, status=32)

  Nov 11 18:58:13 razorback systemd[1]: Mounting /mnt/share...
  Nov 11 18:58:13 razorback mount[731]: mount.nfs4: Failed to resolve server 
hog: Temporary failure in name resolution
  Nov 11 18:58:13 razorback systemd[1]: mnt-share.mount: Mount process exited, 
code=exited status=32
  Nov 11 18:58:13 razorback systemd[1]: Failed to mount /mnt/share.
  Nov 11 18:58:13 razorback systemd[1]: mnt-share.mount: Unit entered failed 
state.

To manage notifications about this bug go to:
https://bugs.launchpad.net/hundredpapercuts/+bug/1515446/+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 1377996] Re: [phone-app] is freezing on active call screen

2016-01-28 Thread TenLeftFingers
Perhaps I should have commented here instead of at
https://bugs.launchpad.net/ubuntu/+source/dialer-app/+bug/1499069

but the dialer freezes on me every single time for the last two months+

I can't hang up and some times I can't even dial.

Is there anything I should provide in this report?

I hope this is released as a hot-fix and not queued up for the next OTA.

-- 
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/1377996

Title:
  [phone-app] is  freezing on active call screen

Status in Ubuntu UX:
  Fix Committed
Status in dialer-app package in Ubuntu:
  Incomplete

Bug description:
  Steps to reproduce:
  1. phone device (make sure phone app is not running & the device is awake)
  2. accept the call from the incoming snap decision
  3. wait until active call screen appears
  4. navigate back to the keypad 
  5. tap the now green indicator bar to return back to call
  6. tap the tone dial in call controls

  7. Actual result: One the first, 2nd or 3rd tap the screen is frozen. Even if 
you hang up the phone you called from, the screen remains. Sometimes the screen 
freezes when you try to navigate back and forth from keypad to active call. Try 
several different ways.
  A few times, I was able to hang up the phone I was calling from but the 
active call screen stayed on the device. The only way to make the phone app 
work again was to force quit it. 

  As an alternative route. Try to call the phone when the phone-app is
  running. Accept the call and wait until the active call screen
  appears. Try to interact with the tone dial icon in the call controls.
  I was able to reproduce the freeze this way as well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1377996/+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 1539158] [NEW] Unable to pair with in-car hands-free system after OTA-9 update

2016-01-28 Thread Stunts
Public bug reported:

After OTA-9 I started having trouble with my bluetooth connection to the car 
hands-free system (no sound, and incoming calls no longer displayed the 
number), so I have reset both the car and the phone connections (eg. forgot the 
devices).
Now I can't even pair the phone with the car's system. 
The car finds the phone, and then asks me to enter the code "" to pair the 
device, but after a few moments, it just says the connection failed and asks me 
to try again. Which fails again.

It was working fine just before the update.

Any logs I should post to help debug?

PS - The car is a 2015 Honda Civic Tourer, if that matters.

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

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

Title:
  Unable to pair with in-car hands-free system after OTA-9 update

Status in bluez package in Ubuntu:
  New

Bug description:
  After OTA-9 I started having trouble with my bluetooth connection to the car 
hands-free system (no sound, and incoming calls no longer displayed the 
number), so I have reset both the car and the phone connections (eg. forgot the 
devices).
  Now I can't even pair the phone with the car's system. 
  The car finds the phone, and then asks me to enter the code "" to pair 
the device, but after a few moments, it just says the connection failed and 
asks me to try again. Which fails again.

  It was working fine just before the update.

  Any logs I should post to help debug?

  PS - The car is a 2015 Honda Civic Tourer, if that matters.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1539158/+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 1524328] Re: libpng 1.6 support

2016-01-28 Thread LocutusOfBorg
Sorry for stealing the already-open bug :)

** Description changed:

+ As said, in Debian it is pretty much in place, and I sync'd/merged almost 
every package in Ubuntu too.
+ Would it be possible to have the transition done for Xenial?
+ 
+ I can fix stuff in Universe, but not in Main (there is not many packages
+ there AFAICS)
+ 
+ this is the debian bug
+ https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601
+ 
+ you can start from this message:
+ https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601#691
+ 
+ thanks!
+ 
+ Gianfranco
+ 
+ 
  Libpng 1.6 has been out for a little while, apparently it has some
  important fixes for pngquant (which is also in Ubuntu).  There are
  comments here that maybe useful:
  https://github.com/pornel/pngquant/blob/master/rwpng.c
  
  Presumably at some point libpng1.2 will be EOL so we'll need to upgrade
  anyhow!

** Changed in: libpng (Ubuntu)
 Assignee: (unassigned) => LocutusOfBorg (costamagnagianfranco)

** Changed in: libpng (Ubuntu)
   Importance: Undecided => Medium

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

Title:
  libpng 1.6 support

Status in libpng package in Ubuntu:
  Confirmed

Bug description:
  As said, in Debian it is pretty much in place, and I sync'd/merged almost 
every package in Ubuntu too.
  Would it be possible to have the transition done for Xenial?

  I can fix stuff in Universe, but not in Main (there is not many
  packages there AFAICS)

  this is the debian bug
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601

  you can start from this message:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601#691

  thanks!

  Gianfranco
  

  Libpng 1.6 has been out for a little while, apparently it has some
  important fixes for pngquant (which is also in Ubuntu).  There are
  comments here that maybe useful:
  https://github.com/pornel/pngquant/blob/master/rwpng.c

  Presumably at some point libpng1.2 will be EOL so we'll need to
  upgrade anyhow!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpng/+bug/1524328/+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 1508081] Re: Fails to receive OTA updates

2016-01-28 Thread Nekhelesh Ramananthan
I am experiencing this issue with my pristine BQ E4.5 device. Here is
the output of ubuntu-download-manager.ERROR located in /var/log/ubuntu-
download-manager

Log file created at: 2016/01/12 14:47:54
Running on machine: ubuntu-phablet
Log line format: [IWEF]mmdd hh:mm:ss.uu threadid file:line] msg
E0112 14:47:54.00 30763 downloads_db.cpp:133] Could not create the data 
path /var/cache/ubuntu-download-manager
E0112 14:47:54.005391 30763 downloads_db.cpp:147]  out of memory Error opening 
database

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

Title:
  Fails to receive OTA updates

Status in Canonical System Image:
  In Progress
Status in ubuntu-download-manager package in Ubuntu:
  In Progress

Bug description:
  Ubuntu Touch 15.04 (r23) [mako]

  Issue: Phone appears to fail to receive OTA updates. Previously, I jumped 
from (r15) to (r23) due to missing OTA updates. Currently, I see (r24) appears 
to be released on 2015 Oct 16.
  Expected behavior: System Settings > System > Updates (or System Settings > 
About this phone > Check for updates) reveals new image that I can release and 
download.
  Actual behavior: Checking for updates... > Software is up to date

  See the comment regarding similar issues for large app installs.
  It seems if anything interrupts the transfer or if the connection is somewhat 
slow the download performance degenerates then times out.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508081/+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 1524328] Re: libpng 1.6 support

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

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

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

Title:
  libpng 1.6 support

Status in libpng package in Ubuntu:
  Confirmed

Bug description:
  As said, in Debian it is pretty much in place, and I sync'd/merged almost 
every package in Ubuntu too.
  Would it be possible to have the transition done for Xenial?

  I can fix stuff in Universe, but not in Main (there is not many
  packages there AFAICS)

  this is the debian bug
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601

  you can start from this message:
  https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=650601#691

  thanks!

  Gianfranco
  

  Libpng 1.6 has been out for a little while, apparently it has some
  important fixes for pngquant (which is also in Ubuntu).  There are
  comments here that maybe useful:
  https://github.com/pornel/pngquant/blob/master/rwpng.c

  Presumably at some point libpng1.2 will be EOL so we'll need to
  upgrade anyhow!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpng/+bug/1524328/+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 1348144] Re: libpng needs update on x86_64

2016-01-28 Thread LocutusOfBorg
*** This bug is a duplicate of bug 1524328 ***
https://bugs.launchpad.net/bugs/1524328

** This bug has been marked a duplicate of bug 1524328
   libpng 1.6 support

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

Title:
  libpng needs update on x86_64

Status in libpng package in Ubuntu:
  Confirmed

Bug description:
  Libpng needs to be updated to a later version than version 1.2 on
  x86_64. The reason is that version 1.2 assumes sizeof(unsigned long
  int)==4, which is not true on Linux x86_64

  
  Message from GCC:

  error: cannot convert 'uint32_t* {aka unsigned int*}' to 'png_uint_32* {aka 
long unsigned int*}' for argument '3' to 'png_uint_32 png_get_pHYs(png_structp, 
png_infop, png_uint_32*, png_uint_32*, int*)'
   , _x, _y,);

  
  In version 1.6 (I use that version when compiling on windows)

  #if INT_MIN < -2147483646 && INT_MAX > 2147483646
 typedef int png_int_32;
  #elif LONG_MIN < -2147483646 && LONG_MAX > 2147483646
 typedef long int png_int_32;
  #else
  #  error "libpng requires a signed 32 bit (or more) type"
  #endif

  #if UINT_MAX > 4294967294
 typedef unsigned int png_uint_32;
  #elif ULONG_MAX > 4294967294
 typedef unsigned long int png_uint_32;
  #else
  #  error "libpng requires an unsigned 32 bit (or more) type"
  #endif

  Clearly, this bug is fixed in version 1.6.

  
  I could install my own libpng, but since this is a very central library I 
feel that it could be risky and I do not have time to recompile the hole system 
just for an old library. Suggestion: Fix this for version 14.10 (it strange 
that a newer libpng did not enter 14.04 LTS)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libpng/+bug/1348144/+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 1524400] Re: Use default keymap on creation of surface

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/qtubuntu/kbdLayout

-- 
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/1524400

Title:
  Use default keymap on creation of surface

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in qtmir package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Keymaps should be configurable pr surface or for all surfaces. This
  bug tracks implementation of the latter.

  Determining what keymap to use
  Input sources (InputSources) is an array of dicts on the 
org.freedesktop.Accounts.User interface, which is on the system bus. This holds 
all the user chosen keymaps. If empty, it indicates en_us. It is on the system 
bus so that the greeter can determine what keymap to use.

  If keymaps > 1, the default keymap for all surfaces will be the first
  applicable keymap.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1524400/+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 1539176] [NEW] highlighting of selected item not visible with external monitor

2016-01-28 Thread Bill Filler
Public bug reported:

On certain pages (History, New Tab) with an external monitor and
keyboard connected, the highlighting of the items is really not
distinguishable and don't appear to be working using keyboard shortcuts
and keys (i.e. arrow keys) to navigate.

Specifically:

History View:
- highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
- highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

New Tab View:
- Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
- Bookmarks section: both columns currently change text color of selected items 
so this makes them distinguishable. We should make this consistent with the 
History View whatever we decide for that.

Attached are screenshots on my monitor with items selected. On History
View, the first item on "Today" is selected and on Top Sites the "MP4
Files" is selected.

** Affects: canonical-devices-system-image
 Importance: Medium
 Assignee: Bill Filler (bfiller)
 Status: Confirmed

** Affects: canonical-pocket-desktop
 Importance: Medium
 Assignee: Bill Filler (bfiller)
 Status: Confirmed

** Affects: webbrowser-app (Ubuntu)
 Importance: Medium
 Assignee: Olivier Tilloy (osomon)
 Status: Confirmed

** Also affects: webbrowser-app (Ubuntu)
   Importance: Undecided
   Status: New

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

Title:
  highlighting of selected item not visible with external monitor

Status in Canonical System Image:
  Confirmed
Status in canonical-pocket-desktop:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  On certain pages (History, New Tab) with an external monitor and
  keyboard connected, the highlighting of the items is really not
  distinguishable and don't appear to be working using keyboard
  shortcuts and keys (i.e. arrow keys) to navigate.

  Specifically:

  History View:
  - highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
  - highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

  New Tab View:
  - Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
  - Bookmarks section: both columns currently change text color of selected 
items so this makes them distinguishable. We should make this consistent with 
the History View whatever we decide for that.

  Attached are screenshots on my monitor with items selected. On History
  View, the first item on "Today" is selected and on Top Sites the "MP4
  Files" is selected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539176/+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 1539176] Re: highlighting of selected item not visible with external monitor

2016-01-28 Thread Bill Filler
** Attachment added: "IMG_0359.JPG"
   
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1539176/+attachment/4558475/+files/IMG_0359.JPG

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

Title:
  highlighting of selected item not visible with external monitor

Status in Canonical System Image:
  Confirmed
Status in canonical-pocket-desktop:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  On certain pages (History, New Tab) with an external monitor and
  keyboard connected, the highlighting of the items is really not
  distinguishable and don't appear to be working using keyboard
  shortcuts and keys (i.e. arrow keys) to navigate.

  Specifically:

  History View:
  - highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
  - highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

  New Tab View:
  - Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
  - Bookmarks section: both columns currently change text color of selected 
items so this makes them distinguishable. We should make this consistent with 
the History View whatever we decide for that.

  Attached are screenshots on my monitor with items selected. On History
  View, the first item on "Today" is selected and on Top Sites the "MP4
  Files" is selected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539176/+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 578450] Re: pressing tab in my xterm raises a bash locale error

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

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

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

Title:
  pressing tab in my xterm raises a bash locale error

Status in bash package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: bash

  When I press tab in an xterm, I get the following error:
  bash: waarschuwing: setlocale: LC_CTYPE: cannot change locale (nl_Nl.UTF-8)

  My current language is nl_Nl.UTF-8. Upgrading the language pack does
  not seem to work. Due to another bug, I cannot change my language
  using System > Administration > Language Selector.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: bash 4.1-2ubuntu3
  ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-22-generic i686
  Architecture: i386
  Date: Mon May 10 21:43:36 2010
  ProcEnviron:
   LANGUAGE=nl_NL:nl:en
   LANG=nl_NL.utf8
   SHELL=/bin/bash
  SourcePackage: bash

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bash/+bug/578450/+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 1522675] Re: /root/.synaptic/ not created

2016-01-28 Thread dino99
** Also affects: apt (Ubuntu)
   Importance: Undecided
   Status: New

-- 
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/1522675

Title:
  /root/.synaptic/ not created

Status in apt package in Ubuntu:
  New
Status in synaptic package in Ubuntu:
  Confirmed

Bug description:
  Recently we got new versions for synaptic 0.82+build1 & apt 1.1.3, but
  now get that error when installing/upgrading some packages:

  Setting up libc6-dbg:amd64 (2.21-0ubuntu5) ...
  Processing triggers for libc-bin (2.21-0ubuntu5) ...
  W: Can't drop privileges for downloading as file 
'/root/.synaptic/tmp//tmp_cl' couldn't be accessed by user '_apt'. - 
pkgAcquire::Run (13: Permission denied)

  From nautilus, i'm seeing a /root/ folder locked (x on its icon) and
  the folder is empty (no /.synaptic/ sub-folder or file), so the above
  error.

  ProblemType: Bug
  DistroRelease: Ubuntu 16.04
  Package: synaptic 0.82+build1
  ProcVersionSignature: Ubuntu 4.3.0-1.10-generic 4.3.0
  Uname: Linux 4.3.0-1-generic x86_64
  NonfreeKernelModules: nvidia
  ApportVersion: 2.19.2-0ubuntu8
  Architecture: amd64
  CurrentDesktop: GNOME
  Date: Fri Dec  4 05:23:25 2015
  SourcePackage: synaptic
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1522675/+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 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-01-28 Thread Andrea Bernabei
related bug: https://bugs.launchpad.net/mir/+bug/1460868

but the updated was only released on Wily

-- 
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/1538659

Title:
  Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in
  Vivid archive

Status in unity8 package in Ubuntu:
  New

Bug description:
  On a fresh vivid setup, installing unity8-desktop-session-mir doesn't pull in
  the platform and client packages required to be able to run unity8

  I had to install
  mir-client-platform-mesa3
  mir-platform-graphics-mesa-km7
  mir-platform-input-evdev4

  PS I have the Overlay PPA installed,
  unity8-desktop-session-mir is version 1.0.12+15.04.20150309-0ubuntu1 (which 
is really old, and could be the cause of these issues!)

  
  UPDATE: turns out it's because vivid has an old version of the package (March 
2015) and unity8-desktop-session-mir added a dependency to Mir graphics drivers 
in June 2015 
http://bazaar.launchpad.net/~unity8-desktop-session-team/unity8-desktop-session/trunk/revision/79.2.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1538659/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
With the latest rc-proposed on krillin (r394) I get the same results as
with r384:. Messaging-app, contacts-app and Dekko are good, music-app
does seem affected.

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1539176] Re: highlighting of selected item not visible with external monitor

2016-01-28 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
   Status: Confirmed => In Progress

** Branch linked: lp:~osomon/webbrowser-app/focus-orange-ring

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

Title:
  highlighting of selected item not visible with external monitor

Status in Canonical System Image:
  Confirmed
Status in canonical-pocket-desktop:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  On certain pages (History, New Tab) with an external monitor and
  keyboard connected, the highlighting of the items is really not
  distinguishable and don't appear to be working using keyboard
  shortcuts and keys (i.e. arrow keys) to navigate.

  Specifically:

  History View:
  - highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
  - highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

  New Tab View:
  - Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
  - Bookmarks section: both columns currently change text color of selected 
items so this makes them distinguishable. We should make this consistent with 
the History View whatever we decide for that.

  Attached are screenshots on my monitor with items selected. On History
  View, the first item on "Today" is selected and on Top Sites the "MP4
  Files" is selected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539176/+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 1538659] Re: unity8-desktop-session-mir is missing mir-platform-* and mir-client-* dependencies

2016-01-28 Thread Andrea Bernabei
I've just found 
http://bazaar.launchpad.net/~unity8-desktop-session-team/unity8-desktop-session/trunk/revision/79.2.1

That means the unity8-desktop-session-mir that we have on Overlay PPA is too 
old, that's why it doesn't grab the drivers.
(see version in the bug description)

** Description changed:

  On a fresh vivid setup, installing unity8-desktop-session-mir doesn't pull in
  the platform and client packages required to be able to run unity8
  
  I had to install
  mir-client-platform-mesa3
  mir-platform-graphics-mesa-km7
  mir-platform-input-evdev4
  
  PS I have the Overlay PPA installed,
  unity8-desktop-session-mir is version 1.0.12+15.04.20150309-0ubuntu1 (which 
is really old, and could be the cause of these issues!)
+ 
+ 
+ UPDATE: turns out it's because vivid has an old version of the package (March 
2015) and unity8-desktop-session-mir added a dependency to Mir graphics drivers 
in June 2015 
http://bazaar.launchpad.net/~unity8-desktop-session-team/unity8-desktop-session/trunk/revision/79.2.1

** Summary changed:

- unity8-desktop-session-mir is missing mir-platform-* and mir-client-* 
dependencies
+ Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid 
archive

-- 
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/1538659

Title:
  Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in
  Vivid archive

Status in unity8 package in Ubuntu:
  New

Bug description:
  On a fresh vivid setup, installing unity8-desktop-session-mir doesn't pull in
  the platform and client packages required to be able to run unity8

  I had to install
  mir-client-platform-mesa3
  mir-platform-graphics-mesa-km7
  mir-platform-input-evdev4

  PS I have the Overlay PPA installed,
  unity8-desktop-session-mir is version 1.0.12+15.04.20150309-0ubuntu1 (which 
is really old, and could be the cause of these issues!)

  
  UPDATE: turns out it's because vivid has an old version of the package (March 
2015) and unity8-desktop-session-mir added a dependency to Mir graphics drivers 
in June 2015 
http://bazaar.launchpad.net/~unity8-desktop-session-team/unity8-desktop-session/trunk/revision/79.2.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1538659/+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 1173915] Re: initctl continuously takes 100% of CPU

2016-01-28 Thread perja
Can confirm this issue on Ubuntu 14.04 & 15.10 64bit, Toshiba Protege
Z30, varying uptimes.

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

Title:
  initctl continuously takes 100% of CPU

Status in upstart package in Ubuntu:
  Confirmed

Bug description:
  Many programs are fairly slow to start on my computer, despite it
  being relatively new (core i5). Suspecting a heavy CPU usage, I
  started gnome-system-monitor: all processes were displayed at 0% CPU,
  but the overall load was 1.33; 1.33; 1.34.

  Using the "top" command, however, revealed the real CPU use, with the
  "initctl" process taking 100%CPU, even 1 hour after startup.

  I upgraded to roaring ringtail before checking this but the symptoms
  were the same with quantal quetzal, so there is a fair chance the
  causes were identical.

  Regards

  ProblemType: Bug
  DistroRelease: Ubuntu 13.04
  Package: upstart 1.8-0ubuntu1
  ProcVersionSignature: Ubuntu 3.8.0-19.29-generic 3.8.8
  Uname: Linux 3.8.0-19-generic x86_64
  ApportVersion: 2.9.2-0ubuntu8
  Architecture: amd64
  CheckboxSubmission: 2deefc5fd2f1f0ae2fdd4bd781248a2a
  CheckboxSystem: daed2f3d6643b4a84b4520a2427f8c2b
  Date: Sun Apr 28 13:04:05 2013
  ExecutablePath: /sbin/initctl
  InstallationDate: Installed on 2012-12-15 (133 days ago)
  InstallationMedia: Ubuntu 12.10 "Quantal Quetzal" - Release amd64 (20121017.5)
  MarkForUpload: True
  ProcEnviron:
   
  ProcKernelCmdline: BOOT_IMAGE=/boot/vmlinuz-3.8.0-19-generic 
root=UUID=fa624f8f-d9d0-4b09-af8b-88b106aaaf5b ro quiet splash vt.handoff=7
  SourcePackage: upstart
  UpgradeStatus: Upgraded to raring on 2013-04-28 (0 days ago)
  UpstartBugCategory: System

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/upstart/+bug/1173915/+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 1539121] [NEW] Missing Latvian keyboard support

2016-01-28 Thread Rūdolfs Mazurs
Public bug reported:

In settings “Language and text” in keyboard layouts there is no Latvian
language option.

** Affects: ubuntu-keyboard (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Missing Latvian keyboard support

Status in ubuntu-keyboard package in Ubuntu:
  New

Bug description:
  In settings “Language and text” in keyboard layouts there is no
  Latvian language option.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1539121/+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 1518002] Re: Header is shown at startup and slides out even though it is set to be invisible and locked

2016-01-28 Thread Pat McGowan
** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

** Changed in: canonical-devices-system-image
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
   Status: New => In Progress

** Changed in: canonical-devices-system-image
Milestone: None => ww08-2016

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Zoltan Balogh (bzoltan)

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

Title:
  Header is shown at startup and slides out even though it is set to be
  invisible and locked

Status in Canonical System Image:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  Some applications have no header on the starting page, but may have
  headers on the sub pages (for settings), eg Calculator, Clock and
  Weather. However it has been observed that if you set the header to
  invisible and locked with the code below, the header is infact shown
  at startup and then slides away (as shown in this video [0]).

  head {
locked: true
visible: false
  }

  
  What happened:
  1) Create an application that uses the code above to have no header on the 
starting page
  2) Deploy and launch the application
  3) Notice that the header is initially shown but then slides away

  What was expected to happen:
  At step 3) for the header not to be shown at startup.

  
  0 - https://www.youtube.com/watch?v=OMqJbc6H6IY

  $ system-image-cli -i
  current build number: 160
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-11-12 07:59:01
  version version: 160
  version ubuntu: 20151112.1
  version device: 20150911
  version custom: mako-1.1

  $ apt-cache policy qtdeclarative5-ubuntu-ui-toolkit-plugin
  qtdeclarative5-ubuntu-ui-toolkit-plugin:
Installed: 1.3.1705+15.04.20151118-0ubuntu1
Candidate: 1.3.1705+15.04.20151118-0ubuntu1
Version table:
   *** 1.3.1705+15.04.20151118-0ubuntu1 0
 1001 
http://ppa.launchpad.net/ci-train-ppa-service/stable-phone-overlay/ubuntu/ 
vivid/main armhf Packages
  100 /var/lib/dpkg/status
   1.2.1458+15.04.20150422-0ubuntu1 0
  500 http://ports.ubuntu.com/ubuntu-ports/ vivid/main armhf Packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1518002/+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 1539123] [NEW] Quick photos from lock screen

2016-01-28 Thread Mathias Hasselmann
Public bug reported:

It's almost impossible to take quick snapshots with locked phone:
Swiping, pine code, launching the photo app just takes way too long. The
fascinating scene you wanted to photograph is long gone until the photo
app is ready. Therefore the lock screen should contain an easy to hit
button that instantly starts the photo app, ready for taking the
snapshot of the year. Android and iOS show how to do this.

** Affects: camera-app (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  Quick photos from lock screen

Status in camera-app package in Ubuntu:
  New

Bug description:
  It's almost impossible to take quick snapshots with locked phone:
  Swiping, pine code, launching the photo app just takes way too long.
  The fascinating scene you wanted to photograph is long gone until the
  photo app is ready. Therefore the lock screen should contain an easy
  to hit button that instantly starts the photo app, ready for taking
  the snapshot of the year. Android and iOS show how to do this.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/camera-app/+bug/1539123/+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 1538659] Re: Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in Vivid archive

2016-01-28 Thread Andrea Bernabei
updated the bug title to reflect new discoveries

-- 
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/1538659

Title:
  Unity8 on Vivid doesn't boot, due to old unity8-desktop-session-mir in
  Vivid archive

Status in unity8 package in Ubuntu:
  New

Bug description:
  On a fresh vivid setup, installing unity8-desktop-session-mir doesn't pull in
  the platform and client packages required to be able to run unity8

  I had to install
  mir-client-platform-mesa3
  mir-platform-graphics-mesa-km7
  mir-platform-input-evdev4

  PS I have the Overlay PPA installed,
  unity8-desktop-session-mir is version 1.0.12+15.04.20150309-0ubuntu1 (which 
is really old, and could be the cause of these issues!)

  
  UPDATE: turns out it's because vivid has an old version of the package (March 
2015) and unity8-desktop-session-mir added a dependency to Mir graphics drivers 
in June 2015 
http://bazaar.launchpad.net/~unity8-desktop-session-team/unity8-desktop-session/trunk/revision/79.2.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1538659/+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 622431] Re: iptables rules are not saved across reboots

2016-01-28 Thread Bug Watch Updater
** Changed in: iptables (Debian)
   Status: Won't Fix => Fix Released

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

Title:
  iptables rules are not saved across reboots

Status in Ubuntu Server papercuts:
  New
Status in iptables package in Ubuntu:
  Won't Fix
Status in iptables package in Debian:
  Fix Released

Bug description:
  Running Ubuntu 10.04 server over linode.com, the "minimal" distro
  shipped by default does not save iptables rules by default across
  reboots. The ufw package is a convenience iptables wrapper, however,
  most experienced admins will not want to discard their iptables
  knowledge and flexibility for ufw.

  The wiki page: https://help.ubuntu.com/community/IptablesHowTo#Saving iptables
  mentions various scripts and hacks to achieve that, although it should be a 
distro's job to do something that common. I suggest shipping a system service 
that will save/restore services like centos/redhat, and that can be easily 
enabled/disabled as per the admin's needs

To manage notifications about this bug go to:
https://bugs.launchpad.net/server-papercuts/+bug/622431/+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 1445527] Re: Speaker remains on after playback completes

2016-01-28 Thread Pat McGowan
*** This bug is a duplicate of bug 1477838 ***
https://bugs.launchpad.net/bugs/1477838

** This bug has been marked a duplicate of bug 1477838
   [MX4] Crackling sound after playing audio and suspended

-- 
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/1445527

Title:
  Speaker remains on after playback completes

Status in Canonical System Image:
  Confirmed
Status in podbird:
  Incomplete
Status in media-hub package in Ubuntu:
  Confirmed
Status in pulseaudio package in Ubuntu:
  Confirmed
Status in media-hub package in Ubuntu RTM:
  New
Status in pulseaudio package in Ubuntu RTM:
  New

Bug description:
  This might be a Media Hub bug - I'm not sure.

  Steps to reproduce:

  1. Start playing a podcast.
  2. Switch to a different app.
  3. Lock the screen.
  4. Wait for the Podcast to finish.
  5. Wait a bit longer.

  Expected results:

  No noise from speaker.

  Actual results:

  Soft white noise from speaker. It seems that some part of the audio
  subsystem is still switched on. I am concerned that this could be
  draining battery.

  Workaround:

  After the Podcast finishes, unlock the phone and switch back to the
  Podbird app. This causes the noise to stop.

  Comments:

  I noticed the same soft white noise continues a second or two after
  the phone plays any sound from any app, but then turns off. I presume
  there is some time out turning off some part of the audio subsystem.
  Presumably if there is a reason, it should happen even when the app
  causing the sound to play is not active.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1445527/+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 1539154] Re: Will not boot normally

2016-01-28 Thread James Redding
Thanks for your help

-- 
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/1539154

Title:
  Will not boot normally

Status in xorg package in Ubuntu:
  New

Bug description:
  Will not boot normally

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-49.55~14.04.1-generic 3.19.8-ckt12
  Uname: Linux 3.19.0-49-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Thu Jan 28 07:56:03 2016
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation GF119 [GeForce GT 610] [10de:104a] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: eVga.com. Corp. Device [3842:2615]
  InstallationDate: Installed on 2016-01-26 (1 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 003: ID 413c:2003 Dell Computer Corp. Keyboard
   Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-49-generic 
root=UUID=e1f024af-91cf-4f4e-a00f-d309b83cb78c ro rootflags=sync drm.debug=0xe 
plymouth:debug
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/30/2006
  dmi.bios.vendor: Phoenix Technologies, LTD
  dmi.bios.version: 6.00 PG
  dmi.board.name: KN8 SLI(NF-CK804)
  dmi.board.vendor: http://www.abit.com.tw/
  dmi.board.version: 1.x
  dmi.chassis.type: 3
  dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd05/30/2006:svn:pn:pvr:rvnhttp//www.abit.com.tw/:rnKN8SLI(NF-CK804):rvr1.x:cvn:ct3:cvr:
  version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
  version.libgl1-mesa-dri: libgl1-mesa-dri N/A
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx N/A
  version.xserver-xorg-core: xserver-xorg-core N/A
  version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
  version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
  version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
  version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
  xserver.bootTime: Thu Jan 28 15:53:32 2016
  xserver.configfile: default
  xserver.devices:
   inputPower Button KEYBOARD, id 6
   inputPower Button KEYBOARD, id 7
   inputMicrosoft Microsoft 3-Button Mouse with IntelliEye(TM) MOUSE, 
id 8
   inputDell Dell USB Keyboard KEYBOARD, id 9
  xserver.errors:
   Failed to load module "nvidia" (module does not exist, 0)
   Failed to load module "nvidia" (module does not exist, 0)
  xserver.logfile: /var/log/Xorg.0.log
  xserver.outputs: Output DVI-I-1  
HDMI-1   VGA-1
  xserver.version: 2:1.17.1-0ubuntu3.1~trusty1
  xserver.video_driver: nouveau

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/xorg/+bug/1539154/+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 1539154] [NEW] Will not boot normally

2016-01-28 Thread James Redding
Public bug reported:

Will not boot normally

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.19.0-49.55~14.04.1-generic 3.19.8-ckt12
Uname: Linux 3.19.0-49-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Jan 28 07:56:03 2016
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
GraphicsCard:
 NVIDIA Corporation GF119 [GeForce GT 610] [10de:104a] (rev a1) (prog-if 00 
[VGA controller])
   Subsystem: eVga.com. Corp. Device [3842:2615]
InstallationDate: Installed on 2016-01-26 (1 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
Lsusb:
 Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
 Bus 002 Device 003: ID 413c:2003 Dell Computer Corp. Keyboard
 Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
 Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
ProcEnviron:
 LANGUAGE=en_US
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-49-generic 
root=UUID=e1f024af-91cf-4f4e-a00f-d309b83cb78c ro rootflags=sync drm.debug=0xe 
plymouth:debug
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/30/2006
dmi.bios.vendor: Phoenix Technologies, LTD
dmi.bios.version: 6.00 PG
dmi.board.name: KN8 SLI(NF-CK804)
dmi.board.vendor: http://www.abit.com.tw/
dmi.board.version: 1.x
dmi.chassis.type: 3
dmi.modalias: 
dmi:bvnPhoenixTechnologies,LTD:bvr6.00PG:bd05/30/2006:svn:pn:pvr:rvnhttp//www.abit.com.tw/:rnKN8SLI(NF-CK804):rvr1.x:cvn:ct3:cvr:
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri N/A
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Thu Jan 28 15:53:32 2016
xserver.configfile: default
xserver.devices:
 inputPower Button KEYBOARD, id 6
 inputPower Button KEYBOARD, id 7
 inputMicrosoft Microsoft 3-Button Mouse with IntelliEye(TM) MOUSE, id 8
 inputDell Dell USB Keyboard KEYBOARD, id 9
xserver.errors:
 Failed to load module "nvidia" (module does not exist, 0)
 Failed to load module "nvidia" (module does not exist, 0)
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs: Output DVI-I-1  HDMI-1 
  VGA-1
xserver.version: 2:1.17.1-0ubuntu3.1~trusty1
xserver.video_driver: nouveau

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


** Tags: amd64 apport-bug compiz-0.9 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/1539154

Title:
  Will not boot normally

Status in xorg package in Ubuntu:
  New

Bug description:
  Will not boot normally

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-49.55~14.04.1-generic 3.19.8-ckt12
  Uname: Linux 3.19.0-49-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Thu Jan 28 07:56:03 2016
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  GraphicsCard:
   NVIDIA Corporation GF119 [GeForce GT 610] [10de:104a] (rev a1) (prog-if 00 
[VGA controller])
 Subsystem: eVga.com. Corp. Device [3842:2615]
  InstallationDate: Installed on 2016-01-26 (1 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  Lsusb:
   Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
   Bus 002 Device 003: ID 413c:2003 Dell Computer Corp. Keyboard
   Bus 002 Device 002: ID 045e:0040 Microsoft Corp. Wheel Mouse Optical
   Bus 002 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
  ProcEnviron:
   LANGUAGE=en_US
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-49-generic 
root=UUID=e1f024af-91cf-4f4e-a00f-d309b83cb78c ro rootflags=sync drm.debug=0xe 

[Touch-packages] [Bug 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
I got Dekko to work properly (removed the account properly and then re-
added it in Dekko), and it starts good now without showing a white gap.

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1539158] Re: Unable to pair with in-car hands-free system after OTA-9 update

2016-01-28 Thread Stunts
Could be a duplicate of
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1435040
But it might not be, since my issue only started with OTA-9.

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

Title:
  Unable to pair with in-car hands-free system after OTA-9 update

Status in bluez package in Ubuntu:
  New

Bug description:
  After OTA-9 I started having trouble with my bluetooth connection to the car 
hands-free system (no sound, and incoming calls no longer displayed the 
number), so I have reset both the car and the phone connections (eg. forgot the 
devices).
  Now I can't even pair the phone with the car's system. 
  The car finds the phone, and then asks me to enter the code "" to pair 
the device, but after a few moments, it just says the connection failed and 
asks me to try again. Which fails again.

  It was working fine just before the update.

  Any logs I should post to help debug?

  PS - The car is a 2015 Honda Civic Tourer, if that matters.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1539158/+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 1527106] Re: Fatal exception failure of unattended-upgrade

2016-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package unattended-upgrades - 0.86.2ubuntu1.1

---
unattended-upgrades (0.86.2ubuntu1.1) wily-proposed; urgency=medium

  * Revert the use of "lgettext", this fixes sending mails
via unattended-upgrades (LP: #1527106)

 -- Michael Vogt   Thu, 21 Jan 2016 17:34:49
+0100

** Changed in: unattended-upgrades (Ubuntu Wily)
   Status: Fix Committed => Fix Released

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

Title:
  Fatal exception failure of unattended-upgrade

Status in unattended-upgrades package in Ubuntu:
  Fix Released
Status in unattended-upgrades source package in Wily:
  Fix Released

Bug description:
  Every morning, since I upgraded to Ubuntu 15.10, I get a mail (root)
  reporting a fatal exception in unatteded-upgrade containing the
  following.

  /etc/cron.daily/apt:
  Exception: unsupported operand type(s) for %: 'bytes' and 'tuple'
  Traceback (most recent call last):
File "/usr/bin/unattended-upgrade", line 1435, in 
  main(options)
File "/usr/bin/unattended-upgrade", line 1382, in main
  pkgs, pkg_install_success, pkgs_kept_back, mem_log, log_content)
File "/usr/bin/unattended-upgrade", line 815, in send_summary_mail
  host(), res)
  TypeError: unsupported operand type(s) for %: 'bytes' and 'tuple'

  As a consequence no automatic updates are performed anymore, including
  security updates. For this reason I flag this as a security
  vulnerability although it is only indirect.

  Manual updates is still working.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1527106/+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 1534239] Re: bottom edge tab selector doesn't work with mouse

2016-01-28 Thread Olivier Tilloy
After discussion with Bill, James and Benjamin, the proposed solution is
this:

 - short term fix for OTA 9.5: in narrow layout, when mouse is
connected, the bottom edge hint turns into a bottom edge bar that is
clickable, thus reducing the height of the webview

 - longer term fix (OTA 10 or later): in narrow layout, when mouse is
connected, the bottom edge hint is hidden and a new button is added to
the chrome (between the address bar and the drawer menu) to open the
tabs view

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

Title:
  bottom edge tab selector doesn't work with mouse

Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in Ubuntu UX:
  New
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  if you connect a mouse and the browser is in single column mode, there
  is no way to interact with the bottom edge to view/switch to other
  tabs. I expected to be able to click on the hint to open it, or at
  least be able to click and drag with mouse but neither succeeded.

  We should look at using the BottomEdgeHint component in the sdk as
  that correctly deals with handle mouse events and making the hint
  visible when a mouse is connected to see if that could be a
  possibility.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1534239/+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 1536379] Re: Fallback image for one scope is used for results from a second scope

2016-01-28 Thread Kyle Nitzsche
** Changed in: savilerow
   Importance: Undecided => High

-- 
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/1536379

Title:
  Fallback image for one scope is used for results from a second scope

Status in Canonical System Image:
  In Progress
Status in The Savilerow project:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  When updating the thumbnailer to return errors for albums/artists
  without art (https://code.launchpad.net/~jamesh/thumbnailer/no-
  fallback-albumart/+merge/263216), I noticed that Unity wasn't
  displaying the fallback artwork requested by the "My Music" scope:
  instead of showing the music note artwork in the artists result list,
  it was showing an Ubuntu logo.

  Albert looked into this and identified it as the fallback art
  specified by the Apps scope.  Further more, when he pinned the My
  Music scope so it came before the Apps scope, both scopes now used the
  fallback image from My Music instead.

  Instead, each scope should be using the fallback image from their own
  category renderer templates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1536379/+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 1518002] Re: Header is shown at startup and slides out even though it is set to be invisible and locked

2016-01-28 Thread Tim Peeters
 t1mp, i don't think bug 1524901 and bug 1518002 are
duplicates, One is stating that if you have the header locked in the
visible=false state then it animates on startup. The other states that
some apps that have a header get an extra gap at startup. Although they
may be linked in terms of how they'll be fixed

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

Title:
  Header is shown at startup and slides out even though it is set to be
  invisible and locked

Status in Canonical System Image:
  In Progress
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  Some applications have no header on the starting page, but may have
  headers on the sub pages (for settings), eg Calculator, Clock and
  Weather. However it has been observed that if you set the header to
  invisible and locked with the code below, the header is infact shown
  at startup and then slides away (as shown in this video [0]).

  head {
locked: true
visible: false
  }

  
  What happened:
  1) Create an application that uses the code above to have no header on the 
starting page
  2) Deploy and launch the application
  3) Notice that the header is initially shown but then slides away

  What was expected to happen:
  At step 3) for the header not to be shown at startup.

  
  0 - https://www.youtube.com/watch?v=OMqJbc6H6IY

  $ system-image-cli -i
  current build number: 160
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-11-12 07:59:01
  version version: 160
  version ubuntu: 20151112.1
  version device: 20150911
  version custom: mako-1.1

  $ apt-cache policy qtdeclarative5-ubuntu-ui-toolkit-plugin
  qtdeclarative5-ubuntu-ui-toolkit-plugin:
Installed: 1.3.1705+15.04.20151118-0ubuntu1
Candidate: 1.3.1705+15.04.20151118-0ubuntu1
Version table:
   *** 1.3.1705+15.04.20151118-0ubuntu1 0
 1001 
http://ppa.launchpad.net/ci-train-ppa-service/stable-phone-overlay/ubuntu/ 
vivid/main armhf Packages
  100 /var/lib/dpkg/status
   1.2.1458+15.04.20150422-0ubuntu1 0
  500 http://ports.ubuntu.com/ubuntu-ports/ vivid/main armhf Packages

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1518002/+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 576623] Re: Pulseaudio is not running, waiting for sound system to respond

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

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

-- 
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/576623

Title:
  Pulseaudio is not running, waiting for sound system to respond

Status in pulseaudio package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: pulseaudio

  After upgrade from karmic to lucid

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: pulseaudio 1:0.9.22~0.9.21+stable-queue-32-g8478-0ubuntu14
  ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-21-generic x86_64
  NonfreeKernelModules: fglrx
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: amd64
  ArecordDevices:
    List of CAPTURE Hardware Devices 
   card 0: SB [HDA ATI SB], device 0: STAC92xx Analog [STAC92xx Analog]
 Subdevices: 1/2
 Subdevice #0: subdevice #0
 Subdevice #1: subdevice #1
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  jerzyo 2099 F skype
   /dev/snd/pcmC0D0c:   jerzyo 2099 F...m skype
   /dev/snd/pcmC0D0p:   jerzyo 2099 F...m skype
   /dev/snd/timer:  jerzyo 2099 F skype
  Card0.Amixer.info:
   Card hw:0 'SB'/'HDA ATI SB at 0xd240 irq 16'
 Mixer name : 'IDT 92HD71B7X'
 Components : 'HDA:111d76b2,103c3622,00100302'
 Controls  : 27
 Simple ctrls  : 18
  Card1.Amixer.info:
   Card hw:1 'HDMI'/'HDA ATI HDMI at 0xd231 irq 19'
 Mixer name : 'ATI R6xx HDMI'
 Components : 'HDA:1002aa01,00aa0100,0010'
 Controls  : 4
 Simple ctrls  : 1
  Card1.Amixer.values:
   Simple mixer control 'IEC958',0
 Capabilities: pswitch pswitch-joined penum
 Playback channels: Mono
 Mono: Playback [on]
  Date: Thu May  6 22:34:46 2010
  ProcEnviron:
   LANGUAGE=en_US:en
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: pulseaudio
  Symptom: audio
  Title: Pulseaudio is not running
  dmi.bios.date: 05/14/2009
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.34
  dmi.board.asset.tag: Base Board Asset Tag
  dmi.board.name: 3622
  dmi.board.vendor: Quanta
  dmi.board.version: 98.35
  dmi.chassis.type: 10
  dmi.chassis.vendor: Quanta
  dmi.chassis.version: N/A
  dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.34:bd05/14/2009:svnHewlett-Packard:pnHPPaviliondv5NotebookPC:pvrRev1:rvnQuanta:rn3622:rvr98.35:cvnQuanta:ct10:cvrN/A:
  dmi.product.name: HP Pavilion dv5 Notebook PC
  dmi.product.version: Rev 1
  dmi.sys.vendor: Hewlett-Packard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/pulseaudio/+bug/576623/+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 577760] Re: lost audio after last reboot

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  lost audio after last reboot

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  computer is totally muted after last reboot:  no sound from utube, vlc
  player, rhythmbox, etc.etc.

  ubuntu studio 10.04 gnome 2.30.0
  amd phenom ii x4 955
  memory 8gHZ 

  geforce 9500gt /pci-e 16x

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: firefox 3.6.3+nobinonly-0ubuntu4
  ProcVersionSignature: Ubuntu 2.6.31-10.153-rt
  Uname: Linux 2.6.31-10-rt x86_64
  NonfreeKernelModules: nvidia
  Architecture: amd64
  Date: Sun May  9 11:48:22 2010
  FirefoxPackages:
   firefox 3.6.3+nobinonly-0ubuntu4
   firefox-gnome-support 3.6.3+nobinonly-0ubuntu4
   firefox-branding 3.6.3+nobinonly-0ubuntu4
   abroswer N/A
   abrowser-branding N/A
  ProcEnviron:
   LANG=en_GB.utf8
   SHELL=/bin/bash
  SourcePackage: firefox

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/577760/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
^My reports above were on mako with the latest rc-proposed image (r352).

On krillin with image r387 I can reproduce this bug:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1518002
with music-app. Messaging-app, contacts-app and Dekko are good (I cannot
reproduce the bug).

Now flashing image 394 to see if there is a difference.

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1508653] Re: Build with multiarch support

2016-01-28 Thread Brian Murray
I've uploaded this change, thanks. However, I couldn't be bothered to go
back and fix the missing bug reference so I'll just close this now.

** Changed in: whoopsie (Ubuntu)
   Status: Triaged => Fix Released

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

Title:
  Build with multiarch support

Status in whoopsie package in Ubuntu:
  Fix Released

Bug description:
  Build with multiarch support

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/whoopsie/+bug/1508653/+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 1491340] Re: Bluetooth keyboard is configured with wrong keyboard layout

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/qtubuntu/kbdLayout

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

Title:
  Bluetooth keyboard is configured with wrong keyboard layout

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in bluez package in Ubuntu:
  Invalid
Status in ubuntu-system-settings package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Phone: Meizu MX4 (15.04 r4)
  OS Language: German

  What you expected to happen:
  When connecting a Bluetooth keyboard I expect that the keyboard layout is the 
same as the keyboard hardware key layout (German) or that it is possible to 
change the keyboard layout in the Bluetooth setting for the connected Bluetooth 
device.

  What happened instead:
  The Bluetooth keyboard worked, but wasn't set to German key layout. In the 
Bluetooth device setting I couldn't find any option to change the Bluetooth 
keyboard key layout.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1491340/+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 1539125] [NEW] Login into the console does show the wrong number of upgradeable packages

2016-01-28 Thread Sworddragon
Public bug reported:

I'm using Ubuntu 16.04 dev with apt 1.0.10.2ubuntu1 and if I'm login
into the console a message shows me how many packages are upgradeable.
But very often it shows me a number > 0 even if my system if fully
upgraded. Trying to logout and login again does still show the same
number.

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

-- 
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/1539125

Title:
  Login into the console does show the wrong number of upgradeable
  packages

Status in apt package in Ubuntu:
  New

Bug description:
  I'm using Ubuntu 16.04 dev with apt 1.0.10.2ubuntu1 and if I'm login
  into the console a message shows me how many packages are upgradeable.
  But very often it shows me a number > 0 even if my system if fully
  upgraded. Trying to logout and login again does still show the same
  number.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1539125/+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 1435040] Re: Ubuntu Phone (BQ E4.5) does not connect to car-bluetooth

2016-01-28 Thread Stunts
This has started to happen to me after OTA-9.
Phone: BQ Aquaris e4.5
Car: 2015 Honda Civic Tourer

I had reported
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1539158
but it might be a duplicate...

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

Title:
  Ubuntu Phone (BQ E4.5) does not connect to car-bluetooth

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Incomplete

Bug description:
  With my FORD Focus Car, pairing does not work. The bluetooth system in
  the car searches for devices and shows "Aquaris E4.5 Ubuntu Edition"
  and then prompts me to connect with a 4-digit pin code, but the Ubuntu
  phone doesn't react at all and after a while the car system says that
  it failed to connect.

  image: 20150310-3201c0a
  KRILIN01A-S15A_BQ_L100EN_2020_150312
  OS Build 20

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1435040/+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 1526808] Re: installed system qeth NIC name is too verbose

2016-01-28 Thread Ubuntu Foundations Team Bug Bot
** Tags added: patch

-- 
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/1526808

Title:
  installed system qeth NIC name is too verbose

Status in systemd package in Ubuntu:
  In Progress

Bug description:
  installed system qeth NIC name is too verbose

  Specifically on s390x it came up as:

  enccw0.0.0600

  which is possibly too verbose, however it is definitive and trivial to
  understand for anyone with z/VM knowledge as this correlates with
  device hex address (aka 0x600 nic)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/systemd/+bug/1526808/+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 1491340] Re: Bluetooth keyboard is configured with wrong keyboard layout

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/unity8/kbdLayout

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

Title:
  Bluetooth keyboard is configured with wrong keyboard layout

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in bluez package in Ubuntu:
  Invalid
Status in ubuntu-system-settings package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Phone: Meizu MX4 (15.04 r4)
  OS Language: German

  What you expected to happen:
  When connecting a Bluetooth keyboard I expect that the keyboard layout is the 
same as the keyboard hardware key layout (German) or that it is possible to 
change the keyboard layout in the Bluetooth setting for the connected Bluetooth 
device.

  What happened instead:
  The Bluetooth keyboard worked, but wasn't set to German key layout. In the 
Bluetooth device setting I couldn't find any option to change the Bluetooth 
keyboard key layout.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1491340/+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 1524400] Re: Use default keymap on creation of surface

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/unity8/kbdLayout

-- 
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/1524400

Title:
  Use default keymap on creation of surface

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in qtmir package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Keymaps should be configurable pr surface or for all surfaces. This
  bug tracks implementation of the latter.

  Determining what keymap to use
  Input sources (InputSources) is an array of dicts on the 
org.freedesktop.Accounts.User interface, which is on the system bus. This holds 
all the user chosen keymaps. If empty, it indicates en_us. It is on the system 
bus so that the greeter can determine what keymap to use.

  If keymaps > 1, the default keymap for all surfaces will be the first
  applicable keymap.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1524400/+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 1539185] [NEW] Xorg-freeze

2016-01-28 Thread adam thye
Public bug reported:

i have spend like 10 hours fixing this :( HELP PLEASE! :)

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.16.0-60.80~14.04.1-generic 3.16.7-ckt22
Uname: Linux 3.16.0-60-generic i686
NonfreeKernelModules: wl
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: i386
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
Date: Thu Jan 28 17:49:24 2016
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
DkmsStatus:
 bcmwl, 6.30.223.248+bdcom, 3.16.0-30-generic, i686: installed
 bcmwl, 6.30.223.248+bdcom, 3.16.0-60-generic, i686: installed
ExtraDebuggingInterest: Yes
GpuHangFrequency: Very infrequently
GraphicsCard:
 Advanced Micro Devices, Inc. [AMD/ATI] RV730/M96 [Mobility Radeon HD 
4650/5165] [1002:9480] (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:3637]
InstallationDate: Installed on 2015-07-26 (185 days ago)
InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release i386 (20150218.1)
MachineType: Hewlett-Packard HP Pavilion dv6 Notebook PC
ProcEnviron:
 LANGUAGE=en_US:en
 TERM=linux
 PATH=(custom, no user)
 LANG=en_US.UTF-8
 SHELL=/bin/bash
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-60-generic 
root=UUID=bba0fdc9-b3fe-4d87-b14f-2b97c79b1d34 ro splash vt.handoff=7
SourcePackage: xorg
Symptom: display
Title: Xorg freeze
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 05/17/2010
dmi.bios.vendor: Hewlett-Packard
dmi.bios.version: F.15
dmi.board.name: 3637
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 33.23
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: N/A
dmi.modalias: 
dmi:bvnHewlett-Packard:bvrF.15:bd05/17/2010:svnHewlett-Packard:pnHPPaviliondv6NotebookPC:pvr049C212413102:rvnHewlett-Packard:rn3637:rvr33.23:cvnHewlett-Packard:ct10:cvrN/A:
dmi.product.name: HP Pavilion dv6 Notebook PC
dmi.product.version: 049C212413102
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri N/A
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Thu Jan 28 17:27:18 2016
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.version: 2:1.16.0-1ubuntu1.2~trusty2
xserver.video_driver: radeon

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


** Tags: apport-bug freeze 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/1539185

Title:
  Xorg-freeze

Status in xorg package in Ubuntu:
  New

Bug description:
  i have spend like 10 hours fixing this :( HELP PLEASE! :)

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.16.0-60.80~14.04.1-generic 3.16.7-ckt22
  Uname: Linux 3.16.0-60-generic i686
  NonfreeKernelModules: wl
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: i386
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  Date: Thu Jan 28 17:49:24 2016
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bcmwl, 6.30.223.248+bdcom, 3.16.0-30-generic, i686: installed
   bcmwl, 6.30.223.248+bdcom, 3.16.0-60-generic, i686: installed
  ExtraDebuggingInterest: Yes
  GpuHangFrequency: Very infrequently
  GraphicsCard:
   Advanced Micro Devices, Inc. [AMD/ATI] RV730/M96 [Mobility Radeon HD 
4650/5165] [1002:9480] (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:3637]
  InstallationDate: Installed on 2015-07-26 (185 days ago)
  InstallationMedia: Ubuntu 14.04.2 LTS "Trusty Tahr" - Release i386 
(20150218.1)
  MachineType: Hewlett-Packard HP Pavilion dv6 Notebook PC
  ProcEnviron:
   LANGUAGE=en_US:en
   TERM=linux
   PATH=(custom, no user)
   LANG=en_US.UTF-8
   SHELL=/bin/bash
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.16.0-60-generic 
root=UUID=bba0fdc9-b3fe-4d87-b14f-2b97c79b1d34 ro splash vt.handoff=7
  SourcePackage: xorg
  Symptom: display
  Title: Xorg freeze
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 05/17/2010
  dmi.bios.vendor: Hewlett-Packard
  dmi.bios.version: F.15
  dmi.board.name: 3637
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 33.23
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: N/A
  

[Touch-packages] [Bug 570475] Re: search for network printer proceeds with no feedback

2016-01-28 Thread Dave Gluss
Dude, this bug is 6 years old. It should be marked obsolete, not
invalid. Since there isn't an "obsolete" it should be "won't fix" or
"Fix Released".

Invalid means that it wasn't a bug.

It does seem to be fixed in 14.04.

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

Title:
  search for network printer proceeds with no feedback

Status in cups package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: cups

  Click on System->Administration->Printing.
  Click on Add.
  Hit the + sign next to Network Printer, now wait...it's finding the network 
printers.  But it's not saying anything, so you might for example click on 
"Find Network Printers" but nothing will happen...but in time, your network 
printers will pop up.
  So while it's searching but not displaying, it ought to have a status message 
or something so that you know it's searching.

  This is in Lucid Beta 2, but I think it's been this way for quite a
  while.

  I'm currently using CUPS 1.4.3-1.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: cups 1.4.3-1
  ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-21-generic x86_64
  Architecture: amd64
  CupsErrorLog: E [26/Apr/2010:11:47:31 -0700] Unable to remove temporary file 
"/var/spool/cups/tmp/.hplip" - Is a directory
  Date: Mon Apr 26 16:39:19 2010
  InstallationMedia: Ubuntu 10.04 "Lucid Lynx" - Beta amd64 (20100406.1)
  Lpstat:
   device for bw: hp:/net/HP_LaserJet_3055?zc=NPI90976E
   device for color: hp:/net/HP_Color_LaserJet_2605dn?zc=NPI9F9CDA
  MachineType: Dell Inc. Latitude E6500
  Papersize: letter
  PccardctlIdent:
   Socket 0:
 no product info available
  PccardctlStatus:
   Socket 0:
 no card
  PpdFiles:
   color: HP Color LaserJet 2605 Postscript (recommended)
   bw: HP LaserJet 3055 hpijs, 3.10.2
  ProcCmdLine: BOOT_IMAGE=/boot/vmlinuz-2.6.32-21-generic 
root=UUID=bdfc1363-d2e4-4057-bea0-2df22867e6bf ro quiet splash
  ProcEnviron:
   PATH=(custom, user)
   LANG=en_US.utf8
   SHELL=/bin/bash
  SourcePackage: cups
  dmi.bios.date: 07/31/2009
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A14
  dmi.board.name: 0W612R
  dmi.board.vendor: Dell Inc.
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.modalias: 
dmi:bvnDellInc.:bvrA14:bd07/31/2009:svnDellInc.:pnLatitudeE6500:pvr:rvnDellInc.:rn0W612R:rvr:cvnDellInc.:ct8:cvr:
  dmi.product.name: Latitude E6500
  dmi.sys.vendor: Dell Inc.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/cups/+bug/570475/+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 1508081] Re: Fails to receive OTA updates

2016-01-28 Thread Nekhelesh Ramananthan
When looking at http://paste.ubuntu.com/14689175/ (ubuntu-download-
manager.INFO log file), I0128 20:44:51.668818  4255
network_session.cpp:68] Connection type gsm <-- it thinks its on GSM

Elleo: iirc it won't do automatic downloads of updates in GSM mode, unless 
you've set it to allow that in settings
I think it'll just queue it up and wait for the network type to change to wifi
I think we need to rethink the logic of that
as queueing it up then prevents the user from being able to manually press the 
download button I think
nik90: can you try connecting to wifi and see if it suddenly starts going?

By changing the auto-download settings in the settings-app to always
download, I was able to get OTA-9.

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

Title:
  Fails to receive OTA updates

Status in Canonical System Image:
  In Progress
Status in ubuntu-download-manager package in Ubuntu:
  In Progress

Bug description:
  Ubuntu Touch 15.04 (r23) [mako]

  Issue: Phone appears to fail to receive OTA updates. Previously, I jumped 
from (r15) to (r23) due to missing OTA updates. Currently, I see (r24) appears 
to be released on 2015 Oct 16.
  Expected behavior: System Settings > System > Updates (or System Settings > 
About this phone > Check for updates) reveals new image that I can release and 
download.
  Actual behavior: Checking for updates... > Software is up to date

  See the comment regarding similar issues for large app installs.
  It seems if anything interrupts the transfer or if the connection is somewhat 
slow the download performance degenerates then times out.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1508081/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Dan Chapman 
I haven't seen this behaviour so far in Dekko, with the default white
background it's probably difficult to see anyway. Just to test I changed
the apps background colour to dark but still didn't see this white gap.

Tested on krillin & mako

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  In Progress

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1527106] Update Released

2016-01-28 Thread Brian Murray
The verification of the Stable Release Update for unattended-upgrades
has completed successfully and the package has now been released to
-updates.  Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  Fatal exception failure of unattended-upgrade

Status in unattended-upgrades package in Ubuntu:
  Fix Released
Status in unattended-upgrades source package in Wily:
  Fix Released

Bug description:
  Every morning, since I upgraded to Ubuntu 15.10, I get a mail (root)
  reporting a fatal exception in unatteded-upgrade containing the
  following.

  /etc/cron.daily/apt:
  Exception: unsupported operand type(s) for %: 'bytes' and 'tuple'
  Traceback (most recent call last):
File "/usr/bin/unattended-upgrade", line 1435, in 
  main(options)
File "/usr/bin/unattended-upgrade", line 1382, in main
  pkgs, pkg_install_success, pkgs_kept_back, mem_log, log_content)
File "/usr/bin/unattended-upgrade", line 815, in send_summary_mail
  host(), res)
  TypeError: unsupported operand type(s) for %: 'bytes' and 'tuple'

  As a consequence no automatic updates are performed anymore, including
  security updates. For this reason I flag this as a security
  vulnerability although it is only indirect.

  Manual updates is still working.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unattended-upgrades/+bug/1527106/+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 1536379] Re: Fallback image for one scope is used for results from a second scope

2016-01-28 Thread Kyle Nitzsche
** Also affects: savilerow
   Importance: Undecided
   Status: New

-- 
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/1536379

Title:
  Fallback image for one scope is used for results from a second scope

Status in Canonical System Image:
  In Progress
Status in The Savilerow project:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  When updating the thumbnailer to return errors for albums/artists
  without art (https://code.launchpad.net/~jamesh/thumbnailer/no-
  fallback-albumart/+merge/263216), I noticed that Unity wasn't
  displaying the fallback artwork requested by the "My Music" scope:
  instead of showing the music note artwork in the artists result list,
  it was showing an Ubuntu logo.

  Albert looked into this and identified it as the fallback art
  specified by the Apps scope.  Further more, when he pinned the My
  Music scope so it came before the Apps scope, both scopes now used the
  fallback image from My Music instead.

  Instead, each scope should be using the fallback image from their own
  category renderer templates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1536379/+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 1535071] Re: Bluetooth on Mx4 doesn't work. Finds devices but can't connect.

2016-01-28 Thread Stefan Mikulaj
Bluetooth can't connect to car hands-free bluetooth.
I'm in OTA-9 clean flash, was hoping this would be fixed long time ago as I was 
on rc-proposed and it did have the same problem
MX4 finds the device but when trying to connect, nothing happens. Sometimes it 
briefly connects for like 2-3 seconds and instantly disconnects.
In-car hands-free shows MX4 Ubuntu added but phone won't pair.
This should be treated as a HIGH priority as it's needed when driving.
Anyone can update us about this rather annoying bug???

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

Title:
  Bluetooth on Mx4 doesn't work. Finds devices but can't connect.

Status in indicator-bluetooth package in Ubuntu:
  New

Bug description:
  Bluetooth finds each other devices but if I try to connect with them,
  there status keeps "disconnected". Connect button is gray (inactive).

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-bluetooth/+bug/1535071/+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 1539359] Re: No message for empty song collection

2016-01-28 Thread Michi Henning
Hmmm... To a naive user, such as myself, it may not be obvious how to
get music files onto the phone.

It might be nice to say something about how to do this in whatever card
we eventually end up in when no music has been copied yet.

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

Title:
  No message for empty song collection

Status in Ubuntu UX:
  New
Status in unity-scope-mediascanner package in Ubuntu:
  Confirmed

Bug description:
  See here: https://bugs.launchpad.net/ubuntu/+source/unity-scope-
  mediascanner/+bug/1539068/comments/2

  We don't display a message in the scope when the music collection is
  empty. Maybe a link/hint to the music app would be appropriate?
  Similar to what we do in the scope if there are no photos/videos?

  This also begs the question: how is a user with, say, a Nexus 4 going
  to get their song collection onto the device, seeing that it does not
  have a flash card slot?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1539359/+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 1539359] Re: No message for empty song collection

2016-01-28 Thread James Henstridge
Copying music to the phone isn't a problem: when they plug it into a
computer via USB it should be visible in the file manager, letting them
copy music via MTP.

The equivalent problem doesn't exist for Videos: the My Videos scope
pushes a result to the aggregator that shows a link to the camera app
when there are no videos.  We can't copy that exactly though, since
there are no preinstalled apps for creating music on the phone (and that
isn't the kind of thing many users would do anyway).

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

Title:
  No message for empty song collection

Status in Ubuntu UX:
  New
Status in unity-scope-mediascanner package in Ubuntu:
  Confirmed

Bug description:
  See here: https://bugs.launchpad.net/ubuntu/+source/unity-scope-
  mediascanner/+bug/1539068/comments/2

  We don't display a message in the scope when the music collection is
  empty. Maybe a link/hint to the music app would be appropriate?
  Similar to what we do in the scope if there are no photos/videos?

  This also begs the question: how is a user with, say, a Nexus 4 going
  to get their song collection onto the device, seeing that it does not
  have a flash card slot?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1539359/+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 1314871] Re: Graphics freeze, with applications continuing working properly

2016-01-28 Thread Luca Lazzeroni
We experience the same problem with Ubuntu 14.04.3 on Intel Compute Stick 
(kernel 3.16.0-58).
The device works without problems for a while, but after a random time (between 
6-7 hours to 1-2 days) the screen freezes, but applications on the device still 
run.

I've submitted a bug report to Intel thinking the problem was in their
driver, but now I think problem is elsewhere (since users with Nvidia
experience it).

If this can help, I can add that while the screen is frozen if you do
the:

xrandr --output HDMI1 --off

and

xrandr --output HDMI1 --preferred

the screen start working again without reboot.

Maybe the problem is in xrandr ?

Thank you,

Luca

-- 
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/1314871

Title:
  Graphics freeze, with applications continuing working properly

Status in X.Org X server:
  Incomplete
Status in xorg package in Ubuntu:
  Incomplete

Bug description:
  Happens at random during normal desktop usage.

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  NonfreeKernelModules: nvidia wl
  .proc.driver.nvidia.gpus.0: Error: [Errno 21] Is a directory: 
'/proc/driver/nvidia/gpus/0'
  .proc.driver.nvidia.registry: Binary: ""
  .proc.driver.nvidia.version:
   NVRM version: NVIDIA UNIX x86_64 Kernel Module  331.38  Wed Jan  8 19:32:30 
PST 2014
   GCC version:  gcc version 4.8.2 (Ubuntu 4.8.2-19ubuntu1)
  .tmp.unity.support.test.0:

  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  CurrentDesktop: Unity
  Date: Thu May  1 09:21:51 2014
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  DkmsStatus:
   bbswitch, 0.7, 3.13.0-24-generic, x86_64: installed
   bcmwl, 6.30.223.141+bdcom, 3.13.0-24-generic, x86_64: installed
   nvidia-331-updates, 331.38, 3.13.0-24-generic, x86_64: installed
   virtualbox, 4.3.10, 3.13.0-24-generic, x86_64: installed
  GraphicsCard:
   Intel Corporation Core Processor Integrated Graphics Controller [8086:0046] 
(rev 18) (prog-if 00 [VGA controller])
     Subsystem: Dell Device [1028:044d]
   NVIDIA Corporation GT218M [GeForce 310M] [10de:0a75] (rev a2) (prog-if 00 
[VGA controller])
     Subsystem: Dell Device [1028:044d]
  InstallationDate: Installed on 2014-04-27 (3 days ago)
  InstallationMedia: Ubuntu-Kylin 14.04 LTS "Trusty Tahr" - Release amd64 
(20140417.1)
  MachineType: Dell Inc. Vostro 3400
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.13.0-24-generic 
root=UUID=96cf6b4d-5e19-4d7a-b765-b71e4b0b94da ro locale=zh_CN quiet splash
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/25/2010
  dmi.bios.vendor: Dell Inc.
  dmi.bios.version: A10
  dmi.board.name: 0RXV7H
  dmi.board.vendor: Dell Inc.
  dmi.board.version: A10
  dmi.chassis.type: 8
  dmi.chassis.vendor: Dell Inc.
  dmi.chassis.version: A10
  dmi.modalias: 
dmi:bvnDellInc.:bvrA10:bd10/25/2010:svnDellInc.:pnVostro3400:pvrA10:rvnDellInc.:rn0RXV7H:rvrA10:cvnDellInc.:ct8:cvrA10:
  dmi.product.name: Vostro 3400
  dmi.product.version: A10
  dmi.sys.vendor: Dell Inc.
  version.compiz: compiz 1:0.9.11+14.04.20140409-0ubuntu1
  version.ia32-libs: ia32-libs N/A
  version.libdrm2: libdrm2 2.4.52-1
  version.libgl1-mesa-dri: libgl1-mesa-dri 10.1.0-4ubuntu5
  version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
  version.libgl1-mesa-glx: libgl1-mesa-glx 10.1.0-4ubuntu5
  version.nvidia-graphics-drivers: nvidia-graphics-drivers N/A
  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
  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

To manage notifications about this bug go to:
https://bugs.launchpad.net/xorg-server/+bug/1314871/+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 1538934] Re: qml test fails with vanilla xenial installation

2016-01-28 Thread Michi Henning
Still getting some failures after unsetting that.

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

Title:
  qml test fails with vanilla xenial installation

Status in thumbnailer package in Ubuntu:
  New

Bug description:
  On a fresh xenial install, the qml test fails. I'm running it from the
  qml test dir like this:

  $ ../../../tools/run-xvfb.sh ./qml_test -import `pwd`/../../plugins

  Output is in the attached trace file.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/thumbnailer/+bug/1538934/+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 1539359] Re: No message for empty song collection

2016-01-28 Thread Michi Henning
And, as you pointed out on IRC, people using Mac will have to install
additional software.

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

Title:
  No message for empty song collection

Status in Ubuntu UX:
  New
Status in unity-scope-mediascanner package in Ubuntu:
  Confirmed

Bug description:
  See here: https://bugs.launchpad.net/ubuntu/+source/unity-scope-
  mediascanner/+bug/1539068/comments/2

  We don't display a message in the scope when the music collection is
  empty. Maybe a link/hint to the music app would be appropriate?
  Similar to what we do in the scope if there are no photos/videos?

  This also begs the question: how is a user with, say, a Nexus 4 going
  to get their song collection onto the device, seeing that it does not
  have a flash card slot?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1539359/+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 1539413] [NEW] Video turned to 180 degree and flickers serverly when tapping on the image

2016-01-28 Thread quandan
Public bug reported:

current build number: 43
device name: krillin
channel: ubuntu-touch/rc/bq-aquaris.en
last update: 2016-01-25 02:09:55
version version: 43
version ubuntu: 20160123.1
version device: 20160108-efc96d8
version custom: 20160111-926-36--vivid

Steps:
1.Load some short videos in your device
2.Play one video and wait to finish and stop by itself
3.Tap on the image of this video 

Expectation:
After finishing playing ,  the image of the video will show the correction 

Actual result:
The image of video turns 180 degree and when you tap on the image , it flickers 
badly

** Affects: mediaplayer-app (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "screenshot20160129_055604123.png"
   
https://bugs.launchpad.net/bugs/1539413/+attachment/4558855/+files/screenshot20160129_055604123.png

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

Title:
  Video turned to 180 degree and flickers serverly when tapping on the
  image

Status in mediaplayer-app package in Ubuntu:
  New

Bug description:
  current build number: 43
  device name: krillin
  channel: ubuntu-touch/rc/bq-aquaris.en
  last update: 2016-01-25 02:09:55
  version version: 43
  version ubuntu: 20160123.1
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid

  Steps:
  1.Load some short videos in your device
  2.Play one video and wait to finish and stop by itself
  3.Tap on the image of this video 

  Expectation:
  After finishing playing ,  the image of the video will show the correction 

  Actual result:
  The image of video turns 180 degree and when you tap on the image , it 
flickers badly

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mediaplayer-app/+bug/1539413/+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 1502858] Re: CJK interface default fonts replacing

2016-01-28 Thread ShowerYing
** Also affects: ubuntu-font-family
   Importance: Undecided
   Status: New

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

Title:
  CJK interface default fonts replacing

Status in Ubuntu Font Family:
  New
Status in ubuntu-font-family-sources package in Ubuntu:
  New

Bug description:
  I hope present CJK interface default fonts can be replaced with Source Han 
Sans (http://blog.typekit.com/2014/07/15/introducing-source-han-sans/), which 
is more beautiful, well-designed, free, open source, pan-cjk fonts, more 
importantly, It has 7 font-weights, much more than present font, which only has 
one font-weight, (In my opinion, CJK font display should at least have two 
font-weights, regular and bold, not like present font, which makes users harder 
to catch the content's key points(which should be shown in REAL bold 
font-weight, instead of system automatically produced FAKE one)).
   It can also help improving the UX of CJK interface.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-font-family/+bug/1502858/+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 1089013] Re: clvm startup script requires cman

2016-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package lvm2 - 2.02.133-1ubuntu4

---
lvm2 (2.02.133-1ubuntu4) xenial; urgency=medium

  * Remove the init script dependency on cman_tool. (LP: #1089013)
- debian/clvm.init: check corosync cluster status since the cman
  tooling isn't available in Xenial. Change start/stop dependencies
  to dlm instead of cman and openais since neither cman nor openais
  are available.

 -- Billy Olsen   Thu, 28 Jan 2016 11:38:39
+0100

** Changed in: lvm2 (Ubuntu Xenial)
   Status: In Progress => Fix Released

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

Title:
  clvm startup script requires cman

Status in lvm2 package in Ubuntu:
  Fix Released
Status in lvm2 source package in Precise:
  Triaged
Status in lvm2 source package in Trusty:
  Triaged
Status in lvm2 source package in Wily:
  Triaged
Status in lvm2 source package in Xenial:
  Fix Released

Bug description:
  while clvm in precise can support corosync, init script won't start
  because issues a cman status command

  ProblemType: Bug
  DistroRelease: Ubuntu 12.04
  Package: clvm 2.02.66-4ubuntu7.1
  ProcVersionSignature: Ubuntu 3.2.0-23.36-generic 3.2.14
  Uname: Linux 3.2.0-23-generic x86_64
  ApportVersion: 2.0.1-0ubuntu5
  Architecture: amd64
  Date: Tue Dec 11 18:09:36 2012
  InstallationMedia: Ubuntu-Server 12.04 LTS "Precise Pangolin" - Release amd64 
(20120424.1)
  ProcEnviron:
   TERM=screen
   LANG=it_IT.UTF-8
   SHELL=/bin/bash
  SourcePackage: lvm2
  UpgradeStatus: No upgrade log present (probably fresh install)
  modified.conffile..etc.default.clvm: [modified]
  mtime.conffile..etc.default.clvm: 2012-12-11T16:45:40.149014

  [Impact]

   * clvm daemon cannot start using provided init scripts

  [Test Case]

   * Install clvm package
   * Configure corosync
   * service clvm start
     - Fails to start due to cman dependency

  [Regression Potential]

   * None, already broken, though there is risk of other bugs being
  uncovered since this hasn't worked in quite awhile.

  [Other Info]

   * This is a change to the debian provided init script for clvm. Upstream
     debian still has the redhat-cluster package which contains the cman
     tool, as such this change is applicable to Ubuntu only since the
     redhat clustering suite is not available.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/lvm2/+bug/1089013/+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 1539359] Re: No message for empty song collection

2016-01-28 Thread Marcus Tomlinson
Fiar point Michi, in fact, this reveals another issue: Currently, the
"get started" message displayed in My Music suggests copying music files
onto an SD card which, looking at our supported devices, is not
applicable to the BQ and Meizu. We need to fix this to better describe
the process James explained.

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

Title:
  No message for empty song collection

Status in Ubuntu UX:
  New
Status in unity-scope-mediascanner package in Ubuntu:
  Confirmed

Bug description:
  See here: https://bugs.launchpad.net/ubuntu/+source/unity-scope-
  mediascanner/+bug/1539068/comments/2

  We don't display a message in the scope when the music collection is
  empty. Maybe a link/hint to the music app would be appropriate?
  Similar to what we do in the scope if there are no photos/videos?

  This also begs the question: how is a user with, say, a Nexus 4 going
  to get their song collection onto the device, seeing that it does not
  have a flash card slot?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1539359/+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 1539359] Re: No message for empty song collection

2016-01-28 Thread Marcus Tomlinson
Sorry, that should be: It is applicable to the BQ but not the Meizu.

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

Title:
  No message for empty song collection

Status in Ubuntu UX:
  New
Status in unity-scope-mediascanner package in Ubuntu:
  Confirmed

Bug description:
  See here: https://bugs.launchpad.net/ubuntu/+source/unity-scope-
  mediascanner/+bug/1539068/comments/2

  We don't display a message in the scope when the music collection is
  empty. Maybe a link/hint to the music app would be appropriate?
  Similar to what we do in the scope if there are no photos/videos?

  This also begs the question: how is a user with, say, a Nexus 4 going
  to get their song collection onto the device, seeing that it does not
  have a flash card slot?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1539359/+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 572687] Re: package dash 0.5.5.1-2ubuntu3 failed to install/upgrade: le sous-processus nouveau script pre-installation a retourné une erreur de sortie d'état 9

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

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

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

Title:
  package dash 0.5.5.1-2ubuntu3 failed to install/upgrade: le sous-
  processus nouveau script pre-installation a retourné une erreur de
  sortie d'état 9

Status in dash package in Ubuntu:
  Invalid

Bug description:
  Binary package hint: dash

  ggg

  ProblemType: Package
  DistroRelease: Ubuntu 10.04
  Package: dash 0.5.5.1-2ubuntu3
  ProcVersionSignature: Ubuntu 2.6.32-22.33-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-22-generic i686
  Architecture: i386
  Date: Sat May  1 00:58:35 2010
  ErrorMessage: le sous-processus nouveau script pre-installation a retourné 
une erreur de sortie d'état 9
  InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
  SourcePackage: dash
  Title: package dash 0.5.5.1-2ubuntu3 failed to install/upgrade: le 
sous-processus nouveau script pre-installation a retourné une erreur de sortie 
d'état 9

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/dash/+bug/572687/+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 1245986] Re: users should define wifi net preference, defaulting to heuristics

2016-01-28 Thread Matthew Paul Thomas
** Description changed:

  I'm at a hotel.  There's a strong network AP in this room that my org
  owns, and a weaker hotel wifi AP elsewhere.
  
  Before my org convened, I connected to the hotel wifi, so it's in the
  list of SSIDs that I automatically connect to.  I would rather connect
  to my org's wifi in almost all cases. But, that doesn't happen, and it
  connects to the unwanted hotel Wifi AP.  I should be able to order the
  SSIDs that I will automatically connect to my dragging them in the list
  and a lower network should never be used if a higher is available.
  
  So, in picking a network to connect to, we should try each in order of
  user-defined preference and abandon any that are below some threshold of
  usefulness.
  
  Additionally, if nothing more-preferred is available, pick among
  crypto'd networks, abandoning too weak.
  
  Then pick according to strength if everything else is equal.
  
- 
  I describe best in code...
  
  order_of_preference = sorted(((net.user_defined_order if net.strength >
  epsilon else INFINITY), (0 if net.has_crypto else 1), net.strength, net)
  for net in network_list)
  
  net_to_use = order_of_preference[0][3]
+ 
+ : "When
+ reprioritization of networks has been implemented in NetworkManager,
+ pressing on a network should make it draggable so that you can reorder
+ the list (bug 1538972)."
+ 
  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: network-manager 0.9.8.0-0ubuntu22
  ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
  Uname: Linux 3.11.0-9-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Oct 29 13:29:36 2013
  IpRoute:
-  default via 10.155.32.1 dev wlan0  proto static 
-  10.155.32.0/19 dev wlan0  proto kernel  scope link  src 10.155.51.98  metric 
9
+  default via 10.155.32.1 dev wlan0  proto static
+  10.155.32.0/19 dev wlan0  proto kernel  scope link  src 10.155.51.98  metric 
9
  MarkForUpload: True
  NetworkManager.state:
-  [main]
-  NetworkingEnabled=true
-  WirelessEnabled=true
-  WWANEnabled=true
+  [main]
+  NetworkingEnabled=true
+  WirelessEnabled=true
+  WWANEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to saucy on 2009-03-27 (1677 days ago)
  WpaSupplicantLog:
-  
+ 
  nmcli-dev:
-  DEVICE TYPE  STATE DBUS-PATH 
 
-  wlan0  802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/1  
-  eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/0
+  DEVICE TYPE  STATE DBUS-PATH
+  wlan0  802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/1
+  eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
-  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN  
-  running 0.9.8.0connected   enabled   enabled 
enabledenabled disabled
+  RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN
+  running 0.9.8.0connected   enabled   enabled 
enabledenabled disabled

** Changed in: network-manager (Ubuntu)
   Status: Confirmed => Triaged

** Bug watch added: GNOME Bug Tracker #629487
   https://bugzilla.gnome.org/show_bug.cgi?id=629487

** Also affects: network-manager via
   https://bugzilla.gnome.org/show_bug.cgi?id=629487
   Importance: Unknown
   Status: Unknown

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

Title:
  users should define wifi net preference, defaulting to heuristics

Status in NetworkManager:
  Unknown
Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  I'm at a hotel.  There's a strong network AP in this room that my org
  owns, and a weaker hotel wifi AP elsewhere.

  Before my org convened, I connected to the hotel wifi, so it's in the
  list of SSIDs that I automatically connect to.  I would rather connect
  to my org's wifi in almost all cases. But, that doesn't happen, and it
  connects to the unwanted hotel Wifi AP.  I should be able to order the
  SSIDs that I will automatically connect to my dragging them in the
  list and a lower network should never be used if a higher is
  available.

  So, in picking a network to connect to, we should try each in order of
  user-defined preference and abandon any that are below some threshold
  of usefulness.

  Additionally, if nothing more-preferred is available, pick among
  crypto'd networks, abandoning too weak.

  Then pick according to strength if everything else is equal.

  I describe best in code...

  order_of_preference = sorted(((net.user_defined_order if net.strength
  > epsilon else 

[Touch-packages] [Bug 1398193] Re: The bluetooth headset can not control the media playback

2016-01-28 Thread Pat McGowan
** Summary changed:

- The bluetooth headset can not control the video playback
+ The bluetooth headset can not control the media playback

** Description changed:

  [Preconditions]
  1.The DUT pair with bluetooth headset
  
  [Procedures]
  1.Play a video using the mediaplayer-app
  2.Play/pause video by bluetooth headset
  
  [Expect results]
  The bluetooth headset can play/pause video
  [Actual results]
  The bluetooth headset can not control the video playback.
  
  [Reproduce]
  Always
+ 
+ Same for audio playback

** Changed in: canonical-devices-system-image
Milestone: backlog => ww08-2016

** Changed in: bluez (Ubuntu)
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
   Importance: Medium => High

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

Title:
  The bluetooth headset can not control the media playback

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  In Progress
Status in media-hub package in Ubuntu:
  Invalid
Status in media-hub package in Ubuntu RTM:
  Invalid

Bug description:
  [Preconditions]
  1.The DUT pair with bluetooth headset

  [Procedures]
  1.Play a video using the mediaplayer-app
  2.Play/pause video by bluetooth headset

  [Expect results]
  The bluetooth headset can play/pause video
  [Actual results]
  The bluetooth headset can not control the video playback.

  [Reproduce]
  Always

  Same for audio playback

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1398193/+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 573740] Re: [HDA-Intel - HDA Intel] Microphone stops responding after logout

2016-01-28 Thread dino99
There is no support for deprecated version having died a long time ago

** Changed in: alsa-driver (Ubuntu)
   Status: New => Invalid

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

Title:
  [HDA-Intel - HDA Intel] Microphone stops responding after logout

Status in alsa-driver package in Ubuntu:
  Invalid

Bug description:
  When I boot into the system, the microphone works properly. But if I
  logout and then login again, the microphone stops working. When I go
  to sound preferences I don't see the horizontal sound level for
  "input" moving at all even when I change the input volume to maximum.
  I can hear only noise (white noise) if I try to record my voice.

  ProblemType: Bug
  DistroRelease: Ubuntu 10.04
  Package: alsa-base 1.0.22.1+dfsg-0ubuntu3
  ProcVersionSignature: Ubuntu 2.6.32-21.32-generic 2.6.32.11+drm33.2
  Uname: Linux 2.6.32-21-generic i686
  AlsaVersion: Advanced Linux Sound Architecture Driver Version 1.0.21.
  Architecture: i386
  AudioDevicesInUse:
   USERPID ACCESS COMMAND
   /dev/snd/controlC0:  nishoo 1267 F pulseaudio
  Card0.Amixer.info:
   Card hw:0 'Intel'/'HDA Intel at 0xe128 irq 16'
 Mixer name : 'Realtek ALC662 rev1'
 Components : 'HDA:10ec0662,1458a002,00100101'
 Controls  : 36
 Simple ctrls  : 19
  Date: Sun May  2 20:24:34 2010
  InstallationMedia: Ubuntu 9.10 "Karmic Koala" - Release i386 (20091028.5)
  PackageArchitecture: all
  ProcEnviron:
   LANG=en_IN
   SHELL=/bin/bash
  SelectedCard: 0 Intel HDA-Intel - HDA Intel
  SourcePackage: alsa-driver
  Symptom: audio
  Title: [HDA-Intel - HDA Intel] Recording problem
  dmi.bios.date: 01/02/2008
  dmi.bios.vendor: Award Software International, Inc.
  dmi.bios.version: F4
  dmi.board.name: G31M-S2L
  dmi.board.vendor: Gigabyte Technology Co., Ltd.
  dmi.chassis.type: 3
  dmi.chassis.vendor: Gigabyte Technology Co., Ltd.
  dmi.modalias: 
dmi:bvnAwardSoftwareInternational,Inc.:bvrF4:bd01/02/2008:svnGigabyteTechnologyCo.,Ltd.:pnG31M-S2L:pvr:rvnGigabyteTechnologyCo.,Ltd.:rnG31M-S2L:rvr:cvnGigabyteTechnologyCo.,Ltd.:ct3:cvr:
  dmi.product.name: G31M-S2L
  dmi.sys.vendor: Gigabyte Technology Co., Ltd.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/alsa-driver/+bug/573740/+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 1539068] Re: My Music scope no longer shows "get started!"

2016-01-28 Thread Pat McGowan
** Tags added: regression-release

** Changed in: canonical-devices-system-image
   Importance: Undecided => Critical

** Changed in: canonical-devices-system-image
   Status: New => In Progress

** Changed in: canonical-devices-system-image
Milestone: None => ww04-2016

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Alejandro J. Cura (alecu)

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

Title:
  My Music scope no longer shows "get started!"

Status in Canonical System Image:
  In Progress
Status in unity-scope-mediascanner package in Ubuntu:
  In Progress

Bug description:
  The My Music scope no longer shows the "get started!" splash screen.
  The "My Videos" scope still seems to work though.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539068/+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 1413818] Re: Notification sounds aren't being played back on E4.5 (ubuntu-push restricts directories and block custom sounds)

2016-01-28 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Released => In Progress

** Changed in: canonical-devices-system-image
Milestone: ww02-2016 => ww08-2016

** Changed in: canonical-devices-system-image
 Assignee: Bill Filler (bfiller) => Yuan-Chen Cheng (ycheng-twn)

** Changed in: ubuntu-touch-session (Ubuntu)
 Assignee: (unassigned) => Penk Chen (penk)

** Changed in: ubuntu-touch-session (Ubuntu)
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
   Importance: High => Critical

** Changed in: ubuntu-touch-session (Ubuntu)
   Importance: High => Critical

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

Title:
  Notification sounds aren't being played back on E4.5 (ubuntu-push
  restricts directories and block custom sounds)

Status in Canonical System Image:
  In Progress
Status in The Savilerow project:
  Confirmed
Status in ubuntu-push package in Ubuntu:
  Fix Committed
Status in ubuntu-touch-session package in Ubuntu:
  Confirmed

Bug description:
  This affects mostly the push notifications based alerts, SMS et.al.
  work fine.

  With export PULSE_PROP='media.role=alert'

  This has no audible output: paplay 
/usr/share/sounds/ubuntu/notifications/Slick.ogg
  This does:  paplay /usr/share/sounds/ubuntu/ringtones/Soul.ogg

  $ system-image-cli -i
  current build number: 14
  device name: mako
  channel: ubuntu-touch/stable
  alias: ubuntu-touch/ubuntu-rtm/14.09
  last update: 2015-01-16 13:12:29
  version version: 14
  version ubuntu: 20150116
  version device: 20141119
  version custom: mako-1.1

  The hunch is some buffering going on on the android side for short
  sound bytes.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1413818/+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 1491340] Re: Bluetooth keyboard is configured with wrong keyboard layout

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/qtmir/kbdLayout

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

Title:
  Bluetooth keyboard is configured with wrong keyboard layout

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in bluez package in Ubuntu:
  Invalid
Status in ubuntu-system-settings package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Phone: Meizu MX4 (15.04 r4)
  OS Language: German

  What you expected to happen:
  When connecting a Bluetooth keyboard I expect that the keyboard layout is the 
same as the keyboard hardware key layout (German) or that it is possible to 
change the keyboard layout in the Bluetooth setting for the connected Bluetooth 
device.

  What happened instead:
  The Bluetooth keyboard worked, but wasn't set to German key layout. In the 
Bluetooth device setting I couldn't find any option to change the Bluetooth 
keyboard key layout.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1491340/+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 1534776] Re: Notification sounds cause multimedia to pause

2016-01-28 Thread Albert Astals Cid
The problem here is that we can not use MediaPlayer.alert since it has
never really worked, see https://bugreports.qt.io/browse/QTBUG-46758
that shows that lowercase enums just do not work.

I guess prior to OTA9 this worked because the media-hub was less picky
about stopping one audio while playing another.

My suggested fix is that we add the uppercase variants of the enums in
src/imports/multimedia/qdeclarativeaudio_p.h of qtmultimedia-opensource-
src-5.4.1and then we can fix unity8 to use MediaPlayer.Alert.

I have tried that on my phone locally and fixes the issue (though it
won't fix any other place that was trying to use MediaPlayer.alert).

Is this a valid solution?

-- 
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/1534776

Title:
  Notification sounds cause multimedia to pause

Status in Canonical System Image:
  In Progress
Status in media-hub package in Ubuntu:
  Invalid
Status in qtubuntu-media package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Screenshot audio is not using alert role causing music to stop

  What happened:
  1) Open the music-app and play some music
  2) Take a screenshot
  3) Notice when the audio plays that the music stops

  What was expected to happen:
  At step 3 for the music to 'duck' while the alert is being played and then 
continue afterwards

  It looks like the role is being attempted to be set here [0] but
  doesn't appear to be working

  $ system-image-cli -i
  current build number: 210
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2016-01-14 12:05:49
  version version: 210
  version ubuntu: 20160114
  version device: 20160112
  version custom: mako-1.1

  0 - http://bazaar.launchpad.net/~unity-
  team/unity8/trunk/view/head:/qml/Components/NotificationAudio.qml

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1534776/+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 1539176] Re: highlighting of selected item not visible with external monitor

2016-01-28 Thread Bill Filler
** Attachment added: "IMG_0360.JPG"
   
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1539176/+attachment/4558476/+files/IMG_0360.JPG

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

Title:
  highlighting of selected item not visible with external monitor

Status in Canonical System Image:
  Confirmed
Status in canonical-pocket-desktop:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  On certain pages (History, New Tab) with an external monitor and
  keyboard connected, the highlighting of the items is really not
  distinguishable and don't appear to be working using keyboard
  shortcuts and keys (i.e. arrow keys) to navigate.

  Specifically:

  History View:
  - highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
  - highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

  New Tab View:
  - Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
  - Bookmarks section: both columns currently change text color of selected 
items so this makes them distinguishable. We should make this consistent with 
the History View whatever we decide for that.

  Attached are screenshots on my monitor with items selected. On History
  View, the first item on "Today" is selected and on Top Sites the "MP4
  Files" is selected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539176/+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 1539176] Re: highlighting of selected item not visible with external monitor

2016-01-28 Thread Bill Filler
** Attachment added: "IMG_0362.JPG"
   
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1539176/+attachment/4558477/+files/IMG_0362.JPG

** Also affects: canonical-pocket-desktop
   Importance: Undecided
   Status: New

** Changed in: canonical-devices-system-image
Milestone: None => ww04-2016

** Changed in: webbrowser-app (Ubuntu)
 Assignee: (unassigned) => Olivier Tilloy (osomon)

** Changed in: webbrowser-app (Ubuntu)
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Bill Filler (bfiller)

** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

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

** Changed in: canonical-devices-system-image
   Status: New => Confirmed

** Changed in: canonical-pocket-desktop
 Assignee: (unassigned) => Bill Filler (bfiller)

** Changed in: canonical-pocket-desktop
   Importance: Undecided => Medium

** Changed in: canonical-pocket-desktop
   Status: New => Confirmed

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

Title:
  highlighting of selected item not visible with external monitor

Status in Canonical System Image:
  Confirmed
Status in canonical-pocket-desktop:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  On certain pages (History, New Tab) with an external monitor and
  keyboard connected, the highlighting of the items is really not
  distinguishable and don't appear to be working using keyboard
  shortcuts and keys (i.e. arrow keys) to navigate.

  Specifically:

  History View:
  - highlighting of history entries in right hand column need to be 
darker/different color/more contrast, and/or change the color of the 
highlighted text
  - highlighting of entries in left hand column should match, although the 
highlighted text currently changes color to orange so that makes it obvious

  New Tab View:
  - Top Sites section: Can't tell at all which of the thumbnails previews is 
highlighted, this needs to be made more obvious
  - Bookmarks section: both columns currently change text color of selected 
items so this makes them distinguishable. We should make this consistent with 
the History View whatever we decide for that.

  Attached are screenshots on my monitor with items selected. On History
  View, the first item on "Today" is selected and on Top Sites the "MP4
  Files" is selected.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1539176/+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 1524400] Re: Use default keymap on creation of surface

2016-01-28 Thread Lukáš Tinkl
** Branch linked: lp:~lukas-kde/qtmir/kbdLayout

-- 
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/1524400

Title:
  Use default keymap on creation of surface

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in qtmir package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Keymaps should be configurable pr surface or for all surfaces. This
  bug tracks implementation of the latter.

  Determining what keymap to use
  Input sources (InputSources) is an array of dicts on the 
org.freedesktop.Accounts.User interface, which is on the system bus. This holds 
all the user chosen keymaps. If empty, it indicates en_us. It is on the system 
bus so that the greeter can determine what keymap to use.

  If keymaps > 1, the default keymap for all surfaces will be the first
  applicable keymap.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1524400/+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 1522157] Re: the Icelandic key-board is random

2016-01-28 Thread Michael Sheldon
Hi Tryggvi,

 Sorry about this, I think for the default layouts for languages we
should stick to the most common/traditional layout, currently the
keyboard is a bit restricted in terms of alternative layouts as the
plugin infrastructure is based primarily around having a single layout
per language code, however we're working on making it possible for users
to create their own layouts and distribute them as click packages which
would seem to be the ideal mechanism for more experimental layouts like
this.

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

Title:
  the Icelandic key-board is random

Status in Canonical System Image:
  Fix Released
Status in ubuntu-keyboard package in Ubuntu:
  Fix Released

Bug description:
  I was going to use the icelandic version of  the keyboard but it is unusable. 
 The letter are in random places.
  It would be great if this could be fixed and I would love to give an opinion 
if needed about the layout.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1522157/+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 1539191] [NEW] dont know

2016-01-28 Thread velena
Public bug reported:

dont know

ProblemType: Bug
DistroRelease: Ubuntu 14.04
Package: xorg 1:7.7+1ubuntu8.1
ProcVersionSignature: Ubuntu 3.19.0-43.49~14.04.1-generic 3.19.8-ckt10
Uname: Linux 3.19.0-43-generic x86_64
.tmp.unity.support.test.0:
 
ApportVersion: 2.14.1-0ubuntu3.19
Architecture: amd64
CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
CompositorRunning: compiz
CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
CompositorUnredirectFSW: true
Date: Thu Jan 28 11:40:41 2016
DistUpgraded: Fresh install
DistroCodename: trusty
DistroVariant: ubuntu
ExtraDebuggingInterest: Yes, if not too technical
GraphicsCard:
 Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 0e) (prog-if 00 [VGA controller])
   Subsystem: Hewlett-Packard Company Device [103c:21de]
InstallationDate: Installed on 2015-09-17 (132 days ago)
InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
MachineType: Hewlett-Packard HP 15 Notebook PC
ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-43-generic.efi.signed 
root=UUID=74586b3c-8bea-45c8-a91f-926d7e7f0265 ro drm.debug=0xe plymouth:debug
SourcePackage: xorg
UpgradeStatus: No upgrade log present (probably fresh install)
dmi.bios.date: 10/30/2014
dmi.bios.vendor: Insyde
dmi.bios.version: F.12
dmi.board.asset.tag: Type2 - Board Asset Tag
dmi.board.name: 233F
dmi.board.vendor: Hewlett-Packard
dmi.board.version: 06.13
dmi.chassis.asset.tag: Chassis Asset Tag
dmi.chassis.type: 10
dmi.chassis.vendor: Hewlett-Packard
dmi.chassis.version: Chassis Version
dmi.modalias: 
dmi:bvnInsyde:bvrF.12:bd10/30/2014:svnHewlett-Packard:pnHP15NotebookPC:pvr096A13405F00050660180:rvnHewlett-Packard:rn233F:rvr06.13:cvnHewlett-Packard:ct10:cvrChassisVersion:
dmi.product.name: HP 15 Notebook PC
dmi.product.version: 096A13405F00050660180
dmi.sys.vendor: Hewlett-Packard
version.compiz: compiz 1:0.9.11.3+14.04.20150313-0ubuntu1
version.ia32-libs: ia32-libs N/A
version.libdrm2: libdrm2 2.4.64-1~ubuntu14.04.1
version.libgl1-mesa-dri: libgl1-mesa-dri N/A
version.libgl1-mesa-dri-experimental: libgl1-mesa-dri-experimental N/A
version.libgl1-mesa-glx: libgl1-mesa-glx N/A
version.xserver-xorg-core: xserver-xorg-core N/A
version.xserver-xorg-input-evdev: xserver-xorg-input-evdev N/A
version.xserver-xorg-video-ati: xserver-xorg-video-ati N/A
version.xserver-xorg-video-intel: xserver-xorg-video-intel N/A
version.xserver-xorg-video-nouveau: xserver-xorg-video-nouveau N/A
xserver.bootTime: Thu Jan 28 11:35:15 2016
xserver.configfile: default
xserver.errors:
 
xserver.logfile: /var/log/Xorg.0.log
xserver.outputs:
 product id5547 
 vendor CMN
xserver.version: 2:1.17.1-0ubuntu3~trusty1

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


** Tags: amd64 apport-bug compiz-0.9 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/1539191

Title:
  dont know

Status in xorg package in Ubuntu:
  New

Bug description:
  dont know

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: xorg 1:7.7+1ubuntu8.1
  ProcVersionSignature: Ubuntu 3.19.0-43.49~14.04.1-generic 3.19.8-ckt10
  Uname: Linux 3.19.0-43-generic x86_64
  .tmp.unity.support.test.0:
   
  ApportVersion: 2.14.1-0ubuntu3.19
  Architecture: amd64
  CompizPlugins: No value set for 
`/apps/compiz-1/general/screen0/options/active_plugins'
  CompositorRunning: compiz
  CompositorUnredirectDriverBlacklist: '(nouveau|Intel).*Mesa 8.0'
  CompositorUnredirectFSW: true
  Date: Thu Jan 28 11:40:41 2016
  DistUpgraded: Fresh install
  DistroCodename: trusty
  DistroVariant: ubuntu
  ExtraDebuggingInterest: Yes, if not too technical
  GraphicsCard:
   Intel Corporation Atom Processor Z36xxx/Z37xxx Series Graphics & Display 
[8086:0f31] (rev 0e) (prog-if 00 [VGA controller])
 Subsystem: Hewlett-Packard Company Device [103c:21de]
  InstallationDate: Installed on 2015-09-17 (132 days ago)
  InstallationMedia: Ubuntu 14.04.3 LTS "Trusty Tahr" - Beta amd64 (20150805)
  MachineType: Hewlett-Packard HP 15 Notebook PC
  ProcKernelCmdLine: BOOT_IMAGE=/boot/vmlinuz-3.19.0-43-generic.efi.signed 
root=UUID=74586b3c-8bea-45c8-a91f-926d7e7f0265 ro drm.debug=0xe plymouth:debug
  SourcePackage: xorg
  UpgradeStatus: No upgrade log present (probably fresh install)
  dmi.bios.date: 10/30/2014
  dmi.bios.vendor: Insyde
  dmi.bios.version: F.12
  dmi.board.asset.tag: Type2 - Board Asset Tag
  dmi.board.name: 233F
  dmi.board.vendor: Hewlett-Packard
  dmi.board.version: 06.13
  dmi.chassis.asset.tag: Chassis Asset Tag
  dmi.chassis.type: 10
  dmi.chassis.vendor: Hewlett-Packard
  dmi.chassis.version: Chassis Version
  dmi.modalias: 

[Touch-packages] [Bug 1539195] [NEW] adjust wait-for-root to deprecated udev API

2016-01-28 Thread Martin Pitt
Public bug reported:

https://github.com/systemd/systemd/commit/9ea28c55a248 deprecated
udev_queue_get_queued_list_entry() which now just returns NULL. So this
part of w-f-r is now just a no-op. Investigate the particular impact of
that (at first sight: should be none, just rip out the dead code), and
port to current API.

** Affects: initramfs-tools (Ubuntu)
 Importance: Low
 Assignee: Martin Pitt (pitti)
 Status: Triaged

** Changed in: initramfs-tools (Ubuntu)
   Status: New => Triaged

** Changed in: initramfs-tools (Ubuntu)
   Importance: Undecided => Low

** Changed in: initramfs-tools (Ubuntu)
 Assignee: (unassigned) => Martin Pitt (pitti)

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

Title:
  adjust wait-for-root to deprecated udev API

Status in initramfs-tools package in Ubuntu:
  Triaged

Bug description:
  https://github.com/systemd/systemd/commit/9ea28c55a248 deprecated
  udev_queue_get_queued_list_entry() which now just returns NULL. So
  this part of w-f-r is now just a no-op. Investigate the particular
  impact of that (at first sight: should be none, just rip out the dead
  code), and port to current API.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/initramfs-tools/+bug/1539195/+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 1524400] Re: Use default keymap on creation of surface

2016-01-28 Thread Jonas G. Drange
** Changed in: ubuntu-system-settings (Ubuntu)
   Status: New => In Progress

** Changed in: ubuntu-system-settings (Ubuntu)
 Assignee: (unassigned) => Jonas G. Drange (jonas-drange)

** Branch linked: lp:~jonas-drange/ubuntu-system-
settings/hwKeyboardMinimal

-- 
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/1524400

Title:
  Use default keymap on creation of surface

Status in The Avila project:
  In Progress
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  In Progress
Status in qtmir package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Keymaps should be configurable pr surface or for all surfaces. This
  bug tracks implementation of the latter.

  Determining what keymap to use
  Input sources (InputSources) is an array of dicts on the 
org.freedesktop.Accounts.User interface, which is on the system bus. This holds 
all the user chosen keymaps. If empty, it indicates en_us. It is on the system 
bus so that the greeter can determine what keymap to use.

  If keymaps > 1, the default keymap for all surfaces will be the first
  applicable keymap.

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1524400/+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 1534776] Re: Notification sounds cause multimedia to pause

2016-01-28 Thread Michał Sawicz
I propose that we backport the new roles to vivid instead, this way we
do it once and forget about it.

** Changed in: unity8 (Ubuntu)
   Status: In Progress => Won't Fix

** Changed in: unity8 (Ubuntu)
 Assignee: Albert Astals Cid (aacid) => (unassigned)

** Changed in: unity8 (Ubuntu)
   Importance: Critical => Undecided

** Also affects: qtmultimedia-opensource-src (Ubuntu)
   Importance: Undecided
   Status: New

** Changed in: qtmultimedia-opensource-src (Ubuntu)
   Status: New => Confirmed

** Changed in: qtmultimedia-opensource-src (Ubuntu)
   Importance: Undecided => Critical

** Changed in: qtmultimedia-opensource-src (Ubuntu)
   Status: Confirmed => Triaged

** Changed in: qtmultimedia-opensource-src (Ubuntu)
 Assignee: (unassigned) => Albert Astals Cid (aacid)

-- 
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/1534776

Title:
  Notification sounds cause multimedia to pause

Status in Canonical System Image:
  In Progress
Status in media-hub package in Ubuntu:
  Triaged
Status in qtmultimedia-opensource-src package in Ubuntu:
  Triaged
Status in qtubuntu-media package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Won't Fix
Status in media-hub package in Ubuntu RTM:
  Triaged

Bug description:
  Screenshot audio is not using alert role causing music to stop

  What happened:
  1) Open the music-app and play some music
  2) Take a screenshot
  3) Notice when the audio plays that the music stops

  What was expected to happen:
  At step 3 for the music to 'duck' while the alert is being played and then 
continue afterwards

  It looks like the role is being attempted to be set here [0] but
  doesn't appear to be working

  $ system-image-cli -i
  current build number: 210
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2016-01-14 12:05:49
  version version: 210
  version ubuntu: 20160114
  version device: 20160112
  version custom: mako-1.1

  0 - http://bazaar.launchpad.net/~unity-
  team/unity8/trunk/view/head:/qml/Components/NotificationAudio.qml

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1534776/+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 1524901] Re: When an application starts there is temporarily a white gap at the top

2016-01-28 Thread Tim Peeters
Please provide a small test program to reproduce the bug

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: In Progress => Incomplete

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

Title:
  When an application starts there is temporarily a white gap at the top

Status in Canonical System Image:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Incomplete

Bug description:
  When an application starts there is temporarily a white gap at the
  top, note I think this has started happening on the rc-proposed
  channel since around when OTA8 was released.

  This is seen with apps using v1.3 of the uitk
  The symptom varies depending on the app, some jump up (contacts) some jump 
down (messaging) as they initially display. 

  What happened:
  1) Launch an application such as Music, dekko, messaging app
  2) As it is launched watch the very top
  3) Notice that for a few frames there is a white box that pushes all of the 
content down (most visible on music due to black app colour)

  What was expected to happen:
  At step 3 for there to be no white box at the top of the app on startup

  $ system-image-cli -i
  current build number: 184
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-12-10 15:02:28
  version version: 184
  version ubuntu: 20151210.1
  version device: 20150911
  version custom: mako-1.1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1524901/+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 1442216] Re: Cannot call numbers received in SMS

2016-01-28 Thread Bartosz Kosiorek
** Changed in: messaging-app (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  Cannot call numbers received in SMS

Status in messaging-app package in Ubuntu:
  Fix Released

Bug description:
  Some SMS contain numbers of sufficient length that are obvious phone numbers 
(some even start from the + sign) but cannot be called from the application. 
They should be clickable, same way as URLs, which are recognized correctly. Or 
even better, Messaging app should search for possible owners of these numbers 
in Contacts app and give choice: open contact or call the number. There are two 
well known scenarios involving sending phone numbers through SMS:
  1. A person sending a number to another person (a "mutual friend")
  2. Carrier notification about a missed call.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/messaging-app/+bug/1442216/+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 1534776] Re: Notification sounds cause multimedia to pause

2016-01-28 Thread Jim Hodapp
** Changed in: media-hub (Ubuntu)
   Status: Invalid => Triaged

** Changed in: media-hub (Ubuntu)
   Importance: Undecided => Critical

** Also affects: media-hub (Ubuntu RTM)
   Importance: Undecided
   Status: New

** Changed in: media-hub (Ubuntu RTM)
   Status: New => Triaged

** Changed in: media-hub (Ubuntu RTM)
   Importance: Undecided => Critical

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

Title:
  Notification sounds cause multimedia to pause

Status in Canonical System Image:
  In Progress
Status in media-hub package in Ubuntu:
  Triaged
Status in qtmultimedia-opensource-src package in Ubuntu:
  Triaged
Status in qtubuntu-media package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Won't Fix
Status in media-hub package in Ubuntu RTM:
  Triaged

Bug description:
  Screenshot audio is not using alert role causing music to stop

  What happened:
  1) Open the music-app and play some music
  2) Take a screenshot
  3) Notice when the audio plays that the music stops

  What was expected to happen:
  At step 3 for the music to 'duck' while the alert is being played and then 
continue afterwards

  It looks like the role is being attempted to be set here [0] but
  doesn't appear to be working

  $ system-image-cli -i
  current build number: 210
  device name: mako
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2016-01-14 12:05:49
  version version: 210
  version ubuntu: 20160114
  version device: 20160112
  version custom: mako-1.1

  0 - http://bazaar.launchpad.net/~unity-
  team/unity8/trunk/view/head:/qml/Components/NotificationAudio.qml

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1534776/+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 1514943] Re: The battery indicator shows always full on the car handsfree display

2016-01-28 Thread Javier Garcia
Solved on OTA 9

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

Title:
  The battery indicator shows always full on the car handsfree display

Status in bluetooth-touch package in Ubuntu:
  New

Bug description:
  On my VW car handsfree display, when my ubuntu phone is paired, the
  battery indicator shows always full (at any state of charge).

  I am using my Aquaris E4.5 with Ubuntu 15.04 (r26)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/bluetooth-touch/+bug/1514943/+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 1537132] Re: Result activation should wiggle scope progess bar

2016-01-28 Thread Alejandro J. Cura
** Changed in: unity-scopes-shell (Ubuntu)
 Assignee: (unassigned) => Pawel Stolowski (stolowski)

** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

** Changed in: canonical-devices-system-image
   Importance: Undecided => High

** Changed in: unity-scopes-shell (Ubuntu)
   Importance: Undecided => High

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => Alejandro J. Cura (alecu)

** Changed in: canonical-devices-system-image
Milestone: None => ww08-2016

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

Title:
  Result activation should wiggle scope progess bar

Status in Canonical System Image:
  New
Status in The Savilerow project:
  Triaged
Status in unity-scopes-shell package in Ubuntu:
  Confirmed

Bug description:
  Dropbox photos scope uses result activation for various things.

  User taps a result, and activate code runs, then Preview shows (for
  example)

  Problem: After the tap and before the Preview displays, there is no
  feedback to the user that anything is happening.

  Running activate should automatically wiggle the scope progress bar.

  Perhaps an api to opt out of that (don't wiggle) to support
  appropriate cases.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1537132/+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 1535397] Re: [enhancement] Implement support for QWindow::visibility set to Automatic

2016-01-28 Thread Bill Filler
** Changed in: camera-app (Ubuntu)
   Importance: Undecided => High

** Changed in: camera-app (Ubuntu)
   Status: New => In Progress

** Changed in: camera-app (Ubuntu)
 Assignee: (unassigned) => Florian Boucault (fboucault)

** Changed in: gallery-app (Ubuntu)
   Importance: Undecided => High

** Changed in: gallery-app (Ubuntu)
   Status: New => In Progress

** Changed in: gallery-app (Ubuntu)
 Assignee: (unassigned) => Arthur Mello (artmello)

** Changed in: mediaplayer-app (Ubuntu)
   Importance: Undecided => High

** Changed in: mediaplayer-app (Ubuntu)
   Status: New => In Progress

** Changed in: mediaplayer-app (Ubuntu)
 Assignee: (unassigned) => Renato Araujo Oliveira Filho (renatofilho)

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

Title:
  [enhancement] Implement support for QWindow::visibility set to
  Automatic

Status in The Avila project:
  New
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  New
Status in Mir:
  Fix Committed
Status in QtMir:
  In Progress
Status in camera-app package in Ubuntu:
  In Progress
Status in gallery-app package in Ubuntu:
  In Progress
Status in mediaplayer-app package in Ubuntu:
  In Progress
Status in mir package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  We need to support windows setting their visibility to "Automatic",
  when in Staged mode the window should be fullscreen, whereas in
  windowed, it should be a normal window.

  Qt API: http://doc.qt.io/qt-5/qwindow.html#Visibility-enum

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1535397/+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 1415701] Re: apt is unable to handle CDROMS with default mount option

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

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

-- 
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/1415701

Title:
  apt is unable to handle CDROMS with default mount option

Status in apt package in Ubuntu:
  Confirmed

Bug description:
  I have found i am almost completely unable to use CDROM as an apt
  repository on Ubuntu 14.04

  
  I found the command apt-cdrom add by default, was unable to detect CDROMs
  it was attempting to find them in /media/cdrom/
  by default ubuntu now seems to mount cds in /media/$USER/ and this is not 
something set via fstab 
  i was able to get them to add with the command 
  apt-cdrom add -m --cdrom /media/$USER/

  I seem to have been able to pull the package list from the CD, but when it 
comes to installing from it, apt encounters a similar error
  it ask you to insert the disc in drive /media/cdrom/ again


  I also am completely unable to add cds via the software & updates
  setting manager, it always fails to find the cd, which is presumably
  part of the same issue.

  
  manually remounting with 
  sudo mount /dev/cdrom /media/cdrom 
  get some things to work, but most of the actions trigger a remount which goes 
back to the default location


  I was finally able to get things working again properly by adding the fstab  
line 
  /dev/cdrom  /media/cdrom  udf,iso9660  user,noauto,exec,utf8  0  0
  resolves the problem for me
  but this is a work around not a fix, it may break other stuff

  
  In apt conf i have tried setting 
  Acquire::cdrom::mount "file/path/";
  with various file paths, the file paths, to try and make it work with the 
default mount behaviour,this looked to be the right setting to change as the 
message changed accordingly to what i was setting, but i could not get it to 
work  for actually installing packages, even by setting an absolute file path 
for my user in the media directory.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1415701/+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 1415701] Re: apt is unable to handle CDROMS with default mount option

2016-01-28 Thread Brian Murray
** Changed in: apt (Ubuntu)
   Importance: Undecided => Medium

** Tags added: rls-x-incoming xenial

-- 
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/1415701

Title:
  apt is unable to handle CDROMS with default mount option

Status in apt package in Ubuntu:
  Confirmed

Bug description:
  I have found i am almost completely unable to use CDROM as an apt
  repository on Ubuntu 14.04

  
  I found the command apt-cdrom add by default, was unable to detect CDROMs
  it was attempting to find them in /media/cdrom/
  by default ubuntu now seems to mount cds in /media/$USER/ and this is not 
something set via fstab 
  i was able to get them to add with the command 
  apt-cdrom add -m --cdrom /media/$USER/

  I seem to have been able to pull the package list from the CD, but when it 
comes to installing from it, apt encounters a similar error
  it ask you to insert the disc in drive /media/cdrom/ again


  I also am completely unable to add cds via the software & updates
  setting manager, it always fails to find the cd, which is presumably
  part of the same issue.

  
  manually remounting with 
  sudo mount /dev/cdrom /media/cdrom 
  get some things to work, but most of the actions trigger a remount which goes 
back to the default location


  I was finally able to get things working again properly by adding the fstab  
line 
  /dev/cdrom  /media/cdrom  udf,iso9660  user,noauto,exec,utf8  0  0
  resolves the problem for me
  but this is a work around not a fix, it may break other stuff

  
  In apt conf i have tried setting 
  Acquire::cdrom::mount "file/path/";
  with various file paths, the file paths, to try and make it work with the 
default mount behaviour,this looked to be the right setting to change as the 
message changed accordingly to what i was setting, but i could not get it to 
work  for actually installing packages, even by setting an absolute file path 
for my user in the media directory.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1415701/+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 1415701] Re: apt is unable to handle CDROMS with default mount option

2016-01-28 Thread Brian Murray
** Tags added: trusty utopic

-- 
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/1415701

Title:
  apt is unable to handle CDROMS with default mount option

Status in apt package in Ubuntu:
  Confirmed

Bug description:
  I have found i am almost completely unable to use CDROM as an apt
  repository on Ubuntu 14.04

  
  I found the command apt-cdrom add by default, was unable to detect CDROMs
  it was attempting to find them in /media/cdrom/
  by default ubuntu now seems to mount cds in /media/$USER/ and this is not 
something set via fstab 
  i was able to get them to add with the command 
  apt-cdrom add -m --cdrom /media/$USER/

  I seem to have been able to pull the package list from the CD, but when it 
comes to installing from it, apt encounters a similar error
  it ask you to insert the disc in drive /media/cdrom/ again


  I also am completely unable to add cds via the software & updates
  setting manager, it always fails to find the cd, which is presumably
  part of the same issue.

  
  manually remounting with 
  sudo mount /dev/cdrom /media/cdrom 
  get some things to work, but most of the actions trigger a remount which goes 
back to the default location


  I was finally able to get things working again properly by adding the fstab  
line 
  /dev/cdrom  /media/cdrom  udf,iso9660  user,noauto,exec,utf8  0  0
  resolves the problem for me
  but this is a work around not a fix, it may break other stuff

  
  In apt conf i have tried setting 
  Acquire::cdrom::mount "file/path/";
  with various file paths, the file paths, to try and make it work with the 
default mount behaviour,this looked to be the right setting to change as the 
message changed accordingly to what i was setting, but i could not get it to 
work  for actually installing packages, even by setting an absolute file path 
for my user in the media directory.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apt/+bug/1415701/+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 1507151] Update Released

2016-01-28 Thread Brian Murray
The verification of the Stable Release Update for sysvinit has completed
successfully and the package has now been released to -updates.
Subsequently, the Ubuntu Stable Release Updates Team is being
unsubscribed and will not receive messages about this bug report.  In
the event that you encounter a regression using the package from
-updates please report a new bug using ubuntu-bug and tag the bug report
regression-update so we can easily find any regressions.

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

Title:
  sysv-rc.postinst calls insserv by name, but insserv package does not
  provide the command in a bin directory

Status in sysvinit package in Ubuntu:
  Fix Released
Status in sysvinit source package in Wily:
  Fix Released

Bug description:
  Test Case
  -
  Perform a hokey upgrade from Trusty to Wily

  1) Modify /etc/apt/sources.list from trusty to wily
  2) Run apt-get update
  3) Try to install the wily version of sysv-rc

  With the current version of sysvinit the upgrade process will fail
  with messages like:

  Setting up sysv-rc (2.88dsf-59.2ubuntu2) ...^M
  info: Reordering boot system, log to /var/lib/insserv/run-20160122T1444.log^M
  error: Something failed while migrating.^M
  ^M
  error: Unable to migrate to dependency based boot sequencing.^M
  ^M
  See http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot for^M
  more information about dependency based boot sequencing. To^M

  With the version of the package in -proposed we should see no such
  error.

  --

  After update

  ProblemType: PackageDistroRelease: Ubuntu 15.10
  Package: sysv-rc 2.88dsf-59.2ubuntu2
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  ApportVersion: 2.19.1-0ubuntu2
  Architecture: amd64
  Date: Wed Oct 14 05:47:58 2015
  DuplicateSignature: package:sysv-rc:2.88dsf-59.2ubuntu2:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-10-14 (3 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu4
   apt  1.0.10.2ubuntu1SourcePackage: sysvinit
  Title: package sysv-rc 2.88dsf-59.2ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to wily on 2015-10-14 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sysvinit/+bug/1507151/+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 1507151] Re: sysv-rc.postinst calls insserv by name, but insserv package does not provide the command in a bin directory

2016-01-28 Thread Launchpad Bug Tracker
This bug was fixed in the package sysvinit - 2.88dsf-59.2ubuntu2.1

---
sysvinit (2.88dsf-59.2ubuntu2.1) wily; urgency=medium

  * Add /usr/lib/insserv/ to sysv-rc.postinst's PATH so that it can find
the insserv binary, since it is moved by the current Ubuntu delta in
the insserv package (LP: #1507151).

 -- Brian Murray   Mon, 25 Jan 2016 13:31:12 -0800

** Changed in: sysvinit (Ubuntu Wily)
   Status: Fix Committed => Fix Released

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

Title:
  sysv-rc.postinst calls insserv by name, but insserv package does not
  provide the command in a bin directory

Status in sysvinit package in Ubuntu:
  Fix Released
Status in sysvinit source package in Wily:
  Fix Released

Bug description:
  Test Case
  -
  Perform a hokey upgrade from Trusty to Wily

  1) Modify /etc/apt/sources.list from trusty to wily
  2) Run apt-get update
  3) Try to install the wily version of sysv-rc

  With the current version of sysvinit the upgrade process will fail
  with messages like:

  Setting up sysv-rc (2.88dsf-59.2ubuntu2) ...^M
  info: Reordering boot system, log to /var/lib/insserv/run-20160122T1444.log^M
  error: Something failed while migrating.^M
  ^M
  error: Unable to migrate to dependency based boot sequencing.^M
  ^M
  See http://wiki.debian.org/LSBInitScripts/DependencyBasedBoot for^M
  more information about dependency based boot sequencing. To^M

  With the version of the package in -proposed we should see no such
  error.

  --

  After update

  ProblemType: PackageDistroRelease: Ubuntu 15.10
  Package: sysv-rc 2.88dsf-59.2ubuntu2
  ProcVersionSignature: Ubuntu 4.2.0-16.19-generic 4.2.3
  Uname: Linux 4.2.0-16-generic x86_64
  ApportVersion: 2.19.1-0ubuntu2
  Architecture: amd64
  Date: Wed Oct 14 05:47:58 2015
  DuplicateSignature: package:sysv-rc:2.88dsf-59.2ubuntu2:subprocess installed 
post-installation script returned error exit status 1
  ErrorMessage: subprocess installed post-installation script returned error 
exit status 1
  InstallationDate: Installed on 2015-10-14 (3 days ago)
  InstallationMedia: Ubuntu 14.04 LTS "Trusty Tahr" - Release amd64 (20140417)
  PackageArchitecture: all
  RelatedPackageVersions:
   dpkg 1.18.2ubuntu4
   apt  1.0.10.2ubuntu1SourcePackage: sysvinit
  Title: package sysv-rc 2.88dsf-59.2ubuntu2 failed to install/upgrade: 
subprocess installed post-installation script returned error exit status 1
  UpgradeStatus: Upgraded to wily on 2015-10-14 (3 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/sysvinit/+bug/1507151/+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 1537782] Re: Need to use (Q)Shortcuts instead of Keys.onPressed for shortcuts

2016-01-28 Thread Olivier Tilloy
** Tags added: keyboard

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

Title:
  Need to use (Q)Shortcuts instead of Keys.onPressed for shortcuts

Status in Canonical System Image:
  New
Status in qtdeclarative-opensource-src package in Ubuntu:
  Invalid
Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  On a phone with a bluetooth keyboard connected, with the following
  standalone example, if I press Ctrl+T I expect the message "Ctrl+T
  pressed" to be printed on the console, but instead the Ctrl key is
  ignored and "t" is inserted in the text field.

  import QtQuick 2.4
  Item {
    TextInput {
  anchors.centerIn: parent
  width: parent.width - 20
  height: 100
  Component.onCompleted: forceActiveFocus()
    }
    Keys.onPressed: {
  console.log("key pressed:", event.key, event.modifiers)
  if (event.key == Qt.Key_T && event.modifiers == Qt.ControlModifier) {
    console.log("Ctrl+T pressed")
    event.accepted = true
  }
    }
  }

  =

  See the discussion on https://codereview.qt-project.org/#/c/147556/,
  Qt's behaviour is correct here.

  QShortcut [1], or QML's Shortcut [2] from qt-5.5 should be used for
  this instead.

  [1] http://doc.qt.io/qt-5/qshortcut.html
  [2] http://doc.qt.io/qt-5/qml-qtquick-shortcut.html

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1537782/+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 1539221] [NEW] Implement keyboard navigation in narrow views

2016-01-28 Thread Olivier Tilloy
Public bug reported:

Keyboard navigation is generally implemented in wide views (history
view, bookmarks view, new tab view), but not in their narrow
counterparts. With convergence becoming a serious focus, there is no
reason not to support e.g. a keyboard attached to a phone.

** Affects: webbrowser-app (Ubuntu)
 Importance: High
 Assignee: Olivier Tilloy (osomon)
 Status: Triaged


** Tags: keyboard

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

Title:
  Implement keyboard navigation in narrow views

Status in webbrowser-app package in Ubuntu:
  Triaged

Bug description:
  Keyboard navigation is generally implemented in wide views (history
  view, bookmarks view, new tab view), but not in their narrow
  counterparts. With convergence becoming a serious focus, there is no
  reason not to support e.g. a keyboard attached to a phone.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1539221/+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 1245986] Re: users should define wifi net preference, defaulting to heuristics

2016-01-28 Thread Bug Watch Updater
** Changed in: network-manager
   Status: Unknown => Confirmed

** Changed in: network-manager
   Importance: Unknown => Medium

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

Title:
  users should define wifi net preference, defaulting to heuristics

Status in NetworkManager:
  Confirmed
Status in network-manager package in Ubuntu:
  Triaged

Bug description:
  I'm at a hotel.  There's a strong network AP in this room that my org
  owns, and a weaker hotel wifi AP elsewhere.

  Before my org convened, I connected to the hotel wifi, so it's in the
  list of SSIDs that I automatically connect to.  I would rather connect
  to my org's wifi in almost all cases. But, that doesn't happen, and it
  connects to the unwanted hotel Wifi AP.  I should be able to order the
  SSIDs that I will automatically connect to my dragging them in the
  list and a lower network should never be used if a higher is
  available.

  So, in picking a network to connect to, we should try each in order of
  user-defined preference and abandon any that are below some threshold
  of usefulness.

  Additionally, if nothing more-preferred is available, pick among
  crypto'd networks, abandoning too weak.

  Then pick according to strength if everything else is equal.

  I describe best in code...

  order_of_preference = sorted(((net.user_defined_order if net.strength
  > epsilon else INFINITY), (0 if net.has_crypto else 1), net.strength,
  net) for net in network_list)

  net_to_use = order_of_preference[0][3]

  : "When
  reprioritization of networks has been implemented in NetworkManager,
  pressing on a network should make it draggable so that you can reorder
  the list (bug 1538972)."

  
  ProblemType: Bug
  DistroRelease: Ubuntu 13.10
  Package: network-manager 0.9.8.0-0ubuntu22
  ProcVersionSignature: Ubuntu 3.11.0-9.16-generic 3.11.2
  Uname: Linux 3.11.0-9-generic i686
  ApportVersion: 2.12.5-0ubuntu2.1
  Architecture: i386
  Date: Tue Oct 29 13:29:36 2013
  IpRoute:
   default via 10.155.32.1 dev wlan0  proto static
   10.155.32.0/19 dev wlan0  proto kernel  scope link  src 10.155.51.98  metric 
9
  MarkForUpload: True
  NetworkManager.state:
   [main]
   NetworkingEnabled=true
   WirelessEnabled=true
   WWANEnabled=true
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to saucy on 2009-03-27 (1677 days ago)
  WpaSupplicantLog:

  nmcli-dev:
   DEVICE TYPE  STATE DBUS-PATH
   wlan0  802-11-wireless   connected 
/org/freedesktop/NetworkManager/Devices/1
   eth0   802-3-ethernetunavailable   
/org/freedesktop/NetworkManager/Devices/0
  nmcli-nm:
   RUNNING VERSIONSTATE   NET-ENABLED   WIFI-HARDWARE   
WIFI   WWAN-HARDWARE   WWAN
   running 0.9.8.0connected   enabled   enabled 
enabledenabled disabled

To manage notifications about this bug go to:
https://bugs.launchpad.net/network-manager/+bug/1245986/+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 1462712] Re: Sony Vaio Pro webcam does not work in most of the apps with libjpeg-turbo8-1.3.0-0ubuntu2

2016-01-28 Thread Alessandro
*** This bug is a duplicate of bug 1295247 ***
https://bugs.launchpad.net/bugs/1295247

Hi, I found a workaround for this bug on my SVP1321C5E.

Opening cheese gives the exact same error: libv4l2: error got 4
consecutive frame decode errors, last error: v4l-convert: libjpeg error:
End Of Image.

I solved it by opening the preferences and changing the resolution for
pictures and videos: default was 1280x720, I changed both of them to
640x480. I then closed Cheese and opened it again, and everything was
working fine.

I haven't tested any other application (Skype, ...).

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

Title:
  Sony Vaio Pro webcam does not work in most of the apps with libjpeg-
  turbo8-1.3.0-0ubuntu2

Status in libjpeg-turbo package in Ubuntu:
  Confirmed

Bug description:
  I'm using Ubuntu 15.04.
  The version of libjpeg-turbo8 is 1.3.0-0ubuntu2.

  Expected:
  A video picture from the webcam.

  What happens instead:
  The output is just a garbled picture or sometimes the green screen.

  For example, cheese fails with:
  libv4l2: error got 4 consecutive frame decode errors, last error: 
v4l-convert: libjpeg error: End Of Image

  The webcam (ID 0bda:5793 Realtek Semiconductor Corp.) has MJPG as one
  of the formats.

  Most of the apps (cheese, google-chrome, etc.) don't allow to select
  other format for the webcam. Thus this webcam is unusable in those
  applications.

  This is fixed in libjpeg-turbo 1.4.

  Other relevant discussions:
  https://code.google.com/p/chromium/issues/detail?id=399939

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: libjpeg-turbo8 1.3.0-0ubuntu2
  ProcVersionSignature: Ubuntu 3.19.0-18.18-generic 3.19.6
  Uname: Linux 3.19.0-18-generic x86_64
  ApportVersion: 2.17.2-0ubuntu1.1
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Sun Jun  7 09:30:40 2015
  Dependencies:
   gcc-5-base 5.1~rc1-0ubuntu1
   libc6 2.21-0ubuntu4
   libgcc1 1:5.1~rc1-0ubuntu1
   multiarch-support 2.21-0ubuntu4
  InstallationDate: Installed on 2015-05-03 (34 days ago)
  InstallationMedia: Ubuntu 15.04 "Vivid Vervet" - Release amd64 (20150422)
  SourcePackage: libjpeg-turbo
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libjpeg-turbo/+bug/1462712/+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 1535397] Re: [enhancement] Implement support for QWindow::visibility set to Automatic

2016-01-28 Thread Renato Araujo Oliveira Filho
** Branch linked: lp:~renatofilho/mediaplayer-app/pocket-pc-full-screen

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

Title:
  [enhancement] Implement support for QWindow::visibility set to
  Automatic

Status in The Avila project:
  New
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  New
Status in Mir:
  Fix Committed
Status in QtMir:
  In Progress
Status in camera-app package in Ubuntu:
  In Progress
Status in gallery-app package in Ubuntu:
  In Progress
Status in mediaplayer-app package in Ubuntu:
  In Progress
Status in mir package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  We need to support windows setting their visibility to "Automatic",
  when in Staged mode the window should be fullscreen, whereas in
  windowed, it should be a normal window.

  Qt API: http://doc.qt.io/qt-5/qwindow.html#Visibility-enum

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1535397/+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 1535397] Re: [enhancement] Implement support for QWindow::visibility set to Automatic

2016-01-28 Thread Arthur Mello
** Branch linked: lp:~artmello/gallery-app/gallery-app-
convergence_fullscreen

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

Title:
  [enhancement] Implement support for QWindow::visibility set to
  Automatic

Status in The Avila project:
  New
Status in Canonical System Image:
  In Progress
Status in canonical-pocket-desktop:
  New
Status in Mir:
  Fix Committed
Status in QtMir:
  In Progress
Status in camera-app package in Ubuntu:
  In Progress
Status in gallery-app package in Ubuntu:
  In Progress
Status in mediaplayer-app package in Ubuntu:
  In Progress
Status in mir package in Ubuntu:
  New
Status in qtubuntu package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  We need to support windows setting their visibility to "Automatic",
  when in Staged mode the window should be fullscreen, whereas in
  windowed, it should be a normal window.

  Qt API: http://doc.qt.io/qt-5/qwindow.html#Visibility-enum

To manage notifications about this bug go to:
https://bugs.launchpad.net/avila/+bug/1535397/+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 1499819] Re: Add keyboard shortcut for alt+# tab switching

2016-01-28 Thread Olivier Tilloy
** Tags added: keyboard

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

Title:
  Add keyboard shortcut for alt+# tab switching

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  Add keyboard shortcuts to go directly to a tab by number, like Chrome
  and Firefox do

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1499819/+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 1507468] Re: [desktop] Modal dialogs don’t inhibit keyboard shortcuts

2016-01-28 Thread Olivier Tilloy
** Tags added: keyboard

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

Title:
  [desktop] Modal dialogs don’t inhibit keyboard shortcuts

Status in webbrowser-app package in Ubuntu:
  Triaged

Bug description:
  Steps to reproduce:

   - browse to e.g. http://html5demos.com/geo
   - wait for the modal dialog that asks for permission to access your location 
to show up
   - run a few keyboard shortcuts, like Ctrl+Tab, Ctrl+T, Ctrl+F, …

  Expected result: most keyboard shortcuts don’t have any effect, as the
  dialog is modal and prevents them (Ctrl+W/Ctrl+F4 should probably be
  an exception, it’s ok to request closing the current tab)

  Current result: all keyboard shortcuts work, so one can easily escape
  the current tab while still having the modal dialog in the foreground.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1507468/+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   >