[Touch-packages] [Bug 1479250] Re: unity8 process using CPU when the phone is idle

2015-08-31 Thread Daniel van Vugt
** Tags added: phone

** Tags removed: phone
** Tags added: phablet

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

Title:
  unity8 process using CPU when the phone is idle

Status in QtMir:
  New
Status in The Ubuntu Power Consumption Project:
  New
Status in qtmir package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  top reports the unity8 process is consuming about 1% CPU even when the
  phone is idle (screen on):

  11688 phablet   20   0  482184 101352  44872 S  1.0  5.4   0:37.10
  unity8

  This makes unity8 the top consumer of CPU. 1% on modern CPUs like you
  find in phones is actually a very large amount of work going on (~10
  million clock ticks spent executing instructions per second on a 1GHz
  core).

  $ system-image-cli -i
  current build number: 272
  device name: mako
  channel: ubuntu-touch/devel-proposed/ubuntu
  last update: 2015-07-29 05:53:01
  version version: 272
  version ubuntu: 20150729
  version device: 20150708
  version custom: 20150729

  Running eventstat shows this CPU time is being used in 5 events per
  second:

   Event/s PID   TaskInit Function Callback
     36.36 0 [swapper/0] hrtimer_start_range_nstick_sched_timer
  5.05 11688 unity8  hrtimer_start_range_nshrtimer_wakeup

  So it sounds like QtMir's frame dropper is the culprit.

To manage notifications about this bug go to:
https://bugs.launchpad.net/qtmir/+bug/1479250/+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 1477315] Re: [convergence] Context menu displayed in wrong spot on desktop when invoked over links (not close to the link)

2015-08-31 Thread Olivier Tilloy
Note: context menus and dropdown menus associated to an HTML  node are 
two entirely different things.
Their positioning is not governed by the same code. Let’s use this bug report 
to track the positioning of context menus only.
For the dropdown menus, we will need input from the design team as this is not 
specified anywhere.

** Summary changed:

- [convergence] Popup menu displayed in wrong spot on desktop when invoked over 
links (not close to the link)
+ [convergence] Context menu displayed in wrong spot on desktop when invoked 
over links (not close to the link)

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

Title:
  [convergence] Context menu displayed in wrong spot on desktop when
  invoked over links (not close to the link)

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  running webbrowser-app on desktop. If you invoke a popup menu on a
  link, the menu is not placed correctly on the screen. It seems it's
  always centered on the screen, rather than placed directly above/below
  the object that the menu is associated with.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1477315/+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 1420556] Comment bridged from LTC Bugzilla

2015-08-31 Thread bugproxy
--- Comment From emach...@br.ibm.com 2015-08-31 05:37 EDT---
The aforementioned issue of the additional .loc directive that causes a 
misplaced breakpoint appears again on Ubuntu 15.10 gcc (5.2.1-15ubuntu5), 
causing several unexpected failures on gdb testsuite.

As mentioned before, this problem is not reproducible when using Ubuntu
gcc-4.8 or upstream community gcc.

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

Title:
  gdb source tests are failing in Ubuntu 15.04

Status in gdb package in Ubuntu:
  Confirmed

Bug description:
  ---Problem Description---
  gdb source tests are failing in Ubuntu 15.04
   
  ---uname output---
  Linux ubuntu 3.18.0-12-generic #13-Ubuntu SMP Thu Jan 29 13:44:26 UTC 2015 
ppc64le ppc64le ppc64le GNU/Linux
   
  Machine Type = P8 

  ---Steps to Reproduce---
  Install a Power VM LPAR with Ubuntu 15.04 ISO.
  Then install gdb source and build and execute the same.

  root@ubuntu:~# apt-get source gdb
  root@ubuntu:~# cd gdb-7.8.2/
  root@ubuntu:~/gdb-7.8.2# dpkg-buildpackage -b

  === gdb Summary ===

  # of expected passes25147
  # of unexpected failures280
  # of unexpected successes   2
  # of expected failures  66
  # of unknown successes  1
  # of known failures 59
  # of unresolved testcases   11
  # of untested testcases 21
  # of unsupported tests  99
  /root/gdb-7.8.2/build/objdir/gdb/testsuite/../../gdb/gdb version  
7.8.2-0ubuntu1) -nw -nx -data-directory 
/root/gdb-7.8.2/build/objdir/gdb/testsuite/../data-directory

  Package: gdb-7.8.2-0ubuntu1

  I've reproduced the tests and looking at gdb.log, noticed that for
  some reason breakpoints for main() are being hit in an unexpected
  place and this is causing a lot of testcase failures. Also, this
  problem happens only when using gcc 4.9 (Ubuntu 15.04 default); it's
  not reproducible on gcc 4.8 or 5. This is still being investigated.

  Moreover, in the gdb.python/python.exp specifically, there is this
  commit 55cfb2c4c8accd5031fd7c8167988fc4624e847c from upstream gdb that
  fixes the testcase, removing 19 of the unexpected failures.

  I've created this testcase that exemplifies the issue with the
  'breakpoint main' hit the unexpected place:

  ubuntu@ubuntu:~$ cat array.c
  int main (void)
  {
int array[1];

return 0;
  }
  ubuntu@ubuntu:~$ gcc array.c -g -o array-4.9
  ubuntu@ubuntu:~$ gdb -q ./array-4.9 -ex 'break main' -ex run
  Reading symbols from ./array-4.9...done.
  Breakpoint 1 at 0x160c: file array.c, line 3.
  Starting program: /home/ubuntu/array-4.9 

  Breakpoint 1, main () at array.c:3
  3   {
  (gdb) 

  While with gcc-4.8, gdb stops at the expected place:

  ubuntu@ubuntu:~$ gcc-4.8 array.c -g -o array-4.8
  ubuntu@ubuntu:~$ gdb -q ./array-4.8 -ex 'break main' -ex run
  Reading symbols from ./array-4.8...done.
  Breakpoint 1 at 0x15a0: file array.c, line 6.
  Starting program: /home/ubuntu/array-4.8 

  Breakpoint 1, main () at array.c:6
  6 return 0;
  (gdb) 

  Comparing the assembly output generated by both gcc's, we can also
  notice a repeated '.loc 1 3 0' in the code that seems to cause this
  misplaced breakpoint:

  ubuntu@ubuntu:~$ gcc array.c -g -o array-4.9.s -S
  ubuntu@ubuntu:~$ cat array-4.9.s
  (...)
  main:   
  .LFB0:
  .file 1 "array.c"
  .loc 1 3 0
  .cfi_startproc
  0:  addis 2,12,.TOC.-0b@ha
  addi 2,2,.TOC.-0b@l
  .localentry main,.-main
  mflr 0
  std 0,16(1)
  std 31,-8(1)
  stdu 1,-64(1)
  .cfi_def_cfa_offset 64
  .cfi_offset 65, 16
  .cfi_offset 31, -8
  mr 31,1
  .cfi_def_cfa_register 31
  .loc 1 3 0  <-- repeated .loc
  ld 9,-28688(13)
  std 9,40(31)
  li 9,0
  .loc 1 6 0
  li 9,0
  .loc 1 7 0
  mr 3,9   
  ld 10,40(31)
  ld 9,-28688(13)
  cmpld 7,10,9
  li 10,0  
  li 9,0   
  beq 7,.L3
  bl __stack_chk_fail
  nop
  .L3:
  (...)

  If this additional .loc is removed, gdb is able to hit the breakpoint at the 
correct place.
  Moreover, it might be worth mentioning that this additional .loc doesn't 
appear on gcc-5 output too, where this breakpoint issue is not reproducible as 
well.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/gdb/+bug/1420556/+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 1488823] Re: SortFilterModel: No complex "OR" or "AND" filtering possible

2015-08-31 Thread Didier Roche
A simple case is having a listview model, and a search bar.

I want the search bar to match any field of my model (so that then, my
listview just show the matches). In addition, I have a sort property to
sort the model.

SortFilterModel {
id: currentmodel
model: billsHandler.billsResults
sort.property: "timestamp"
sort.order: Qt.DescendingOrder
}

We can imagine adding here, as you say:
filter.property ["foo", "bar"]
to match any "query" search term anywhere in "foo" or "bar". Does it make sense 
to you?

** Summary changed:

- SortFilterModel: No complex "OR" or "AND" sorting possible
+ SortFilterModel: No complex "OR" or "AND" filtering possible

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

Title:
  SortFilterModel: No complex "OR" or "AND" filtering possible

Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  No complex OR/AND functionality in SortFilterModel  seems to be
  available.

  A typical usage would be a search query trying to search matches
  through different fields of a model (title, comments…). I guess this
  common pattern would be interesting to have it implementing.

  Current solution is either to go C++ or use a javascript worker to not
  block the UI.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: qtdeclarative5-ubuntu-ui-toolkit-plugin 
1.3.1603+15.10.20150812-0ubuntu1
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu7
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Aug 26 10:15:32 2015
  InstallationDate: Installed on 2012-05-28 (1184 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  SourcePackage: ubuntu-ui-toolkit
  UpgradeStatus: Upgraded to wily on 2014-10-31 (298 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1488823/+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 1470033] Re: Pressing "Enter" on the "Reply to SMS" field of the SMS notification will clear the notification and erase the typed text, but the reply is not sent.

2015-08-31 Thread Tim
Also happening in MX4 release R4

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

Title:
  Pressing "Enter" on the "Reply to SMS" field of the SMS notification
  will clear the notification and erase the typed text, but the reply is
  not sent.

Status in indicator-messages package in Ubuntu:
  Confirmed

Bug description:
  When recieving an SMS in ubuntu touch, you can reply to this text message in 
the notification area directly.
  However, if you press "enter" to add a newline, the text you have just typed 
gets deleted, the reply closed,  just like as if you had pressed "send", but no 
message gets sent.
  This happens on my BQ Aqauris E4.5 with all the latest updates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1470033/+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 1470033] Re: Pressing "Enter" on the "Reply to SMS" field of the SMS notification will clear the notification and erase the typed text, but the reply is not sent.

2015-08-31 Thread Launchpad Bug Tracker
Status changed to 'Confirmed' because the bug affects multiple users.

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

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

Title:
  Pressing "Enter" on the "Reply to SMS" field of the SMS notification
  will clear the notification and erase the typed text, but the reply is
  not sent.

Status in indicator-messages package in Ubuntu:
  Confirmed

Bug description:
  When recieving an SMS in ubuntu touch, you can reply to this text message in 
the notification area directly.
  However, if you press "enter" to add a newline, the text you have just typed 
gets deleted, the reply closed,  just like as if you had pressed "send", but no 
message gets sent.
  This happens on my BQ Aqauris E4.5 with all the latest updates.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-messages/+bug/1470033/+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 1350871] Re: location service is waking up at 10Hz causing possible unwanted wakeups

2015-08-31 Thread Daniel van Vugt
** Tags added: phablet

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

Title:
  location service is waking up at 10Hz causing possible unwanted
  wakeups

Status in The Ubuntu Power Consumption Project:
  New
Status in location-service package in Ubuntu:
  Confirmed

Bug description:
  I've observed that location service is waking up ~10 times per second
  due to a 100ms sleep

  ps -ax | grep 2295
   2295 ?Ssl0:00 /usr/bin/ubuntu-location-serviced --bus system 
--provider gps::Provider

  eventstat shows it's the top waking userspace process on the phone:

  root@ubuntu-phablet:/# eventstat 300 1
   Event/s PID   TaskInit Function Callback
  9.99  2304 ubuntu-location hrtimer_start_range_nshrtimer_wakeup

  health-check shows that this is occuring in a 100ms nanosleep() system
  call.

  Attached is the output from health-check.   Is is possible to use a
  select() or poll() rather than a 10Hz non-blocking delay loop to
  reduce polling wakeups?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-power-consumption/+bug/1350871/+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 1311647] Re: Should allow disabling rotation

2015-08-31 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
   Importance: Undecided => Wishlist

** Changed in: webbrowser-app (Ubuntu)
   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/1311647

Title:
  Should allow disabling rotation

Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  It would be nice if the webapp container allowed disabling rotation,
  at least on startup via a command-line arg, ideally there would be a
  JS API for it (is there?).

  Immediate use case: mobile boarding passes

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: webapp-container 0.23+14.04.20140416-0ubuntu1
  ProcVersionSignature: Ubuntu 3.13.0-24.46-generic 3.13.9
  Uname: Linux 3.13.0-24-generic x86_64
  NonfreeKernelModules: wl nvidia
  ApportVersion: 2.14.1-0ubuntu3
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Apr 23 14:56:36 2014
  SourcePackage: webbrowser-app
  UpgradeStatus: No upgrade log present (probably fresh install)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1311647/+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 1488821] Re: SortFilterModel can't filter on subproperty like content.title

2015-08-31 Thread Didier Roche
I don't think the bug as being invalid (reopening it).
>From a developer experience point of view, how would you so direct such 
>children so that they can be filtered in a SortFilterModel, especially when 
>coming from u1db or other where they are are Variant children?

I think there is something to do. The invalid state is bogus, it can be
"won't fix", but there is a clearly something we can't filter on. Maybe
the least would be a note in the documentation and examples on how to do
this directly in, for instance, u1db (once the bug is fixed there).

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: Invalid => New

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

Title:
  SortFilterModel can't filter on subproperty like content.title

Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  SortFilterModel doesn't enable to filter on subproperty.

  Here is a simple non working example:

  SortFilterModel {
  id: currentmodel
  model: billsResults
  filter.property: 'contents.title'
  filter.pattern: /BAR/
  }

  Knowing that most of the u1db models are exporting into a "contents"
  property handling the rest, it seems that to chain it to a
  SortFilterModel, it would be interesting to have it able to filter
  through subproperties

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: qtdeclarative5-ubuntu-ui-toolkit-plugin 
1.3.1603+15.10.20150812-0ubuntu1
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu7
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Aug 26 10:10:49 2015
  InstallationDate: Installed on 2012-05-28 (1184 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  SourcePackage: ubuntu-ui-toolkit
  UpgradeStatus: Upgraded to wily on 2014-10-31 (298 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1488821/+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

2015-08-31 Thread Simon Fels
@JoiHap: At the time you called bluez-list-devices what was the state of
the entry in the settings app? As the output reports the car as being
paired / trusted / connected which is what we want.

-- 
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 1488822] Re: SortFilterModel can't filter and sort at the same time

2015-08-31 Thread Didier Roche
You're right, I can't reproduce it today with this example on wily. One
less then, thanks ;)

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

Title:
  SortFilterModel can't filter and sort at the same time

Status in ubuntu-ui-toolkit package in Ubuntu:
  Incomplete

Bug description:
  It seems that a typical SortFilterModel would be to filter on some
  properties of a model and sort them at the same time. However, this
  seems to not be possible, like:

  SortFilterModel {
  model: mymodel
  sort.property: "timestamp"
  sort.order: Qt.DescendingOrder
  filter.property: 'foo'
  filter.pattern: /BAR/
  }

  ProblemType: Bug
  DistroRelease: Ubuntu 15.10
  Package: qtdeclarative5-ubuntu-ui-toolkit-plugin 
1.3.1603+15.10.20150812-0ubuntu1
  ProcVersionSignature: Ubuntu 4.1.0-3.3-generic 4.1.3
  Uname: Linux 4.1.0-3-generic x86_64
  ApportVersion: 2.18-0ubuntu7
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Wed Aug 26 10:13:04 2015
  InstallationDate: Installed on 2012-05-28 (1184 days ago)
  InstallationMedia: Ubuntu 12.04 LTS "Precise Pangolin" - Release amd64 
(20120425)
  SourcePackage: ubuntu-ui-toolkit
  UpgradeStatus: Upgraded to wily on 2014-10-31 (298 days ago)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1488822/+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 1446729] Re: youtube videos should pause when tab moved to background

2015-08-31 Thread Olivier Tilloy
** No longer affects: webbrowser-app

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

Title:
  youtube videos should pause when tab moved to background

Status in webbrowser-app package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu RTM:
  Confirmed

Bug description:
  both krillin and vivid have this issue:

  1) open browser
  2) open video in youtube.com and start playing it
  3) swipe up from bottom and select an existing tab or create a new tab

  Expected result:
  - the video in the background should pause and the new tab should be displayed

  Actual result:
  - the video keeps playing in the background even after the new tab is loaded

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1446729/+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 1447395] Re: Zoom needed for better readability

2015-08-31 Thread Olivier Tilloy
No need for a new report, this one is already marked 'confirmed', let’s
use it.

** No longer affects: webbrowser-app

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

Title:
  Zoom needed for better readability

Status in Oxide:
  New
Status in webbrowser-app package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu RTM:
  Confirmed

Bug description:
  Missing: Many people need a customizable zoom or at least text size
  for websites because they need bigger text (and pictures) for easy
  reading. The zoom should not result in horizontal scrolling but wrap
  text on the end of line.

To manage notifications about this bug go to:
https://bugs.launchpad.net/oxide/+bug/1447395/+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 1490283] Re: DuckDuckGo isn't using Ubuntu tag

2015-08-31 Thread Olivier Tilloy
** Changed in: webbrowser-app (Ubuntu)
   Status: New => In Progress

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

** Changed in: webbrowser-app (Ubuntu)
 Assignee: (unassigned) => Michael Terry (mterry)

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

Title:
  DuckDuckGo isn't using Ubuntu tag

Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  On the Ubuntu desktop, DuckDuckGo search uses the t=canonical tag, to
  indicate that a search was from Ubuntu (and so that Canonical gets
  some income from it).

  But webbrowser-app doesn't use that same tag when the search engine is
  set to DuckDuckGo.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1490283/+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 1480877] Re: Access points' "PropertiesChanged" dbus signals freeze UI on mobile devices

2015-08-31 Thread Jonas G. Drange
Right, after deleting my hotspot I still saw lockups while moving
through London.

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

Title:
  Access points' "PropertiesChanged" dbus signals freeze UI on mobile
  devices

Status in Canonical System Image:
  Confirmed
Status in indicator-network package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  Krillin, rc-proposed, r83

  
  DESCRIPTION:
  I've been trying to track down the cause of the occasional UI freezes on my 
Krillin device, and I noticed that whenever the UI freezes for 2-4 seconds, I 
get a burst of "PropertiesChanged" signals in dbus-monitor

  Here's a log of what's shown in dbus-monitor:
  http://pastebin.ubuntu.com/11992322/

  I'd guess the problem is in the code that actually catches the signals
  and acts accordingly.

  HOW TO REPRODUCE: 
  1) Move to a place where many wifi hotspots are available
  2) Connect the device via USB and run "phablet-shell" and then "dbus-monitor"
  3) Use the device while keeping an eye on dbus-monitor output

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1480877/+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 1489953] Re: Can't move cards on trello board

2015-08-31 Thread Olivier Tilloy
This works well with the latest webbrowser-app (from trunk, same version that 
is in wily) on a vivid desktop.
 I don’t have a wily desktop machine handy, so can’t confirm there.

@Dave: just to confirm: to move a card you do a long press on it and
start moving, right?

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

Title:
  Can't move cards on trello board

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  STEPS:
  1. On the wily desktop open the browser app
  2. Login to trello and go to one of the boards you use
  3. try and move a ticket from one lane to another
  4. try and move a ticket up and down in the same lane

  EXPECTED:
  I expect the card to pop out and move like it does in other browsers

  ACTUAL:
  You can't move a ticket at all.

  VERSION:
  webbrowser-app/wily 0.23+15.10.20150820-0ubuntu1 amd64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1489953/+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 1480877] Re: Access points' "PropertiesChanged" dbus signals freeze UI on mobile devices

2015-08-31 Thread Jonas G. Drange
Right, after deleting my hotspot I still saw lockups while moving
through London.

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

Title:
  Access points' "PropertiesChanged" dbus signals freeze UI on mobile
  devices

Status in Canonical System Image:
  Confirmed
Status in indicator-network package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  Krillin, rc-proposed, r83

  
  DESCRIPTION:
  I've been trying to track down the cause of the occasional UI freezes on my 
Krillin device, and I noticed that whenever the UI freezes for 2-4 seconds, I 
get a burst of "PropertiesChanged" signals in dbus-monitor

  Here's a log of what's shown in dbus-monitor:
  http://pastebin.ubuntu.com/11992322/

  I'd guess the problem is in the code that actually catches the signals
  and acts accordingly.

  HOW TO REPRODUCE: 
  1) Move to a place where many wifi hotspots are available
  2) Connect the device via USB and run "phablet-shell" and then "dbus-monitor"
  3) Use the device while keeping an eye on dbus-monitor output

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1480877/+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 1444840] Re: MMS wrongly reported as sent or not received

2015-08-31 Thread Alfonso Sanchez-Beato
*** This bug is a duplicate of bug 1471740 ***
https://bugs.launchpad.net/bugs/1471740

Marked as duplicate of a bug fixed in OTA-5. After OTA-5 things should
have stabilised much more. If things still do not work after OTA-5,
please create a new bug mentioning the concrete operator which fails, as
this bug is now kind of a bag that reports different problems.

** This bug has been marked a duplicate of bug 1471740
   Cannot receive MMS after setting/unsetting flight mode

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

Title:
  MMS wrongly reported as sent or not received

Status in Canonical System Image:
  Fix Committed
Status in nuntium package in Ubuntu:
  Confirmed
Status in ubuntu-download-manager package in Ubuntu:
  Confirmed

Bug description:
  I tried to send an MMS. It took a bit longer than usual (~1 minute).
  While doing it I was checking the list of open contexts with list-
  context ofono script. The MMS IP context was opened at a point, but
  then it was closed, and messaging app still reported it was sending
  the MMS for 30 or more seconds. In the end messaging app showed
  reported success sending.

  The message never arrived. However, I sent another MMS right after
  that and that one was sent in just a few seconds and was received on
  the other end.

  Taking a look at ~/.cache/upstart/dbus.log I see this error for the
  penultimate MMS sent:

  E0416 06:55:58.113751 11223 file_upload.cpp:345] Upload ID{
  e685ebedf31046ada4300c8b3113c07f }  http://www.pepephone.com
  ERROR::Network error ContentNotFoundError: the remote content was not
  found at the server (similar to HTTP error 404)

  This points to this error not being propagated to messaging app
  somewhat. Maybe nuntium is not the culprit here, but I did not know
  where to report this, so please add to the right project.

  Logs attached in tarball.

  krillin / RTM proposed image 270

  The same error (ContentNotFoundError) can be also seen when
  *receiving* an MMS, when *uploading* the confirmation of MMS received
  to the server. The MMS is never shown as received.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1444840/+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 1489953] Re: Can't move cards on trello board

2015-08-31 Thread Olivier Tilloy
This works well with the latest webbrowser-app (from trunk, same version that 
is in wily) on a vivid desktop.
 I don’t have a wily desktop machine handy, so can’t confirm there.

@Dave: just to confirm: to move a card you do a long press on it and
start moving, right?

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

Title:
  Can't move cards on trello board

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  STEPS:
  1. On the wily desktop open the browser app
  2. Login to trello and go to one of the boards you use
  3. try and move a ticket from one lane to another
  4. try and move a ticket up and down in the same lane

  EXPECTED:
  I expect the card to pop out and move like it does in other browsers

  ACTUAL:
  You can't move a ticket at all.

  VERSION:
  webbrowser-app/wily 0.23+15.10.20150820-0ubuntu1 amd64

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1489953/+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 1439101] Re: For some operators MMS is unreliable

2015-08-31 Thread Alfonso Sanchez-Beato
For those for which MMS is still failing *after OTA-6*, please report
new bugs for the nuntium package mentioning your concrete operator

https://bugs.launchpad.net/ubuntu/+source/nuntium

Please attach a tarball with files in ~/.cache/upstart/ if possible.

If you do not mind to set you your system to writable, you can attach
traces following the instructions in

https://github.com/sergiusens/network-test-session

Also, please add your APN settings and note that you need cellular data
enabled for MMS to work.

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

Title:
  For some operators MMS is unreliable

Status in Canonical System Image:
  Confirmed
Status in Ubuntu Mobile Phone:
  Incomplete
Status in messaging-app package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  In France no MMS is received regardless of the operator used on bq
  aquaris E4.5 ubuntu Edition

  For information, my operator is Free even if it seems it doesn't
  matter.

  In the same time, let me tell you than I had detect than MMS didn't
  sent when WIFI is ON. I've read some other people who send the same
  information so it's seems to be a real bug.

  Anyway, for resume, For send a MMS, it's OK whan WIFI is OFF, don'T if
  ON, and in all of case we don't receive MMS :-((

  Thank's to you for fix it faster.

  Sorry for my approximativ english.

  Fabien

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1439101/+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 1490412] [NEW] Check based on Chromium

2015-08-31 Thread Gabriele
Public bug reported:

It would be useful to use the service RollApp (www.rollapp.com) also on the 
browser of Ubuntu Touch. 
The service uses Chrome / Chromium as the default browser to virtualize 
OpenSource programs (OpenOffice, Stellarium, etc.).
It could be a temporary solution pending the complete corvengence.

** 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/1490412

Title:
  Check based on Chromium

Status in webbrowser-app package in Ubuntu:
  New

Bug description:
  It would be useful to use the service RollApp (www.rollapp.com) also on the 
browser of Ubuntu Touch. 
  The service uses Chrome / Chromium as the default browser to virtualize 
OpenSource programs (OpenOffice, Stellarium, etc.).
  It could be a temporary solution pending the complete corvengence.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1490412/+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 1468799] Re: Too many keys in Polish keyboard

2015-08-31 Thread Krzysztof Tataradziński
I must admin that solution for now is quite good. I'd love to use that
additional keys, but not all of them are shown; I think that on MX4 it's
doing its job.

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

Title:
  Too many keys in Polish keyboard

Status in ubuntu-keyboard package in Ubuntu:
  In Progress

Bug description:
  For Polish keyboard, to standard QWERTY keyboard the new column with
  Polish letters was added.

  It is not optimal because:
  1. Adding additional key column, takes space, and for small devices (BQ E4.5) 
it is hard to use
  2. For Polish language there are 9 diactric signs, (ą, ć, ę, ł, ń, ó, ś, ź, 
ż) but only 3 is available as separate keys
  3. In Poland most common used is "Polish Programmer" keyboard (it is also 
used on Android phone). The diactric sign are available with SHIFT modifier 
(Example: SHIFT+a = ą, SHIFT+c = ć etc.)

  Proposal:
  To improve UX of Polish keyboard, I would like propose to remove Polish keys 
and use "Polish Programmer" style (with SHIFT modifier). With that solution it 
will be much easier typying on Polish keyboard.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-keyboard/+bug/1468799/+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 1481832] Re: VA-API implementation for gallium missing

2015-08-31 Thread walterav
In reaction to Robert Hooker about performance. Did some benchmarks with
"mpv" and 1080i h264 transport stream footage trying all three possible
acc. backends on [Radeon HD 6320].

*vdpau (native)
*Splitted-Desktop Systems VDPAU backend for VA-API 
*mesa gallium vaapi

All of them seem to perform equally maybe some 1-5% difference. Maybe
because there isn't real 'vdpau' on AMD so its implementation of vdpau
is like the other VAAPI ones using the same optimize tricks (combination
of hardwaredecoder/shaders/etc/gpu offload)?

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

Title:
  VA-API implementation for gallium missing

Status in mesa package in Ubuntu:
  Confirmed

Bug description:
  [needs-packaging] mesa
  Please include "gallium_drv_video.so" which is a native va-api state tracker 
for mesa(gallium).

  URL: http://mesa3d.sourceforge.net/
  URL: http://freedesktop.org/wiki/Software/vaapi/ #intel/vdpau
  License: http://www.mesa3d.org/license.html

  Notes:
  Currently (as of today) in ubuntu 15.10 nightly amd64, va-api(vaapi) on 
AMD/Ati radeon opensource display hardware is using a vdpau backend  0.7.4 by 
Splitted-Desktop Systems (wrapper) on gallium r600. Although its possible and 
probably preferred (better performance less copying) to use a native 
implementation which mesa(gallium) 10.4 and higher delivers in a form of a 
va-api state tracker.

  vainfo #current default setup vdpau backend
  libva info: VA-API version 0.38.0
  libva info: va_getDriverName() returns 0
  libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/r600_drv_video.so
  libva info: Found init function __vaDriverInit_0_37
  libva info: va_openDriver() returns 0
  vainfo: VA-API version: 0.38 (libva 1.6.0)
  vainfo: Driver version: Splitted-Desktop Systems VDPAU backend for VA-API - 
0.7.4
  vainfo: Supported profile and entrypoints
    VAProfileMPEG2Simple:   VAEntrypointVLD
    VAProfileMPEG2Main  :   VAEntrypointVLD
    VAProfileMPEG4Simple:   VAEntrypointVLD
    VAProfileMPEG4AdvancedSimple:   VAEntrypointVLD
    VAProfileH264Baseline   :   VAEntrypointVLD
    VAProfileH264Main   :   VAEntrypointVLD
    VAProfileH264High   :   VAEntrypointVLD
    VAProfileVC1Advanced:   VAEntrypointVLD

  The preferred setup needs that "gallium_drv_video.so" binary which is
  currently unavailable in ubuntu and debian. As an example I added a
  package/binary from archlinux. Copying the gallium_drv_video.so to
  /usr/lib/x86_64-linux-gnu/dri/ and symlinking(correcting) the
  libLLVM-3.6.so to arch-linux default /usr/lib/ location and exporting
  a variable was enough to make it work!
  https://www.archlinux.org/packages/extra/x86_64/libva-mesa-driver/
  #example by archlinux

  export LIBVA_DRIVER_NAME=gallium
  vainfo #preferred setup using gallium va-api from arch-linux (symlinked 
libLLVM-3.6.so to /usr/lib)
  libva info: VA-API version 0.38.0
  libva info: va_getDriverName() returns 0
  libva info: User requested driver 'gallium'
  libva info: Trying to open /usr/lib/x86_64-linux-gnu/dri/gallium_drv_video.so
  libva info: Found init function __vaDriverInit_0_38
  libva info: va_openDriver() returns 0
  vainfo: VA-API version: 0.38 (libva 1.6.0)
  vainfo: Driver version: mesa gallium vaapi
  vainfo: Supported profile and entrypoints
    VAProfileMPEG2Simple:   VAEntrypointVLD
    VAProfileMPEG2Main  :   VAEntrypointVLD
    VAProfileMPEG4Simple:   VAEntrypointVLD
    VAProfileMPEG4AdvancedSimple:   VAEntrypointVLD
    VAProfileVC1Advanced:   VAEntrypointVLD
    VAProfileH264Baseline   :   VAEntrypointVLD
    VAProfileH264Main   :   VAEntrypointVLD
    VAProfileH264High   :   VAEntrypointVLD

  I guess this binary "gallium_drv_video.so" might be available as a
  compile flag in the current mesa implementation... intel and vdpau has
  their own current implementation in a separate libva branch
  http://cgit.freedesktop.org/vaapi/libva/ ?

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/mesa/+bug/1481832/+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 1484545] Re: [listitem] swiping doesn't work when a mousearea on top doesn't accept the mouse event

2015-08-31 Thread Zsombor Egri
We have a problem here: there's no way for us to know whether the
overlaid MouseArea did or did not accept mouse events.
childMouseEventFilter acts prior the MouseArea's mousePressed() is
handled, so the event is still in accepted state. As result of
onPressed: mouse.accepted = false, ListItem is also getting the mouse
event, but the accepted state is still true.

We could rely on mouseEvent() being caught when overlaid items do not
accept mouse events, after all all accepted events are suppressed and
ListItem's event handler won't be called anymore...

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

Title:
  [listitem] swiping doesn't work when a mousearea on top doesn't accept
  the mouse event

Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  staging r1603

  ListItem { MouseArea { onPressed: mouse.accepted = false } }

  When a MouseArea doesn't accept a mouse event, the ListItem becomes
  non-swipable.

  After discussing this with kalikiana, we agreed that this behaviour is not 
intended and should be fixed. 
  Not accepting a mouse event from within the listitem shouldn't stop the 
swiping mechanism from activating.

  The same applies to ListItem highlight or click, they should not be
  stopped by a MouseArea which is inside the listitem if that mouse area
  doesn't accept the mouse event

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1484545/+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 1488386] Re: [performance] Double buffering is only smooth while you're touching it

2015-08-31 Thread Daniel van Vugt
** Summary changed:

- Double buffering is only smooth while you're touching it
+ [performance] Double buffering is only smooth while you're touching it

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

Title:
  [performance] Double buffering is only smooth while you're touching it

Status in Mir:
  New
Status in QtMir:
  New
Status in mir package in Ubuntu:
  New
Status in qtmir package in Ubuntu:
  New

Bug description:
  On some devices (mako at least) it's possible to force double
  buffering and it will often keep up:

 restart unity8 QML_NO_TOUCH_COMPRESSION=1 MIR_SERVER_NBUFFERS=2

  Curiously however it only keeps up smoothly (eg. during a dash scroll)
  while you're touching the screen. If you lift off or fling the dash
  then it immediately stutters, quite badly.

  So the issue is not that the device can't keep up with double buffering. It 
seems more like we're not keeping the kernel sufficiently awake and it's 
clocking down prematurely, as soon as we're not touching it. Certainly 
adjusting the variables in:
 /sys/devices/system/cpu/cpu0/cpufreq
  it is possible to raise the performance and minimum frequency to make double 
buffering smooth.

  The challenge of this bug is to find a way in Mir/QtMir to keep the
  kernel more awake so it doesn't clock down when we need smooth
  animations and we're not touching the screen.

To manage notifications about this bug go to:
https://bugs.launchpad.net/mir/+bug/1488386/+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 1490520] Re: WiFi network is not listed by NM but listed by the kernel driver

2015-08-31 Thread Tony Espy
** Changed in: network-manager (Ubuntu)
   Status: New => Incomplete

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

Title:
  WiFi network is not listed by NM but listed by the kernel driver

Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  I wanted to connect my local WiFi network today but didn't found it in
  the UI. I then manually triggered a

  $ sudo iwlist wlan0 scan

  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.

  After power cycling WiFi the network was listed again on the UI.

  This is on Ubuntu Touch and mako:

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1490520/+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 1490520] Re: WiFi network is not listed by NM but listed by the kernel driver

2015-08-31 Thread Tony Espy
@Simon

A few questions...

1. What kind of AP ( 2.4G?  5G? )?  What type of security?  Is the SSID
visible?

2. The following two commands will show the APs known to NM and
wpa_supplicant:

 - nmcli d wifi list

 - wpa_cli scan_results

Please check to see if the AP is available in either during this period.

You also can enable debug scan logging in NM via:

Just before the test:

$ sudo nmcli general logging level debug domains wifi,wifi_scan



Either grab syslog right now, or turn down the logging:

$ sudo nmcli general logging level info domains DEFAULT

and then grab the syslog at your convenience.


** Changed in: network-manager (Ubuntu)
 Assignee: (unassigned) => Simon Fels (morphis)

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

Title:
  WiFi network is not listed by NM but listed by the kernel driver

Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  I wanted to connect my local WiFi network today but didn't found it in
  the UI. I then manually triggered a

  $ sudo iwlist wlan0 scan

  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.

  After power cycling WiFi the network was listed again on the UI.

  This is on Ubuntu Touch and mako:

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1490520/+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 1490520] Re: WiFi network is not listed by NM but listed by the kernel driver

2015-08-31 Thread Tony Espy
Also, you can watch the scans be triggered from NM by running 'wpa_cli'
( as root ), and watching for the associated CTRL_EVENTs.

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

Title:
  WiFi network is not listed by NM but listed by the kernel driver

Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  I wanted to connect my local WiFi network today but didn't found it in
  the UI. I then manually triggered a

  $ sudo iwlist wlan0 scan

  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.

  After power cycling WiFi the network was listed again on the UI.

  This is on Ubuntu Touch and mako:

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1490520/+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 1470399] Re: udev duplicates entries in 70-persistent-net.rules

2015-08-31 Thread Bug Watch Updater
** Changed in: systemd (Debian)
   Status: Unknown => Fix Released

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

Title:
  udev duplicates entries in 70-persistent-net.rules

Status in systemd package in Ubuntu:
  Fix Released
Status in systemd package in Debian:
  Fix Released

Bug description:
  After a fresh installation of 14.04, I had various troubles with the ethernet 
NIC.  Long story short, there were duplicate entries in 
/etc/udev/rules.d/70-persistent-net.rules .
  The 70-persistent-net.rules file has 5 entries for a 4 port NIC (Broadcom 
Corporation NetXtreme BCM5720 Gigabit Ethernet PCIe).

  -

  # PCI device 0x14e4:0x165f (tg3)
  SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", 
ATTR{address}=="54:9f:35:09:8f:69", ATTR{dev_id}=="0x0", ATTR{type}=="1", 
KERNEL=="eth*", NAME="eth1"

  # PCI device 0x14e4:0x165f (tg3)
  SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", 
ATTR{address}=="54:9f:35:09:8f:6b", ATTR{dev_id}=="0x0", ATTR{type}=="1", 
KERNEL=="eth*", NAME="eth3"

  # PCI device 0x14e4:0x165f (tg3)
  SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", 
ATTR{address}=="54:9f:35:09:8f:68", ATTR{dev_id}=="0x0", ATTR{type}=="1", 
KERNEL=="eth*", NAME="eth0"

  # PCI device 0x14e4:0x165f (tg3)
  SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", 
ATTR{address}=="54:9f:35:09:8f:6a", ATTR{dev_id}=="0x0", ATTR{type}=="1", 
KERNEL=="eth*", NAME="eth2"

  # this last declaration was generated by udev but overrides prior command 
with same ATTR{address} value.
  # PCI device 0x14e4:0x165f (tg3)
  SUBSYSTEM=="net", ACTION=="add", DRIVERS=="?*", 
ATTR{address}=="54:9f:35:09:8f:68", ATTR{dev_id}=="0x0", ATTR{type}=="1", 
KERNEL=="eth*", NAME="eth4"

  
  -

  lspci shows only 4 PCI devices.

  -
  $ lspci -vn | grep -A 16 -F '14e4:165f'

  01:00.0 0200: 14e4:165f
Subsystem: 1028:1f5b
Flags: bus master, fast devsel, latency 0, IRQ 41
Memory at 91b3 (64-bit, prefetchable) [size=64K]
Memory at 91b4 (64-bit, prefetchable) [size=64K]
Memory at 91b5 (64-bit, prefetchable) [size=64K]
Expansion ROM at 91b8 [disabled] [size=256K]
Capabilities: [48] Power Management version 3
Capabilities: [50] Vital Product Data
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
Capabilities: [a0] MSI-X: Enable+ Count=17 Masked-
Capabilities: [ac] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [13c] Device Serial Number 00-00-54-9f-35-09-8f-68
Capabilities: [150] Power Budgeting 
Capabilities: [160] Virtual Channel
Kernel driver in use: tg3
  --
  01:00.1 0200: 14e4:165f
Subsystem: 1028:1f5b
Flags: bus master, fast devsel, latency 0, IRQ 45
Memory at 91b0 (64-bit, prefetchable) [size=64K]
Memory at 91b1 (64-bit, prefetchable) [size=64K]
Memory at 91b2 (64-bit, prefetchable) [size=64K]
Expansion ROM at 91bc [disabled] [size=256K]
Capabilities: [48] Power Management version 3
Capabilities: [50] Vital Product Data
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
Capabilities: [a0] MSI-X: Enable- Count=17 Masked-
Capabilities: [ac] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [13c] Device Serial Number 00-00-54-9f-35-09-8f-69
Capabilities: [150] Power Budgeting 
Capabilities: [160] Virtual Channel
Kernel driver in use: tg3
  --
  02:00.0 0200: 14e4:165f
Subsystem: 1028:1f5b
Flags: bus master, fast devsel, latency 0, IRQ 40
Memory at 91a3 (64-bit, prefetchable) [size=64K]
Memory at 91a4 (64-bit, prefetchable) [size=64K]
Memory at 91a5 (64-bit, prefetchable) [size=64K]
Expansion ROM at 91a8 [disabled] [size=256K]
Capabilities: [48] Power Management version 3
Capabilities: [50] Vital Product Data
Capabilities: [58] MSI: Enable- Count=1/8 Maskable- 64bit+
Capabilities: [a0] MSI-X: Enable- Count=17 Masked-
Capabilities: [ac] Express Endpoint, MSI 00
Capabilities: [100] Advanced Error Reporting
Capabilities: [13c] Device Serial Number 00-00-54-9f-35-09-8f-6a
Capabilities: [150] Power Budgeting 
Capabilities: [160] Virtual Channel
Kernel driver in use: tg3
  --
  02:00.1 0200: 14e4:165f
Subsystem: 1028:1f5b
Flags: bus master, fast devsel, latency 0, IRQ 44
Memory at 91a0 (64-bit, 

[Touch-packages] [Bug 1490520] Re: WiFi network is not listed by NM but listed by the kernel driver

2015-08-31 Thread Simon Fels
** Description changed:

- I wanted to connect my local WiFi network today but didn't found it in
- the UI. I then manually triggered a
+ I wanted to connect my local WiFi network today (device was off before
+ and may have slept) but didn't found it in the UI. I then manually
+ triggered a
  
  $ sudo iwlist wlan0 scan
  
  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.
  
  After power cycling WiFi the network was listed again on the UI.
  
  This is on Ubuntu Touch and mako:
  
  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

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

Title:
  WiFi network is not listed by NM but listed by the kernel driver

Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  I wanted to connect my local WiFi network today (device was off before
  and may have slept) but didn't found it in the UI. I then manually
  triggered a

  $ sudo iwlist wlan0 scan

  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.

  After power cycling WiFi the network was listed again on the UI.

  This is on Ubuntu Touch and mako:

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1490520/+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 1490520] Re: WiFi network is not listed by NM but listed by the kernel driver

2015-08-31 Thread Simon Fels
AP is 2.4G, WPA-PSK secured and it's SSID is not hidden.

Will add more details once I get this reproduced.

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

Title:
  WiFi network is not listed by NM but listed by the kernel driver

Status in network-manager package in Ubuntu:
  Incomplete

Bug description:
  I wanted to connect my local WiFi network today (device was off before
  and may have slept) but didn't found it in the UI. I then manually
  triggered a

  $ sudo iwlist wlan0 scan

  on the command line which directly found my WiFi network whereas
  NetworkManager still didn't listed it.

  After power cycling WiFi the network was listed again on the UI.

  This is on Ubuntu Touch and mako:

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 227
  device name: mako
  channel: ubuntu-touch/rc-proposed/ubuntu
  last update: 2015-08-28 09:13:42
  version version: 227
  version ubuntu: 20150828
  version device: 20150819
  version custom: 20150828

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/network-manager/+bug/1490520/+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 1487020] Re: BSD Tar is allocating gigabytes to list files

2015-08-31 Thread Tyler Hicks
Thanks Gustavo - I don't see how an attacker could leverage this since
it is seemingly harmless. I think we should treat it as a normal bug so
I'm making this report public.

** Information type changed from Private Security to Public

** Changed in: libarchive (Ubuntu)
   Status: Incomplete => Confirmed

** Changed in: libarchive (Ubuntu)
   Importance: Undecided => Low

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

Title:
  BSD Tar is allocating gigabytes to list files

Status in libarchive package in Ubuntu:
  Confirmed

Bug description:
  Hello!

  Our fuzzer found an interesting test case in which BSD tar allocates a few 
gigabytes just to show the filenames of a tar file. You can run check it using: 
ltrace -e malloc /usr/bin/bsdtar -tf buggy.bsd-out-of-memory.tar
  In the ltrace output you can easily spot:

  
  libarchive.so.13->malloc(5609768313)
  

  We checked in the source code and we think it is not possible to
  perfom an integer overflow (but of course we are not completely sure).
  We email you this test case privately because of the possible security
  implications of it. This issue seems to be fixed in the last revisions
  of libarchive.

  Thanks!

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/libarchive/+bug/1487020/+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 1473471] Re: unity8 crashes on boot

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  unity8 crashes on boot

Status in Canonical System Image:
  Fix Released
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  On rc-proposed/bq-aquaris.en/krillin #64 and rc-
  proposed/meizu.en/arale #56 unity8 often crashes on boot, introducing
  a long delay while apport is doing its work.

  The process respawns and there doesn't seem to be any impact after
  boot.

  Report on errors.u.c: https://errors.ubuntu.com/oops/34eea84c-270c-
  11e5-a0a8-fa163e5bb1a2

  Most of the time maliit-server also crashes. I reported bug 1473469

  How to reproduce the crash:
   * Make sure your /var/crash in the phone is empty
   * run in the desktop
     while [ true ]; do echo "Checking if there is crash files"; output=`adb 
shell ls /var/crash`; if [ "x$output" != "x" ]; then break; fi; echo "No crash 
files, Rebooting"; adb reboot; echo "Sleeping for 100 seconds"; echo ""; sleep 
100; done

  Will stop because crash files have been generated in about 5
  iterations

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1473471/+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 1469266] Re: Voicemail message shown after a reboot when there are no messages

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Voicemail message shown after a reboot when there are no messages

Status in Canonical System Image:
  Fix Released
Status in ofono package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  Invalid
Status in ofono package in Ubuntu RTM:
  Fix Released

Bug description:
  Every time I reboot the arale on ota4 the notification center reports a voice 
message. Dialing the voicemail AT says there are no messages.
  (I just moved from mako/rtm to arale/ota4)

  If an actual message is left, it functions properly but clearing it
  does not fix the errant reporting on the next boot.

  This has been reported on both arale and krillin on multiple carriers

  TEST CASE
  1. Call the DUT but don't answer the call
  2. Leave a message on the voicemail service
  3. On the DUT
- Verify that there is a voicemail notification
- Call the voicemail
- Verify that there is a message and clear it
  4. Hang up the call
  5. Reboot the phone
  6. Check the message notification

  ACTUAL RESULT
  Notification indicates that there are messages on voicemail (while there is 
none)

  EXPECTED RESULT
  There is no voicemail message notification when the voicemail is empty.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1469266/+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 1486258] Re: Next button not working properly

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Next button not working properly

Status in Canonical System Image:
  Fix Released
Status in address-book-app package in Ubuntu:
  Fix Released

Bug description:
  r93 of rc-prosed on arale

  Create a new contact
  Press next button, to move to last name field
  Press next button again to move to phone number field

  expected result:
  cursor moves to phone number field and numeric keyboard displayed

  actual result:
  cursor moves but is not displayed and numeric keyboard is not displayed

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1486258/+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 1469208] Re: Recurrence test fails with e-d-s 3.16

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Recurrence test fails with e-d-s 3.16

Status in Canonical System Image:
  Fix Released
Status in qtorganizer5-eds package in Ubuntu:
  Fix Released

Bug description:
  This is in silo ppa:ci-train-ppa-service/landing-028

  qtorganizer5-eds fails to build with eds 3.16, seems there's a problem
  with setting recurring appointments - could be a bug in eds itself.

  See https://launchpadlibrarian.net/209417861/buildlog_ubuntu-wily-
  amd64.qtorganizer5-eds_0.1.1%2B15.04.20150508.2-0ubuntu2_BUILDING.txt.gz

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1469208/+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 1487131] Re: Camera/mic trust: mic denial in camera-app freezes camera

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Camera/mic trust: mic denial in camera-app freezes camera

Status in camera-app:
  Fix Released
Status in Canonical System Image:
  Fix Released
Status in QtMir:
  Invalid
Status in camera-app package in Ubuntu:
  Fix Released

Bug description:
  Similar, related to lp:1487126 , recording separately for the sake of
  thoroughness :) :

  TEST CASE
  1. Open camera, camera trust prompt appears
  2. Grant camera permission
  3. Switch to video
  4. Press record button, mic trust prompt appears from "qtubuntu-camera"
  5. *Deny* mic permission
  EXPECTED
  Returned to live preview
  ACTUAL
  Preview freezes

To manage notifications about this bug go to:
https://bugs.launchpad.net/camera-app/+bug/1487131/+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 1478999] Re: No snap descision or ring first received call after a boot

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  No snap descision or ring first received call after a boot

Status in Canonical System Image:
  Fix Released
Status in telepathy-ofono package in Ubuntu:
  Fix Released
Status in ubuntu-touch-session package in Ubuntu:
  Fix Released

Bug description:
  Reboot the phone
  The screen can be off or on, suspended or not
  Call the phone
  The screen turns on but there is no snap decision and the phone does not ring

  When connected via bluetooth you can answser the call using the car
  controls, but audio is not routed although the call is reported to be
  connected by the car.

  Arale running 59 with silo 19 fixes for incoming call handling

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1478999/+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 1486535] Re: [regression] ubuntu-emulator fails to start Mir demos

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  [regression] ubuntu-emulator fails to start Mir demos

Status in Canonical System Image:
  Fix Released
Status in Mir:
  Fix Committed
Status in Mir 0.14 series:
  Fix Released
Status in Mir 0.15 series:
  Fix Released
Status in goget-ubuntu-touch package in Ubuntu:
  New
Status in mir package in Ubuntu:
  Fix Released

Bug description:
  On the emulator, many Mir clients are failing to start, with errors
  ranging from

  $ mir_demo_client_egltriangle
  No active outputs found.

  $ mir_demo_client_eglsquare
  error : could not determine display size

  $ QT_QPA_PLATFORM=ubuntumirclient qmlscene test.qml
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  ASSERT: "displayOutput != nullptr" in file 
../../../src/ubuntumirclient/screen.cpp, line 183

  These all suggest the display configuration reported to clients is not
  correct. Checking this:

  $ mirout
  Connected to server: 
  Card 0: Max 2 simultaneous outputs
  Output 0: Card 0, LVDS, connected, 480x800+0+0, unused, on, 0mm x 0mm (0.0"), 
normal
   480x800  60.00*+
  Output 0: Card 0, LVDS, connected, 480x800+0+0, unused, off, 0mm x 0mm 
(0.0"), normal
   480x800  60.00*+

  which indicates there are no "used" outputs (also the 2 "Output 0"
  entries is suspicious)

  
  To bring up emulator, do:
  sudo ubuntu-emulator create touch --channel=ubuntu-touch/rc-proposed/ubuntu
  ubuntu-emulator run touch 
  and you can connect into is via adb.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1486535/+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 1487141] Re: "wants to record audio" not localized

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  "wants to record audio" not localized

Status in Canonical System Image:
  Fix Released
Status in pulseaudio package in Ubuntu:
  Confirmed

Bug description:
  Test  case.
  - Flash the phone.
  - Switch to Spanish.
  - Open the camera app.
  - Accept trust dialog (not translated, another bug).
  - Switch to video mode and record.

  Expected result.
  - Dialog must appear in Spanish.

  Actual result.
  - Dialog appears in English. See attached image. 

  current build number: 95
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1487141/+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 1475205] Re: Random Chinese character missing with Ubuntu font

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Random Chinese character missing with Ubuntu font

Status in Canonical System Image:
  Fix Released
Status in qtbase-opensource-src package in Ubuntu:
  Fix Released
Status in qtdeclarative-opensource-src package in Ubuntu:
  Invalid
Status in ubuntu-font-family-sources package in Ubuntu:
  Incomplete
Status in ubuntu-ui-toolkit package in Ubuntu:
  Invalid

Bug description:
  After applied 50 GU setting in image, we started seeing randomly
  missing Chinese characters across scopes and apps header, not clipped
  at the begin or end of string, sometimes in the middle.

  STEPS:

  1. Switch display language to zh_CN in system settings
  2. Reboot the phone

  EXPECTED:

  I should see all header strings displayed properly.

  ACTUAL:

  Randomly missing character.

  VERSIONS:

  current build number: 51
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.zh-proposed
  last update: 2015-07-16 04:59:10
  version version: 51
  version ubuntu: 20150716
  version device: 20150709-8965e37
  version custom: 20150716-819-9-6

  -- update --
  The problem of missing characters can be reproduced even on a desktop, 
outside of the header, without importing Ubuntu.Components:

  import QtQuick 2.0
  Item {
  width: 800
  height: 600

  Text {
  anchors.centerIn: parent
  text: "系统设置 one two"
  font.family: "Ubuntu"
  font.pixelSize: 69
  font.weight: Font.Light
  }
  }

  The problem only appears to occur with this specific combination of
  font family, pixelSize and weight. Tim Peeters reproduced the problem
  on vivid on a laptop without changing the default settings for the
  language (LANGUAGE="en_US").

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1475205/+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 1478547] Re: Some received messages are not shown in detail

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => 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/1478547

Title:
  Some received messages are not shown in detail

Status in Canonical System Image:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released

Bug description:
  Some SMS messages (don't know their class) are not visualised by the
  Messaging app conversation view. Some part of the message was visible
  in the notification, the summary is also shows some of their content,
  but not the conversation view. See attached image.

  
  I'm using a prepay card with BQ Aquaris 4.5, with Ubuntu 15.04 (r24). The bug 
did not appear in this release, it has been there before OTA-5 came out.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1478547/+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 1487126] Re: Camera/mic trust: initial video corrupt

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Camera/mic trust: initial video corrupt

Status in Canonical System Image:
  Fix Released
Status in QtMir:
  Invalid
Status in camera-app package in Ubuntu:
  Fix Released

Bug description:
  After granting camera and mic permission, able to record a video but
  the video is unplayable in media-player, media-player has to be
  killed.

  TEST CASE
  1. Open camera, camera trust prompt appears
  2. Grant camera permission
  3. Switch to video
  4. Press record button, mic trust prompt appears
  5. Grant mic permission
  6. Record video, press stop
  7. Swipe to photo roll, see video (preview being generated)
  8. Press play to watch video
  9. Media player opens
  EXPECTED
  Video plays
  ACTUAL
  Black screen

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1487126/+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 1467851] Re: Remove warning on deprecated theme for versions < 1.3

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Remove warning on deprecated theme for versions < 1.3

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

Bug description:
  This is slightly related to bug 1457528.

  In my case, I have an application using the 14.10 framework and importing 
Ubuntu.Components 1.0.
  In that version, Theme *is not deprecated*, therefore I shouldn't see any 
warnings.

  That should be the case up to 1.2, where Theme is still documented as
  not being deprecated.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1467851/+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 1478009] Re: creating a hotspot should disconnect from the current AP & prevent NM from auto-connecting to another known AP

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  creating a hotspot should disconnect from the current AP & prevent NM
  from auto-connecting to another known AP

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Fix Released

Bug description:
  When creating a new hotspot using the attached script, NM no longer
  disconnects from the current AP.  I'm sure I've looked at this
  sometime in the past and confirmed it wasn't connected, so this
  behavior has changed at some point.

  I tested this on arale rc-proposed image 68

  krillin (stable, #24 ) will cause the current AP to disconnect,
  however if another known AP is available, it will re-connect.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1478009/+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 1487129] Re: camera-app mic permission item blank

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  camera-app mic permission item blank

Status in Canonical System Image:
  Fix Released
Status in pulseaudio package in Ubuntu:
  In Progress
Status in ubuntu-system-settings package in Ubuntu:
  Invalid

Bug description:
  Working through camera/mic trust issues, discovering that the camera-
  app's mic item under "Other app access" is blank, will attach a
  screenie.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1487129/+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 1481913] Re: UI volume warnings need revision

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  UI volume warnings need revision

Status in Canonical System Image:
  Fix Released
Status in indicator-sound package in Ubuntu:
  Fix Released

Bug description:
  As raised in OEM bug #1474364 (the title there is poor), the warning
  scheme used by Ubuntu does not currently follow the letter of the EU
  regulations for mobile devices (it seems to follow the spirit).

  Design have now reviewed the regulations (bug #1480912), and propose:

  https://wiki.ubuntu.com/Sound#limits

  This is the diff:
  https://wiki.ubuntu.com/Sound?action=diff=146=145

  The UI notification scheme needs to be updated to match the new
  design.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481913/+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 1484184] Re: content-hub-peer-hook fails if .local/share/content-hub doesn't exist

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  content-hub-peer-hook fails if .local/share/content-hub doesn't exist

Status in Canonical System Image:
  Fix Released
Status in content-hub package in Ubuntu:
  Fix Released

Bug description:
  Tested on wily desktop, the script just exit doing nothing in this
  case

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1484184/+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 1224756] Re: Pulseaudio should integrate with trust-store

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Pulseaudio should integrate with trust-store

Status in Canonical System Image:
  Fix Released
Status in pulseaudio package in Ubuntu:
  Fix Released

Bug description:
  Currently the 'audio' policy group allows access to pulseaudio which
  allows apps to use the microphone and eavesdrop on the user.
  Pulseaudio needs to be modified to use trust-store, like location-
  service does. Integrating with trust-store means that when an app
  tries use the microphone via pulseaudio, pulseaudio will contact
  trust-store, the trust-store will prompt the user ("Foo wants to use
  the microphone. Is this ok? Yes|No"), optionally cache the result and
  return the result to pulseaudio. In this manner the user is given a
  contextual prompt at the time of access by the app. Using caching this
  decision can be remembered the next time. If caching is used, there
  should be a method to change the decision in settings.

  Targeting to T-Series for now, since the trust-store is not in a
  reusable form yet.

  Original description:
  David and the security team (inspired by an observation from Rick) discussed 
that when recording, pulseaudio should somehow unobtrusively show the user that 
it is recording. The easiest thing to do would be for pulseaudio to alert 
indicator-sound which would then turn its icon red (similar to 
indicator-message turning blue with new messages). Marking 'high' because apps 
with access to pulseaudio can currently eavedrop on users. If the app is 
allowed to do networking (the default for apps), then it can ship that 
information off to a server somewhere.

  Note 1, the alert to indicator-sound must happen via the out of
  process pulseaudio server and not the confined app itself to be
  effective.

  Note 2, we should consider how to enforce this for foreground apps
  only. Application lifecycle should probably handle this for 13.10
  (apps are suspended if not in foreground or if the screensaver is on),
  but we don't want an app on the converged device to record in the
  background when the user isn't paying attention. Example eavesdropping
  attack: start recording only when the screensaver is on (perhaps
  inhibiting the screensaver during recording would be enough).

  : "On the phone, if
  an app tries to access your ... microphone ... or video recording,
  this should be subject to permission. “Video recording” should be
  separate from “Camera” so that an app does not need two permissions
  when recording video, one for the camera and one for the microphone.
  If an app has permission to record video, it should have access to the
  microphone whenever it is recording video..."

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1224756/+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 1421583] Re: Allow users to create WiFi AP hotspots

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Allow users to create WiFi AP hotspots

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings source package in Vivid:
  Confirmed

Bug description:
  The spec [1] calls for a Hotspot item in the Cellular panel of Ubuntu
  System Settings.

  Users should be able to manage AP hotspots.

  A proof of concept [2] has been made, for AP hotspots.

  [1] https://wiki.ubuntu.com/Networking#phone-cellular
  [2] http://bazaar.launchpad.net/~mathieu-tl/+junk/touch-hotspot

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1421583/+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 1444883] Re: Emergency numbers other than 112 and 911 (and 999 for the UK) are not available in emergency mode

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Emergency numbers other than 112 and 911 (and 999 for the UK) are not
  available in emergency mode

Status in Canonical System Image:
  Fix Released
Status in dialer-app package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu:
  Invalid
Status in telephony-service package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu RTM:
  Fix Released

Bug description:
  arale device, r177, ubuntu-touch/vivid-proposed

  Steps
  1. Emergency mode (e.g. Lock phone with a passcode, slide left, tap on 
"Emergency Call")
  2. try input 911, 112 ==> OK
  2. try input 110, 119 ==> "Dial" button is inactive after number is input

  Expect
  Allow these numbers in emergency mode

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1444883/+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 1458046] Re: [touch] NetworkManager needs to inhibit sleep if hotspot is active

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   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/1458046

Title:
  [touch] NetworkManager needs to inhibit sleep if hotspot is active

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Fix Released
Status in network-manager package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed
Status in network-manager package in Ubuntu RTM:
  Confirmed

Bug description:
  As Ubuntu touch uses an auto-suspend model, it's possible for the
  system to be suspended while a user has a hotspot active and in use.

  In order to prevent such behavior, we should modify NetworkManager to
  inhibit suspend via powerd's DBus interface when hotspot is active and
  one or more clients are connected to the hotspot.   As a first pass,
  inhibiting suspend when hotspot is active would probably be
  sufficient.   This could probably be implemented via a NM dispatcher
  script, which would run when the hotspot is activated.

  :
  "* Whenever at least one person is using your hotspot, the device should not 
sleep automatically.
  * The indicator icon should be different when anyone is connected than when 
no-one is.
  * If a hotspot is set up, there should be a “Hotspot” item in the “Ways to 
reduce battery use” list in “Power” settings."

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1458046/+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 1330770] Re: click packages rely upon tls for integrity and authenticity

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  click packages rely upon tls for integrity and authenticity

Status in Canonical System Image:
  Fix Released
Status in Click Package Index:
  Fix Released
Status in Software Center Agent:
  Fix Released
Status in click package in Ubuntu:
  Fix Released
Status in ubuntu-download-manager package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  In Progress
Status in unity-scope-click package in Ubuntu:
  Fix Released
Status in ubuntu-download-manager source package in Vivid:
  New

Bug description:
  Hello, I just completed a quick review of the click source and the
  unity-scope-click source and behaviours, and found some opportunities
  for improvement.

  Debian, and Ubuntu, rely upon signed repository files with
  cryptographic hashes of packages to provide both integrity and
  authenticity checks for the packages hosted on that repository.

  The click framework and the unity-scope-click discovery and
  installation tool do not use signed repository files, nor do they have
  signatures of any sort on downloaded packages. The only integrity and
  authenticity checks are provided by the use of HTTPS.  The click
  verify command will check files within the archive against MD5sums
  stored inside the archive but the click verify command is not used
  during package installation. (This is suitable for validating
  integrity against accidental changes only.)

  While it appears that unity-scope-click properly uses HTTPS to
  download package metadata and packages, HTTPS alone is insufficient
  for our needs:

  - Someone in a position to create new certificates at any of several
  hundred certificate authorities could create certificates purporting
  to be our update servers. This actual problem has been discovered in
  the wild with several certificate authorities issuing wild-card
  certificates or even certificates with signing authority.

  - X.509 is extremely complicated; TLS is extremely complicated. Flaws
  in both are inevitable.

  - HTTPS prevents the use of caching.

  - HTTPS only 'works' for data-in-motion; it is useless for data-at-
  rest integrity and authenticity checks.

  I have not yet reviewed the tools that application authors will use to
  upload their packages to our distribution servers but note in passing
  that most of these issues are also issues for adding packages to our
  update servers -- packages in flight within our network can be
  corrupted for many reasons, packages on disk can be corrupted for many
  reasons. A signature mechanism can protect against internal network
  faults, storage faults, and provide assurance months or years later
  that an uploaded package was uploaded by someone in control of a
  corresponding private key.

  Thanks

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1330770/+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 1457528] Re: Theme.createStyleComponent deprecation useless warnings are displayed

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Theme.createStyleComponent deprecation useless warnings are displayed

Status in Canonical System Image:
  Fix Released
Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released
Status in ubuntu-ui-toolkit source package in Vivid:
  New

Bug description:
  Take that example

  "import QtQuick 2.0
  import Ubuntu.Components 0.1

  Item {
  Button {
  text: "click"
  }
  }"

  run it on wily, you get those warnings

  "QML Button: Theme.createStyleComponent() is deprecated. Use
  ThemeSettings instead."

  the warning is not helpful, it warns about a standard component issue
  (so something in the responsability of the uitk team, not the code
  writer), lists the issue on something you are not using (what is
  "Theme.createStyleComponent()" that's not used in the code example?),
  it's just confusing...

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1457528/+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 1449925] Re: SIM PIN unlock dialog mis-titled opening from indicator

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  SIM PIN unlock dialog mis-titled opening from indicator

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Fix Released

Bug description:
  Version: ubuntu-touch/stable/bq-aquaris.en r21 krillin

  Steps to reproduce:
   * 2 SIMs in the device both PIN locked
   * both SIMs connected to network
   * indicator-network -> enable Flight Mode
   * wait till disconnected
   * indicator-network -> disable Flight Mode
   * wait for indicator updated 

  Actual results:
   - hit SIM 1 unlock button, dialog titled "Enter SIM 2 PIN"
   note that dialog does acutally refer to SIM1 and will unlock it, hitting 
the Cancel "X" and then second attempt to unlock results in correct title
   - hit SIM 2 unlock button, dialog titled "Enter SIM 1 PIN"
   same behaviour as SIM1

  
  Expected result:
   - always show the correct title on the unlock dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1449925/+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 1460993] Re: Gallery requesting multiple video thumbnails when opening photo

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Gallery requesting multiple video thumbnails when opening photo

Status in Canonical System Image:
  Fix Released
Status in gallery-app package in Ubuntu:
  Fix Released

Bug description:
  I just took two short videos and four photos on the phone. When I look
  at the events page in the gallery app, I see thumbnails for the these
  just fine. I'm also tracing the requests that are made to the
  thumbnailer. When I tap on one of the photos, I see the following
  requests fired at the thumbnailer all at once (within one or two
  tenths of a second):

  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(216, 216)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(216, -1)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(231, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(256, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(291, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(341, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(402, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(477, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(558, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(657, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(768, 0)
  Create thumbnail for 
"/home/phablet/Pictures/com.ubuntu.camera/image20150602_073643136.jpg" at size 
QSize(768, 1222)

  This is horribly wasteful because the app retrieves the same image a
  dozen times. But, worse, we will cache thumbnailer in twelve different
  sizes for that same single image because we are being asked for a
  different size each time.

  Also note that requests with width or height < 0 are interpreted to
  mean "as large as possible". The second request above consequently
  causes the image to be cached in its full size (unless it's larger
  than 1920, in which case we limit it to 1920x1920 bounding box).

  Something seems definitely wrong here. The multiple requests are
  wasteful, and the different sizes mean that the cache is far less
  effective than it could be.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1460993/+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 1347906] Re: don't display notification when in the message thread

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => 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/1347906

Title:
  don't display notification when in the message thread

Status in Canonical System Image:
  Fix Released
Status in messaging-app package in Ubuntu:
  Fix Released
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  if the messaging app is open and you are in the message thread view
  and receive a message from that same person, we should not display the
  notify-osd. We should still vibrate and/or ring but skip the
  notification as it's not necessary and distracting.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1347906/+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 1360403] Re: MMS does not work with T-Mobile US

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  MMS does not work with T-Mobile US

Status in Canonical System Image:
  Fix Released
Status in lxc-android-config package in Ubuntu:
  Fix Released
Status in nuntium package in Ubuntu:
  Fix Released
Status in ofono package in Ubuntu:
  Fix Released
Status in ubuntu-download-manager package in Ubuntu:
  Invalid

Bug description:
  My /var/lib/ofono/*/gprs file contains:

  [Settings]
  Powered=1
  RoamingAllowed=0

  [context1]
  Name=T-Mobile GPRS
  AccessPointName=fast.t-mobile.com
  Username=
  Password=
  Type=internet
  Protocol=ipv6
  MessageProxy=
  MessageCenter=http://mms.msg.eng.t-mobile.com/mms/wapenc

  I guess bug #1331813 is getting in the way of IPv6 working, so I was
  told to try 'Protocol=ip', but it doesn't work either.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1360403/+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 1467743] Re: Lots of thumbnail requests with invalid size

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Lots of thumbnail requests with invalid size

Status in Canonical System Image:
  Fix Released
Status in gallery-app package in Ubuntu:
  Fix Released
Status in thumbnailer package in Ubuntu:
  New

Bug description:
  When using the gallery app, the thumbnailer gets loads of requests
  with QSize(-1,-1), for example, when opening the gallery app.

  The problem with this is that the thumbnailer interprets this to mean
  "give me the largest size you can (limited to a 1920x1920 bounding
  box). That's very expensive, especially in terms of disk space,
  because that 1920 "thumbnail" ends up going into the cache, needlessly
  hogging space.

  We are about to add a qWarning message to the QML side that reports
  invalid QSize requests. For now, we are going to retain the old
  behavior, but this will turn into an error soon.

  The most effective way to use the thumbnailer is to simply ask for an
  image in the desired size, with neither width nor height of -1. The
  thumbnailer will efficiently produce a thumbnail for that. (We do lots
  of internal caching to avoid extracting or downloading a thumbnail
  unnecessarily.)

  The thumbnailer may deliver a thumbnail that is smaller than what was
  asked for (because it never up-scales) so, if asked for a thumbnail of
  size 256, it's guaranteed not to be larger, but might be smaller (if
  the original image is smaller than what was asked for).

  Could you please adjust the gallery app behavior to ask for specific,
  valid sizes only?

  Running a tail -f on ~/.cache/upstart/dbus.log allows you to see the
  requests as they are made. Each request shows the size that was asked
  for.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1467743/+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 1485724] Re: Fail to match phone number when receiving a message from short phone number

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => 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/1485724

Title:
  Fail to match phone number when receiving a message from short phone
  number

Status in Canonical System Image:
  Fix Released
Status in libphonenumber package in Ubuntu:
  In Progress
Status in messaging-app package in Ubuntu:
  Fix Released

Bug description:
  Receiving a message from "+28909" shows the wrong contact on the
  notification.

  Steps to reproduce:

  1 - Create a contact with the phone number: +13611361530 and name "Contact 
bug"
  2 - Install "ofono-phonesim-autostart" package (sim card emulator)
  3 - reboot the device
  4 - Run:
    mc-tool update ofono/ofono/account0 string:modem-objpath=/phonesim
    mc-tool reconnect ofono/ofono/account0
  5 - Try to run the attached python script : python3 

  Expected result:
  6 - The message menu should show a messaging from number "+28909"

  Current result:
  7 - The message menu is showing a new message from contact "Contact bug"

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1485724/+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 1485021] Re: Can't review apps from inside the store

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Can't review apps from inside the store

Status in Canonical System Image:
  Fix Released
Status in unity-scope-click package in Ubuntu:
  Fix Released

Bug description:
  I can rate installed apps in the dash just fine.  But when I try to
  review an installed app from the store itself, it appears to let me do
  it, but the review never shows up.

  
  current build number: 22
  device name: mako
  channel: ubuntu-touch/stable/ubuntu
  last update: 2015-07-28 09:09:39
  version version: 22
  version ubuntu: 20150727.1
  version device: 20150210
  version custom: 20150713

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1485021/+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 1291455] Re: [greeter] Screen and input should be disabled with proximity sensor when on greeter

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => Fix Released

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

Title:
  [greeter] Screen and input should be disabled with proximity sensor
  when on greeter

Status in Canonical System Image:
  Fix Released
Status in Ubuntu UX:
  Won't Fix
Status in Unity System Compositor:
  Fix Released
Status in powerd package in Ubuntu:
  Incomplete
Status in telepathy-ofono package in Ubuntu:
  Confirmed
Status in unity-system-compositor package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  Steps to reproduce:
  * suspend your device
  * cover the proximity sensor (top left on mako)
  * call the phone

  Expecte result:
  * screen does not light up until you uncover the proximity sensor

  Current result:
  * screen lights up and you can answer the call

  This results in butt/pocket calls...

  ProblemType: Bug
  DistroRelease: Ubuntu 14.04
  Package: unity8 7.84+14.04.20140306-0ubuntu1
  Uname: Linux 3.4.0-5-mako armv7l
  ApportVersion: 2.13.3-0ubuntu1
  Architecture: armhf
  Date: Wed Mar 12 13:14:37 2014
  InstallationDate: Installed on 2014-03-12 (0 days ago)
  InstallationMedia: Ubuntu Trusty Tahr (development branch) - armhf (20140312)
  SourcePackage: unity8
  UpgradeStatus: No upgrade log present (probably fresh install)

  --
  UX Desired resolution:

  Unfortunately UX doesn't have a structured solution ready.
  UX is now collecting all the device capability related bugs as a
  requirement for the kick off of a bigger project:
  specification of device capability related behaviours.
  Marking this as "Won't fix", but it really means "it will get fixed in the 
future"

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

2015-08-31 Thread JoiHap
@Simon Between looking at the entry in the settings app and reaching the
terminal on the phone (that I used to produce the output) things might
have changed. The feeling at the time I retrieved the output was that it
was the same whether it was in the first section listed as connected in
the "connect a device:" section or in the "Connect automatically when
detected" section (so, UI informing that is not connected and command
informing that it is?). Sorry for not being more helpful.

-- 
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 1478159] Re: If FlightMode is enabled, it shouldn't be possible to activate a hotspot

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  If FlightMode is enabled, it shouldn't be possible to activate a
  hotspot

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Fix Released

Bug description:
  While testing the touch hotspot feature ( currently in silo-046 ) on
  krillin ( stable, #24 ) and arale ( rc-proposed, #58 ), I noticed that
  it's possible to enable a hotspot while FlightMode is enabled.

  Steps to reproduce:

  1. Go to the hotspot page
  2. Enter FlightMode from the indicator menu
  3. Enable the hotspot

  Expected results:
  It's not possible to activate the hotspot

  Actual results:
  It's possible to activate the hotspot

  Note, if you go to some other page, activate flight-mode and try to go
  back to the hotspot page, you will be prevented from doing so by
  system settings ( No SIM detected is shown ).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1478159/+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 1471338] Re: sometimes phone never wakes up or rings on incoming call

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  sometimes phone never wakes up or rings on incoming call

Status in Canonical System Image:
  Fix Released
Status in ofono package in Ubuntu:
  Invalid
Status in telephony-service package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  testing on krilin build 56 vivid+overlay latest
  dual sims installed

  The problem is sometimes during an incoming call the phone never wakes
  up or rings at all (and no snap decision). From the remote end the
  call just continues to ring and eventually goes to voicemail. When
  this occurs the signal strength appears to have at least 3 bars.

  It seems ofono is not notifying the upper layers that a call is incoming. 
This can be verifed by running the following command:
  dbus-monitor --system | grep CallAdded

  This never gets fired during error condition when the incoming call is
  ringing from remote end.

  Attached is the ofono log when I got it to happen once (not sure where
  in the log corresponds to the failure)

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1471338/+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 1473761] Re: SMS from A appear as to have been sent from B

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => 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/1473761

Title:
  SMS from A appear as to have been sent from B

Status in Canonical System Image:
  Fix Released
Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  Has been happening a lot since one week ago.

  Mako @ rc-proposed latest

  Reproduce:
  1. Receive sms message from person A

  What happens:
  The message appears in the message history of person B, C, …, n.

  What should happen:
  Clearly, it's crucial that a message from person A needs to appear in person 
A's message history

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1473761/+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 1481920] Re: gallery app opens empty

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  gallery app opens empty

Status in Canonical System Image:
  Fix Released
Status in gallery-app package in Ubuntu:
  Fix Released

Bug description:
  Test case.
  - Flash the phone with latest image.
  - Open the gallery app.

  Expected result.
  - Gallery app opens and shows title, menus, etc.

  Actual result.
  - No UI is presented.

  current build number: 87
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481920/+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 1445134] Re: Network manager never scanning for new access points

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   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/1445134

Title:
  Network manager never scanning for new access points

Status in Canonical System Image:
  Fix Released
Status in network-manager package in Ubuntu:
  Fix Released
Status in network-manager source package in Vivid:
  Confirmed
Status in network-manager package in Ubuntu RTM:
  Fix Released

Bug description:
  While trying to reproduce another bug related with the last seen value
  from the access points, I noticed that network manager is never really
  scanning for new access points on my desktop, not even when not
  connected.

  $ sudo nmcli g logging level debug domains wifi_scan

  Then powered an access point, but was never really able to see it.
  From syslog, noticed that there is never really a scan, which explains
  why the ap never goes away and why it is not able to find it in the
  first place.

  If I force a scan via cmdline it works as expected (and I noticed a
  scan also happens when changing connections).

  Was also able to reproduce this issue on mako, with the following image:
  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 173
  device name: mako
  channel: ubuntu-touch/devel-proposed
  alias: ubuntu-touch/vivid-proposed
  last update: 2015-04-16 14:58:58
  version version: 173
  version ubuntu: 20150416
  version device: 20150210
  version custom: 20150416

  In the mako case, I booted with a known connection in place, it
  connected successfully but it never really scans for other access
  points. Scan works fine after disconnecting though.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: network-manager 0.9.10.0-4ubuntu14
  ProcVersionSignature: Ubuntu 3.19.0-14.14-generic 3.19.3
  Uname: Linux 3.19.0-14-generic x86_64
  ApportVersion: 2.17.1-0ubuntu2
  Architecture: amd64
  CurrentDesktop: Unity
  Date: Thu Apr 16 14:21:42 2015
  IfupdownConfig:
   # interfaces(5) file used by ifup(8) and ifdown(8)
   auto lo
   iface lo inet loopback
  InstallationDate: Installed on 2013-10-29 (534 days ago)
  InstallationMedia: Ubuntu 13.10 "Saucy Salamander" - Release amd64 
(20131016.1)
  IpRoute:
   default via 192.168.1.1 dev wlan0  proto static  metric 1024
   10.0.3.0/24 dev lxcbr0  proto kernel  scope link  src 10.0.3.1
   169.254.0.0/16 dev lxcbr0  scope link  metric 1000
   192.168.1.0/24 dev wlan0  proto kernel  scope link  src 192.168.1.16
  SourcePackage: network-manager
  UpgradeStatus: Upgraded to vivid on 2013-10-31 (532 days ago)
  mtime.conffile..etc.NetworkManager.NetworkManager.conf: 
2013-11-04T02:19:36.923463
  nmcli-nm: Error: command ['nmcli', '-f', 'all', 'nm'] failed with exit code 
2: Error: Object 'nm' is unknown, try 'nmcli help'.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1445134/+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 1425172] Re: Network indicator lists the non-exist AP (timeout for the AP to be removed is too big, ~6min)

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   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/1425172

Title:
  Network indicator lists the non-exist AP (timeout for the AP to be
  removed is too big, ~6min)

Status in Canonical System Image:
  Fix Released
Status in indicator-network package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings package in Ubuntu:
  Incomplete
Status in network-manager package in Ubuntu RTM:
  Fix Released

Bug description:
  Summary: Network indicator lists the non-exist AP
  Steps to reproduce:
  1. Boot to system
  2. Scroll down the Network indicator
  3. It lists about 10 AP (In Taipei office)
  4. Go to another place and check network indicator again

  Expected Result:
  It should not list non-exist AP and only show available AP

  Actual Result:
  It shows about 12 AP on the screen but only two are real AP for connecting, 
and others 10 are from last list.

  This is reproducible on mako/krillin on both RTM and vivid.

  The main issue is that the timeout for the AP to be removed from the
  known AP list is too big when comparing with other phones.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1425172/+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 1230366] Re: Please provide Ubuntu camera service that integrates with trust-store

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Fix Committed => Fix Released

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

Title:
  Please provide Ubuntu camera service that integrates with trust-store

Status in Canonical System Image:
  Fix Released
Status in android package in Ubuntu:
  Fix Released
Status in qtubuntu-camera package in Ubuntu:
  Invalid
Status in qtubuntu-camera package in Ubuntu RTM:
  Invalid

Bug description:
  Currently Ubuntu Touch is using the android camera-service and that is
  the plan for 13.10.

  Going forward in 14.04, the android camera-service will no longer be
  used and camera access is going to move to the Ubuntu side. There was
  discussion of either using HAL directly (direct access to devices) or
  using a camera-service type thing in Ubuntu.

  Using devices directly causes at least a few problems:
   * can't prevent more than one user from accessing the device at a time
   * enumerating camera devices for apparmor policy is extra maintenance for 
porters
   * can't provide a contextual runtime prompt for access (like we (will) do 
with online accounts, location, microphone). This is particularly important for 
application confinement.

  Instead of direct hardware access, an out of process helper (in
  relation to the app) can be used to address all of these problems,
  similar to what pulseaudio does for audio. This service can ensure
  only one user can access the device at a time and since the service
  accesses the the device files on the app's behalf, we don't need to
  enumerate devices in /dev in policy. Furthermore, when an app accesses
  the service (ideally over DBus), the service can contact trust-store,
  the trust-store will prompt the user ("Foo wants to access the camera.
  Is this ok? Yes|No"), then optionally cache the result and return the
  result to the service. In this manner the user is given a contextual
  prompt at the time of access by the app. By using caching this
  decision can be remembered the next time. If caching is used, there
  should be a method to change the decision in system settings.

  If direct hardware access is needed for performance reasons, it is
  possible to use fd delegation in AppArmor and have the service open
  the device and pass the fd to the app without having to enumerate the
  /dev devices. Please talk to jjohansen if pursuing this option.

  Lastly, bug #1230391 discusses providing a visual cue during
  background recording for audio. We will need to do the same for video
  recording. Feel free to add a task to bug #1230391 if there is work to
  integrate this new service with that visual cuing.

  This should be implemented in time for shippable devices to address
  the application confinement concern.

  : "On the
  phone, if an app tries to access your ... camera ... or video
  recording, this should be subject to permission..."

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1230366/+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 1317085] Re: [mir]Touchpad edge swipes

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1317085

Title:
  [mir]Touchpad edge swipes

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  I think it would be awesome to support touchpad edge swipes (fingers
  crossing the edge of the touchpad, swiping in). I don't know if we
  would be swiping with two fingers or one (one finger is more likely to
  be confused with another action that the user wants to perform, like
  moving the mouse cursor).

  Functionality can be the same or very similar to what we are doing on
  the phone: right-edge to switch between apps (or bring in the side
  stage), left edge shows the launcher, bottom edge would depend on what
  the app wants to do with it, and top edge can show system settings.

  --
  Desired design:

  Two finger swipe across the touchpad edge should perform corresponding Unity8 
touch interface edge gesture.
  - Left edge short swipe -> invokes the launcher if hidden
  - Left edge long swipe -> reveals desktop app
  - Right edge short swipe -> switches to the previously used app
  - Right edge long swipe -> spread/task switcher
  - Bottom edge swipe -> bottom edge action in currently focused app window
  - Top edge swipe -> indicators reveal

  Note that gesture should be traceable the same way as in touch
  interface. So as soon as the touchpad edge swipe is detected user
  controls the gesture and progress of the action is visible on the
  screen. Use control is the key throughout the gesture. Here we should
  follow what happens in Unity8 touch interface.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1317085/+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 1485773] Re: new_only option when writing reports stops some data from being written

2015-08-31 Thread Martin Pitt
This was worked around for stables in bug 1485787

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

Title:
  new_only option when writing reports stops some data from being
  written

Status in apport package in Ubuntu:
  In Progress

Bug description:
  I was trying to figure out why package installation failures didn't
  always have package versions in them e.g.

  https://errors.ubuntu.com/problem/abc807de9d9c87d965fea31c865192edb30b6738
  https://errors.ubuntu.com/oops/7dcf4756-42b9-11e5-a0ab-fa163e78b027

  Digging into this I discovered that package_hook from apport writes a
  Package key but does not include the version of the package with that
  key.  Apparently, I fixed the same thing 18 months ago with the
  kernel_oops file.

  apport (2.13.2-0ubuntu4) trusty; urgency=medium

* data/kernel_oops: include the package version in addition to the
  name

   -- Brian Murray   Fri, 14 Feb 2014 14:09:39 -0800

  Investigating the matter further it, report.write() is called with
  new_only=True which means that even though the package version
  information has been collected (by add_package_info) we do not write
  it to the report. Naturally, this is rather confusing and means that
  fixes to data collection in apport may not appear in all reports e.g.
  if we change how origin information is calculated (which appears in
  the value for Package) we need to change package_hook and kernel_oops
  for the updated origin information.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1485773/+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 1485773] Re: new_only option when writing reports stops some data from being written

2015-08-31 Thread Martin Pitt
Reproducer:

  echo foo | /usr/share/apport/package_hook -p apport

The displayed information includes the full Package: field, but the
written .crash file does now.

** Changed in: apport (Ubuntu)
   Status: New => In Progress

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

Title:
  new_only option when writing reports stops some data from being
  written

Status in apport package in Ubuntu:
  In Progress

Bug description:
  I was trying to figure out why package installation failures didn't
  always have package versions in them e.g.

  https://errors.ubuntu.com/problem/abc807de9d9c87d965fea31c865192edb30b6738
  https://errors.ubuntu.com/oops/7dcf4756-42b9-11e5-a0ab-fa163e78b027

  Digging into this I discovered that package_hook from apport writes a
  Package key but does not include the version of the package with that
  key.  Apparently, I fixed the same thing 18 months ago with the
  kernel_oops file.

  apport (2.13.2-0ubuntu4) trusty; urgency=medium

* data/kernel_oops: include the package version in addition to the
  name

   -- Brian Murray   Fri, 14 Feb 2014 14:09:39 -0800

  Investigating the matter further it, report.write() is called with
  new_only=True which means that even though the package version
  information has been collected (by add_package_info) we do not write
  it to the report. Naturally, this is rather confusing and means that
  fixes to data collection in apport may not appear in all reports e.g.
  if we change how origin information is calculated (which appears in
  the value for Package) we need to change package_hook and kernel_oops
  for the updated origin information.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1485773/+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 1482401] Re: Race condition when removing read sms's from the indicator menu

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Status: Confirmed => In Progress

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

Title:
  Race condition when removing read sms's from the indicator menu

Status in Canonical System Image:
  In Progress
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  
  If messaging-app acknowledges the message even before the indicator receives 
it, the message will never be automatically removed from messaging-menu, as the 
event in history service is already marked as read and messaging-app will never 
ask to acknowledge that message again.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1482401/+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 1485787] Re: package_hook does not include package version

2015-08-31 Thread Martin Pitt
Will handle the fix for wily in bug 1485773.

** Changed in: apport (Ubuntu)
   Status: Incomplete => Invalid

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

Title:
  package_hook does not include package version

Status in apport package in Ubuntu:
  Invalid
Status in apport source package in Trusty:
  Fix Committed
Status in apport source package in Vivid:
  Fix Committed

Bug description:
  All of these problem reports are missing a package version:

  https://errors.ubuntu.com/problem/abc807de9d9c87d965fea31c865192edb30b6738

  This is because package_hook in apport only writes the following:

  pr['Package'] = options.package

  We should include the package version in the problem report.

  Test Case
  -
  1) echo "You have failed this city." | /usr/share/apport/package_hook -p 
apport
  2) grep "^Package" /var/crash/apport.1000.crash

  With the current version of apport you'll only see the package name,
  with the version from -proposed you'll see the package version in
  addition to the name.

  Regression Potential
  
  Worst case scenario I screwed the patch up and we loose the package name too, 
but given that it works in wily and there is a test for it in test_hooks.py 
that seems unlikely.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1485787/+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 1484562] Re: In history view, pressing delete key should remove current date/history entry

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

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

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

Title:
  In history view, pressing delete key should remove current
  date/history entry

Status in Canonical System Image:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  [DESKTOP ONLY]

  In the new wide history view layout, pressing the Delete key doesn’t have any 
effect.
  For consistency with the new wide new tab view (where pressing delete either 
hides the currently selected top site or removes the currently selected 
bookmark), pressing delete should remove the currently selected history entry 
if active focus is on the right panel, and it should remove all entries for the 
currently selected date if active focus is on the left panel.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1484562/+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 1484299] Re: /usr/bin/unity8-dash:11:unity::scopes::ScopeMetadata::display_name:scopes_ng::SettingsModel::update_child_scopes:scopes_ng::Scope::settings:unity::shell::scopes::Sco

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** 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 unity8 in Ubuntu.
https://bugs.launchpad.net/bugs/1484299

Title:
  
/usr/bin/unity8-dash:11:unity::scopes::ScopeMetadata::display_name:scopes_ng::SettingsModel::update_child_scopes:scopes_ng::Scope::settings:unity::shell::scopes::ScopeInterface::qt_metacall:scopes_ng::Scope::qt_metacall

Status in Canonical System Image:
  Fix Committed
Status in unity-scopes-shell package in Ubuntu:
  Fix Released
Status in unity8 package in Ubuntu:
  Invalid

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

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1484299/+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 1331952] Re: [OOBE] UI language should follow SIM card preferred language

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1331952

Title:
  [OOBE] UI language should follow SIM card preferred language

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Test steps:
  1. Insert a SIM card with preferred language Finnish
  2. Boot the phone
  Expected result: UI language is Finnish
  Actual result: UI language is English. Finnish or other languages can be 
manually selected from the settings UI.

  The SIM card's list of preferred languages is correctly given by oFono:
  dbus-send --print-reply --system --dest=org.ofono /ril_0 
org.ofono.SimManager.GetProperties

dict entry(
   string "PreferredLanguages"
   variant array [
 string "fi"
 string "sv"
 string "en"
  ]
)

  A technical reference is ETSI TS 102 221, section 13.3 EF_PL
  (Preferred Languages). But this is also a business requirement for OEM
  and operator partners.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1331952/+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 1379381] Re: [Dash] shows splash screen with "Scopes" when starting up the phone

2015-08-31 Thread Albert Astals Cid
** No longer affects: unity8 (Ubuntu RTM)

** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1379381

Title:
  [Dash] shows splash screen with "Scopes" when starting up the phone

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Ubuntu 14.10 r274

  1. Start up the phone.
  2. Immediately when the welcome screen appears, unlock it.

  What you see: A splash screen with the word "Scopes".

  What you should see: The first thing you see on unlocking the phone
  should not be the word "Scopes".

  Some of the ways this bug could be fixed:
  - rename the Dash app from "Scopes" to "Ubuntu"
  - use a different splash screen mode for the Dash
  - special-case the Dash so that it has no splash screen at all

  
  -- UX Comment ---

  Remove the work 'Scopes' from this splash screen and update the
  spinner animation with the new one.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1379381/+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 1473472] Re: Invalid webapp name determination when a webapp-properties.json file exists

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => David Barth (dbarth)

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

Title:
  Invalid webapp name determination when a webapp-properties.json file
  exists

Status in Canonical System Image:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  Invalid webapp name determination when a webapp-properties.json file
  exists

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1473472/+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 1330939] Re: [scopes toolkit] Cards force background when summary is added

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1330939

Title:
  [scopes toolkit] Cards force background when summary is added

Status in The Savilerow project:
  Triaged
Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Using:
  {
  "schema-version" : 1,
  "template" : {
  "category-layout" : "grid",
  "card-size": "large",
  "overlay": false
  },
  "components" : {
  "title" : "category",
  "summary":"summary",
  "art" : {
  "field": "art2",
  "aspect-ratio": 1.4,
  "fill-mode": "fit"
  }
  }
  }

  A white frame appears around the card. If the summary is remove, the
  white frame goes away. Checked with John Lea and this is not as
  intended by design

  --
  Solution

  Default background should be transparent

To manage notifications about this bug go to:
https://bugs.launchpad.net/savilerow/+bug/1330939/+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 1349471] Re: [Dash] See more/less sounds wrong

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1349471

Title:
  [Dash] See more/less sounds wrong

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Collapsed/Expandable scopes show a label "See more" and expanded
  scopes accordingly "See less". This sounds weird and should rather be
  "Show more" and "Show less". The user is instructing the phone to show
  more entries, it's not that the phone sees them.

  I only really noticed with the german translation "Mehr sehen" which
  seems really uncommon in user interfaces, but after consulting with a
  native english speaker we seem to agree that the issue is the actual
  string, not the translation.

  
  -- UX Comment ---

  Desired solution: change the text from 'See more/See less' to
  'More/Less. Consistent with the use of this pattern in the Browser
  app.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1349471/+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 1378267] Re: Suspended app screenshots are blurry

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1378267

Title:
  Suspended app screenshots are blurry

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  It's really obvious that an app has been suspended when I switch to it
  and the screengrab is really blurry. Would be really nice if it wasn't
  blurry.

  See screenshots. One shows blurry clock that I switched to, and then
  the non-blurry real clock a few seconds later.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1378267/+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 1392308] Re: [Indicators] Cannot browse indicators in daylight

2015-08-31 Thread Albert Astals Cid
*** This bug is a duplicate of bug 1457098 ***
https://bugs.launchpad.net/bugs/1457098

** This bug has been marked a duplicate of bug 1457098
   [Indicators] Expanded indicators are not visible in direct sunlight

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

Title:
  [Indicators] Cannot browse indicators in daylight

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  While doing GPS tests with the phone in daylight, I found it difficult
  to open the location indicator, because of the current color scheme.
  The non-active indicators are too dim to be read.

  -- UX --
  I think this is a good candidate for user testing

  -

  Desired resolution:

  Highlighted text in #FF
  Adjust the colour value to #88

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1392308/+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 1440877] Re: [Indicators] Inactive indicator icons are not visible in bright light

2015-08-31 Thread Albert Astals Cid
*** This bug is a duplicate of bug 1457098 ***
https://bugs.launchpad.net/bugs/1457098

** This bug has been marked a duplicate of bug 1457098
   [Indicators] Expanded indicators are not visible in direct sunlight

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

Title:
  [Indicators] Inactive indicator icons are not visible in bright light

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  In bad light conditions (bright) it is very hard to select the right
  tab in the quick settings menu on Ubuntu Phone.  This is because the
  contrast between the grey icon and the black background is to low.
  When I wanted to switch on the GPS in the car I wasn't able to find
  the right tab because I couldn't see the icons and I just couldn't
  give the mounted phone a closer look.

  Another color combination: white = inaktive, blue = aktive would
  increase the usability.

  
  -

  Desired resolution:

  Highlighted text in #FF
  Adjust the colour value to #88

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1440877/+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 1428277] Re: Icon in notification center too small

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  Icon in notification center too small

Status in libqtelegram:
  Invalid
Status in Ubuntu UX:
  Won't Fix
Status in ubuntu-settings-components package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Won't Fix

Bug description:
  See image attached. The tappable telegram icon is somewhat small and
  is not trivial to tap, or at least I'm not being able to tap it in a
  way it works in a single tap.

  - Design comment -
06/08/2015

  There are new design for UX and visuals for notifications.
  Document name "Notification system UX spec " page ( 29 - 34)
  
https://docs.google.com/document/d/1xDSZ_dnAMAlhgFnnyjJEibaITXjVLp1_pnj_tATNm9I/edit#
  When new design will be implemented we will do user testing to be sure what 
icons are tappable.

To manage notifications about this bug go to:
https://bugs.launchpad.net/libqtelegram/+bug/1428277/+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 1421192] Re: [oobe] Initial boot wizard does not include timezone

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => New

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

Title:
  [oobe] Initial boot wizard does not include timezone

Status in Ubuntu UX:
  Fix Committed
Status in indicator-datetime package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  New

Bug description:
  During the initial boot the Ubuntu phone asks information regarding
  various things like language, passcode etc. Timezone or date/time is
  not asked, it always defaults to UTC+0.

  This confirmed with Ubuntu 14.10(r16) and 15.04(r01)

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1421192/+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 1398170] Re: [design] [greeter] The greeter and screen rotation

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1398170

Title:
  [design] [greeter] The greeter and screen rotation

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This is basically just a bug to ask a question of the design team:
  are there plans for rotation support for the greeter?  Right now it
  doesn't really do anything special.  I'd guess you don't want it to
  rotate on a phone factor, but maybe for a tablet.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1398170/+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 1427311] Re: welcome wizard - no feedback that wifi connection succeeded

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => 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/1427311

Title:
  welcome wizard - no feedback that wifi connection succeeded

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  New

Bug description:
  Preconditions:
  Be in a environment where dozes of wifi access points are available, or at 
least where it has more APs than the wifi list can fit on the screen, so that 
it gets scrollable

  Steps:
  1 - boot phone into the Welcome Wizard
  2 - on the wifi connection page, scroll down to some access point and tap on 
it.
  3 - fill in the password in the dialog and tap on connect/ok

  Expected outcome:
  Dialog closes and you can see that you're now connected to that wifi AP you 
selected (e.g. you immediately see that the wifi you selected is now green with 
its checkbox ticked).

  Actual outcome:
  Dialog closes and you are brought back to the wifi selection list, where you 
cannot see the wifi AP you selected anywhere. You have to scroll the list all 
the way up to finally find your selected wifi there.

   UX Design -
  This bug is covered by the new OOBE design.
  You can see the new spec here 
https://docs.google.com/a/canonical.com/document/d/1pZ-Ro--2eaRzjZKNRoYAeDvQHMkCuyvVuPFWFQfPW4s/edit?usp=sharing

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1427311/+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 1433442] Re: QML's ListView currentItem changes on resize

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Medium

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => kevin gunn (kgunn72)

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

Title:
  QML's ListView currentItem changes on resize

Status in Canonical System Image:
  Fix Committed
Status in qtdeclarative-opensource-src package in Ubuntu:
  Triaged
Status in unity8 package in Ubuntu:
  Fix Released

Bug description:
  When i drag the edge of the window of the unity8-dash, and adjust the
  width of it quickly, the scope will changes to another one.

  Description:  Ubuntu Vivid Vervet (development branch)
  Release:  15.04
  unity8: 8.02+15.04.20150302-0ubuntu1

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1433442/+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 1464201] Re: Please merge rsyslog 8.9.0-3 (main) from Debian unstable (main)

2015-08-31 Thread Louis Bouchard
Hello pitti,

Following your advice, I did a new merge of 8.12 from debian. As it
turns out, it was beneficial in the sense that this very new 8.12 has
modification that I had sent upstream which required a specific patch.

I disabled the build of the kafka & mongo db packages in debian/rules as
suggested, and dropped the rsyslog-dmesg service alltogether.

Here is the latest debdiff tested against the debian package.  I also
tested install & reran the tests outlined in the FFE bug just to be
sure.

** Patch removed: "rsyslog_debian_to_ubuntu_v2.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/1464201/+attachment/4453387/+files/rsyslog_debian_to_ubuntu_v2.debdiff

** Patch added: "rsyslog_debian_8.12.0_to_ubuntu.debdiff"
   
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/1464201/+attachment/4455134/+files/rsyslog_debian_8.12.0_to_ubuntu.debdiff

** Summary changed:

- Please merge rsyslog 8.9.0-3 (main) from Debian unstable (main)
+ Please merge rsyslog 8.12.0-1 (main) from Debian unstable (main)

** Description changed:

- debian unstable has rsyslog-8.9.0-3. Ubuntu available version is quite
+ debian unstable has rsyslog-8.12.0-1 Ubuntu available version is quite
  behind

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

Title:
  Please merge rsyslog 8.12.0-1 (main) from Debian unstable (main)

Status in rsyslog package in Ubuntu:
  Confirmed

Bug description:
  debian unstable has rsyslog-8.12.0-1 Ubuntu available version is quite
  behind

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/rsyslog/+bug/1464201/+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 1447504] Re: Phone app: Wrong number is shown in call history

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => New

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

Title:
  Phone app: Wrong number is shown in call history

Status in Ubuntu UX:
  Fix Committed
Status in dialer-app package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  arale, r180, ubuntu-touch/vivid-proposed

  Steps
  1. Launch dialer-app
  2. Input number a Chinese phone number, e.g. 18812345678, and dial
  3. End the call
  4. Review in call history
  =>
  The number is displayed as (881) 234-5678

  Expected:
  1) number should be complete whithout missing the leading "1"
  2) format should be like 188-1234-5678, or just 18812345678

  : "An international phone number should be
  presented following the E.123 format, while a domestic phone number
  should be presented following the national format for the country that
  the phone was in at the time."

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1447504/+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 1479442] Re: IN CAR: Previous Calls log is not shown in the car display

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => Wishlist

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

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => John McAleely (john.mcaleely)

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

Title:
  IN CAR: Previous Calls log is not shown in the car display

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  Confirmed

Bug description:
  STEPS:
  Requirements: DUT a list of previous calls and a car that support bluetooth 
phones (Skoda Superb 2013 in my case)

  1. Connect DUT to the car
  2. In the car menu navigate to previous calls log

  EXPECTED:
  I expect to see a list of past calls similar to those I see on the phone 
itself

  ACTUAL:
  Car shows no previous calls log at all

  VERSIONS:
  current build number: 71
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-28 18:01:08
  version version: 71
  version ubuntu: 20150728
  version device: 20150709-8965e37
  version custom: 20150716-819-8-42

  MODIFICATIONS:
  Installation of silo19 for in car bt fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1479442/+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 1485773] Re: only_new option when writing reports stops some data from being written

2015-08-31 Thread Martin Pitt
Reminder: Revert http://bazaar.launchpad.net/~apport-
hackers/apport/trunk/revision/2799 after fixing this.

** Summary changed:

- new_only option when writing reports stops some data from being written
+ only_new option when writing reports stops some data from being written

** Changed in: apport (Ubuntu)
Milestone: None => ubuntu-15.09

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

Title:
  only_new option when writing reports stops some data from being
  written

Status in apport package in Ubuntu:
  In Progress

Bug description:
  I was trying to figure out why package installation failures didn't
  always have package versions in them e.g.

  https://errors.ubuntu.com/problem/abc807de9d9c87d965fea31c865192edb30b6738
  https://errors.ubuntu.com/oops/7dcf4756-42b9-11e5-a0ab-fa163e78b027

  Digging into this I discovered that package_hook from apport writes a
  Package key but does not include the version of the package with that
  key.  Apparently, I fixed the same thing 18 months ago with the
  kernel_oops file.

  apport (2.13.2-0ubuntu4) trusty; urgency=medium

* data/kernel_oops: include the package version in addition to the
  name

   -- Brian Murray   Fri, 14 Feb 2014 14:09:39 -0800

  Investigating the matter further it, report.write() is called with
  new_only=True which means that even though the package version
  information has been collected (by add_package_info) we do not write
  it to the report. Naturally, this is rather confusing and means that
  fixes to data collection in apport may not appear in all reports e.g.
  if we change how origin information is calculated (which appears in
  the value for Package) we need to change package_hook and kernel_oops
  for the updated origin information.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/apport/+bug/1485773/+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 1446298] Re: Should show power dialog when turning on screen with a long-press

2015-08-31 Thread Albert Astals Cid
*** This bug is a duplicate of bug 1486953 ***
https://bugs.launchpad.net/bugs/1486953

** This bug has been marked a duplicate of bug 1486953
   Power-off dialog doesn't appear if power key press begins when screen is off

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

Title:
  Should show power dialog when turning on screen with a long-press

Status in Ubuntu UX:
  Fix Committed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  To work around the power dialog appearing on resume, I implemented a
  band-aid fix [1] that prevented showing the dialog when the screen was
  off.  But I didn't think of the case where you are waking up your
  device with an intentional long-press to show the power dialog.

  Currently, we don't show the dialog, we just turn on the screen.
  Ideally we'd also show the power dialog.

  This is a break-out bug from bug 1445662.

  [1] https://code.launchpad.net/~mterry/unity8/no-shutdown-dialog-
  while-suspended/+merge/246445

  -UX comment-

  When the screen is in idle mode and you long press the power button
  the following should happen:

  1. Screen turns on and stays on
  2. Power Dialog popps up after the same delay as if the screen was turned on 
already.

  I checked Android and iOS and all of then ask for confirmation from
  the user.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-ux/+bug/1446298/+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 1479438] Re: IN CAR: Battery levels not shared via bluetooth for in car experience

2015-08-31 Thread Pat McGowan
** Changed in: canonical-devices-system-image
   Importance: Undecided => High

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

** Changed in: canonical-devices-system-image
 Assignee: (unassigned) => John McAleely (john.mcaleely)

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

Title:
  IN CAR: Battery levels not shared via bluetooth for in car experience

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  Triaged

Bug description:
  STEPS:
  Requirements: DUT a car with bluetooth and phone connection kit (Skoda Superb 
2013 in my instance)

  1. Connect the DUT to the car
  2. On the display panel the battery always shows full

  EXPECTED:
  I expect to see the actual level of the battery on the device

  ACTUAL:
  The display always shows the battery at 100% I assume the default if no info 
is available.

  VERSIONS:
  current build number: 71
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-28 18:01:08
  version version: 71
  version ubuntu: 20150728
  version device: 20150709-8965e37
  version custom: 20150716-819-8-42

  MODIFICATIONS:
  Installation of silo19 for in car bt fix

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1479438/+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 1481673] Re: No mechanism for displaying internal downloads in transfer indicator

2015-08-31 Thread Pat McGowan
** 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
 Assignee: (unassigned) => John McAleely (john.mcaleely)

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

Title:
  No mechanism for displaying internal downloads in transfer indicator

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

Bug description:
  We're currently adding support to the webbrowser-app to allow it
  download files internally in addition to sending them to other
  applications, currently download manager has a metadata property
  titled "showInIndicator", however this doesn't appear to have any
  effect when the transfer is happening inside an application without
  content-hub involvement.

  This results in an inconsistent experience for the user, as some
  downloads from the browser show up in the indicator (those opened
  immediately with other apps) and some don't (those downloaded for
  later use).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1481673/+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 1471581] Re: [Notifications] "Delete" string in the messaging indicator is confusing

2015-08-31 Thread Albert Astals Cid
** Changed in: unity8 (Ubuntu)
   Status: Incomplete => Won't Fix

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

Title:
  [Notifications] "Delete" string in the messaging indicator is
  confusing

Status in Canonical System Image:
  New
Status in Ubuntu UX:
  Won't Fix
Status in ubuntu-settings-components package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Won't Fix

Bug description:
  Hello,
  I don't know is this right place for that bug, but I haven't found better. 
When we receive new SMS, e-mail or similar, we get information in notification 
bar. When we swipe that notify to right we get string 'Delete' and icon of 
trash. I thought that will permanently delete that sms/e-mail from system. But 
it's deleting it only from notify bar. It's little confusing. I think better 
will be 'dismiss', 'reject', 'disgard', 'hide' and change of icon. What do you 
think about that?

  - Design comment -
06/08/2015

  There are new design for UX and visuals for notifications.
  Document name "Notification system UX spec " page (27)
  
https://docs.google.com/document/d/1xDSZ_dnAMAlhgFnnyjJEibaITXjVLp1_pnj_tATNm9I/edit#

  "User can dismiss it by swiping either way: left to right or right to left.
  User can swipe either way to unlock the screen, if she does, all 
notifications will disappear and be recorded in the notification centre."

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1471581/+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 1398016] Re: In the "unlock" screen the message "No data sources available" still in English after change the system language to pt-BR

2015-08-31 Thread Víctor R . Ruiz
*** This bug is a duplicate of bug 1376296 ***
https://bugs.launchpad.net/bugs/1376296

Still an issue.

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

Title:
  In the "unlock" screen the message "No data sources available" still
  in English after change the system language to pt-BR

Status in Canonical System Image:
  Confirmed
Status in libusermetrics package in Ubuntu:
  Confirmed

Bug description:
  The "unlock" screen  message "No data sources available" still in
  English after change the system language to pt-BR

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1398016/+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 1475610] Re: ubuntu-download-manager tests fail when built with GCC 5

2015-08-31 Thread Michael Terry
** Changed in: ubuntu-download-manager (Ubuntu)
   Status: Confirmed => Fix Released

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

Title:
  ubuntu-download-manager tests fail when built with GCC 5

Status in ubuntu-download-manager package in Ubuntu:
  Fix Released

Bug description:
  see
  
https://launchpadlibrarian.net/211732710/buildlog_ubuntu-wily-amd64.ubuntu-download-manager_0.9%2B15.04.20150203-0ubuntu2~gcc5.1_BUILDING.txt.gz

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-download-manager/+bug/1475610/+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   >