[Bug 1671155] Re: Autopilot tests that involve special keys fail

2017-04-27 Thread Richard Huddie
** Changed in: autopilot
   Status: Fix Committed => Fix Released

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

Title:
  Autopilot tests that involve special keys fail

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

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


[Bug 1679574] Re: Autopilot FTBFS during override_dh_auto_test

2017-04-21 Thread Richard Huddie
** Changed in: autopilot (Ubuntu)
   Status: In Progress => Fix Committed

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

Title:
  Autopilot FTBFS during override_dh_auto_test

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

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


[Bug 1679574] Re: Autopilot FTBFS during override_dh_auto_test

2017-04-04 Thread Richard Huddie
** Branch linked: lp:~canonical-platform-qa/autopilot/fix-zesty-build

** Changed in: autopilot (Ubuntu)
 Assignee: (unassigned) => Richard Huddie (rhuddie)

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

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

Title:
  Autopilot FTBFS during override_dh_auto_test

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

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


[Bug 1676995] [NEW] App switcher does not respond to tab events

2017-03-28 Thread Richard Huddie
Public bug reported:

17.04 deb based unity8 session running in VM.
unity8: 8.15+17.04.20170321-0ubuntu1

To reproduce:
1) Boot up unity8 deb based session.
2) Load an application either from launcher or app drawer, e.g. System Settings
3) Press Alt+Tab to display task switcher and then release Tab key to leave 
switcher showing.
4) Press Tab again.

Expected result:
Pressing Tab should cycle through the available apps.

Actual result:
The selected app does not change using the Tab key.

Note: Once the unity8 session has been locked and unlocked, the Tab key
selection will work again.

** Affects: canonical-devices-system-image
 Importance: Undecided
 Status: New

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


** Tags: unity8-desktop

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

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

Title:
  App switcher does not respond to tab events

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1676995/+subscriptions

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


[Bug 1646042] Re: Timeout running long script using adt-virt-qemu

2016-12-01 Thread Richard Huddie
Some more investigation shows some slightly different behaviour
depending on what format data is sent in. If there is a single line (as
above in echo example) of >4096 bytes then it is received as a 4096
chunk using a read() and executed, appending '\n'. The remaining
commands from next chunk don't get executed in this case.

If there are commands sent on multiple lines, (e.g. socket.send(b'echo
aaa\necho bbb\n')) then each line is received in a separate read() and
then executed. Result of each read() is returned in a write(). If the
individual lines exceed 4096 then they will also be truncated.

For the case of the test log file the lines are less than 4096, but the
last command hangs on write(), which I've not been able to reproduce yet
using a dummy script.

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

Title:
  Timeout running long script using adt-virt-qemu

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

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


[Bug 1646042] Re: Timeout running long script using adt-virt-qemu

2016-12-01 Thread Richard Huddie
Attaching strace log extract from the qemu which shows the logs from the
autopkgtest sh process running on ttyS1:
http://pastebin.ubuntu.com/23564079/

This shows the commands to apt-get download the list of deb files,
followed by command to extract each one. At this point it hangs.

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

Title:
  Timeout running long script using adt-virt-qemu

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

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


[Bug 1646042] [NEW] Timeout running long script using adt-virt-qemu

2016-11-30 Thread Richard Huddie
Public bug reported:


When using adt-virt-qemu to run a script that is larger than ~4215 bytes on a 
qemu image, the script fails to start execution and a timeout occurs.

This behaviour was observed when attempting to unpack a large list of
deb files when running the qemu with ro-apt setup-command. A full test
log is shown at [1].

For smaller scripts it works fine. But when the script size is about
4215 bytes or more it will start to timeout and fail. I've tried bulking
out a smaller script with comment lines to confirm the problem is
related to the size of the script, rather than the commands in the
script. I've also checked that the number of bytes returned by the
socket.send() at [2] is correct to confirm it is sending the whole
script.

Simple steps to reproduce:

$ python -c 'print "echo " * 1000' > /tmp/scr
$ autopkgtest -d --setup-commands /tmp/scr tests/testpkg-simple/ -- qemu 
/srv/vm/autopkgtest-zesty-amd64.img


[1] http://pastebin.ubuntu.com/23529002/
[2] 
https://anonscm.debian.org/git/autopkgtest/autopkgtest.git/tree/virt/autopkgtest-virt-qemu#n384

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

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

Title:
  Timeout running long script using adt-virt-qemu

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

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


[Bug 1626028] [NEW] ubuntu-app-stop doesn't work with native apps

2016-09-21 Thread Richard Huddie
Public bug reported:

ubuntu-app-launch-tools version: 0.9+15.04.20160913.1-0ubuntu1
Tested on arale version 425 from ubuntu-touch/rc-proposed/meizu.en

Steps:
1) ubuntu-app-launch ubuntu-system-settings
   system settings app launches as expected.
2) ubuntu-app-list
   ubuntu-system-settings is listed as expected.
3) ubuntu-app-stop ubuntu-system-settings

Expected result:
ubuntu-system-settings app should be stopped.

Actual result:
ubuntu-system-settings is not stopped. The same behaviour is observed for other 
native apps, e.g. dialer-app. But ubuntu-app-stop works fine with click-apps 
and web-apps.

Following error is reported:

Unable to stop job application-legacy app_id ubuntu-system-settings
instance_id ubuntu-system-settings-:
GDBus.Error:com.ubuntu.Upstart0_6.Error.UnknownInstance: Unknown
instance: ubuntu-system-settings-ubuntu-system-settings-

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

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

Title:
  ubuntu-app-stop doesn't work with native apps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-app-launch/+bug/1626028/+subscriptions

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


[Bug 1346633] Re: [enhancement] Autopilot testing needs to know screen coordinates of widgets on screen

2016-04-19 Thread Richard Huddie
A note to confirm this issue is affecting autopilot test automation on
tablet devices, where the shell runs in landscape mode, but the display
panel orientation is fixed portrait. When sending touch input co-
ordinates relative to the shell orientation they must be transformed to
the display orientation. But this requires knowledge of what the native
display orientation is for the device being tested.

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

Title:
  [enhancement] Autopilot testing needs to know screen coordinates of
  widgets on screen

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

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


[Bug 1261720] Re: unity8-autopilot is missing an emulator for app management

2016-01-21 Thread Richard Huddie
In the ubuntu-system-tests project we have recently added some autopilot 
helpers for doing exactly this using the right-edge task manager:
http://bazaar.launchpad.net/~canonical-platform-qa/ubuntu-system-tests/trunk/view/head:/ubuntu_system_tests/helpers/unity8/phone_stage.py

This helper allows tests to switch tasks and close them exactly as a user would 
do, example tests here:
http://bazaar.launchpad.net/~canonical-platform-qa/ubuntu-system-tests/trunk/view/head:/ubuntu_system_tests/tests/test_app_switcher.py

These helpers could be re-used for this task.

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

Title:
  unity8-autopilot is missing an emulator for app management

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

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


[Bug 1512378] Re: On first boot the setup wizard reporting page is not consistent with the default diagnostics setting in ubuntu-system-settings.

2015-11-03 Thread Richard Huddie
** Also affects: canonical-devices-system-image
   Importance: Undecided
   Status: New

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

Title:
  On first boot the setup wizard reporting page is not consistent with
  the default diagnostics setting in ubuntu-system-settings.

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-devices-system-image/+bug/1512378/+subscriptions

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


[Bug 1512378] [NEW] On first boot the setup wizard reporting page is not consistent with the default diagnostics setting in ubuntu-system-settings.

2015-11-02 Thread Richard Huddie
Public bug reported:

Device: arale
Image: version 152 from ubuntu-touch/rc-proposed/meizu.en

Steps:

1) Using a freshly flashed device, run through the settings wizard. Note that 
the reporting page is not shown.
2) Complete the edges demo.
3) Open System Settings -> Security & Privacy.
4) Note that default diagnostics setting is 'sent'.
5) Without changing any settings close ubuntu-system-settings.
6) Now enable the wizard again: adb shell rm 
/home/phablet/.config/ubuntu-system-settings/wizard-has-run
7) Reboot device.
8) Run through the settings wizard again.
9) This time note that the reporting page is shown.

Expected result:

On first boot the reporting page of the settings wizard should be
consistent with the default value of the reporting setting in ubuntu-
system-settings.

** Affects: unity8 (Ubuntu)
 Importance: High
 Status: New

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

Title:
  On first boot the setup wizard reporting page is not consistent with
  the default diagnostics setting in ubuntu-system-settings.

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

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


[Bug 1483668] Re: Remove use of autopilot simulated keyboard when using OSK

2015-10-27 Thread Richard Huddie
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: In Progress => Fix Released

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

Title:
  Remove use of autopilot simulated keyboard when using OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1483668/+subscriptions

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


[Bug 1483668] Re: Remove use of autopilot simulated keyboard when using OSK

2015-08-13 Thread Richard Huddie
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New = In Progress

** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Importance: Undecided = High

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

Title:
  Remove use of autopilot simulated keyboard when using OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1483668/+subscriptions

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


[Bug 1483668] [NEW] Remove use of autopilot simulated keyboard when using OSK

2015-08-11 Thread Richard Huddie
Public bug reported:

It is now the case that if Unity8 detects a keyboard it will
automatically hide the OSK and stop it from appearing. This includes the
simulated keyboard used by Autopilot.

Now that textfield.write() supports using OSK, we should remove all
instances of the autopilot simulated keyboard when the OSK is being
used. The simulated keyboard is currently used to send Home and End key
events to move the cursor to the start or end of a string, because these
keys are not present on the OSK.

Some new helper methods in ubuntu_keyboard now allow the Home and End
key events to be sent through the maliit-server without having to create
a new simulated keyboard, which would cause Unity8 to hide the OSK. So
the textfield helper methods should be updated to use the new helpers
from ubuntu_keyboard and remove usage of the autopilot simulated
keyboard when the OSK is being used.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Assignee: Richard Huddie (rhuddie)
 Status: New

** Branch linked: lp:~canonical-platform-qa/ubuntu-ui-
toolkit/fix-1483668-osk-remove-simulated-keyboard

** Changed in: ubuntu-ui-toolkit (Ubuntu)
 Assignee: (unassigned) = Richard Huddie (rhuddie)

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

Title:
  Remove use of autopilot simulated keyboard when using OSK

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1483668/+subscriptions

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


[Bug 1471848] Re: Autopilot always wants to emulate Nexus10 on desktop for UITK gallery tests

2015-07-27 Thread Richard Huddie
From looking at these logs, it appears the issue is perhaps not to do
with the screen not having enough resolution.

The final assertion shows the observed window width and height (1280,
800) is not equal to the expected width and height (1280, 776). So it
seems to have failed because the observed window height is actually
greater than expected.

However, I was not able to reproduce the above test failure.

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

Title:
  Autopilot always wants to emulate Nexus10 on desktop for UITK gallery
  tests

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1471848/+subscriptions

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


[Bug 1476715] Re: Autopilot tests on desktop fail when trying to detect maliit

2015-07-22 Thread Richard Huddie
I have made a fix for this on the linked branch above. Please could you
re-test with this branch to confirm if the issue is resolved.


** Branch linked: 
lp:~canonical-platform-qa/ubuntu-ui-toolkit/fix-1476715-get-keyboard-desktop

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

Title:
  Autopilot tests on desktop fail when trying to detect maliit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1476715/+subscriptions

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


[Bug 1476715] Re: Autopilot tests on desktop fail when trying to detect maliit

2015-07-22 Thread Richard Huddie
** Changed in: ubuntu-ui-toolkit (Ubuntu)
   Status: New = In Progress

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

Title:
  Autopilot tests on desktop fail when trying to detect maliit

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1476715/+subscriptions

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


[Bug 1461571] [NEW] Text field clear button does not work with first predicted word

2015-06-03 Thread Richard Huddie
Public bug reported:

ubuntu-touch/rc-proposed/bq-aquaris.en-proposed #219

When entering text into a text field using OSK with predictive text
enabled, it is not possible to clear the first word using the clear
button.

Steps:
1) Load Ubuntu UI Toolkit Gallery
2) Select Text Field - Standard
3) Type in a few characters using the OSK, so that the word in text field 
remains underlined and suggestions are displayed by OSK.
4) Press clear button in the text field.

Expected result:
The text in the text field should be cleared.

Actual result:
The clear button does not work and the text remains.


Note that if there are multiple words entered then the clear button will work 
as expected. This problem only happens if there is only 1 word that is being 
deleted.

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: High
 Status: New

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

Title:
  Text field clear button does not work with first predicted word

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-ui-toolkit/+bug/1461571/+subscriptions

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


[Bug 1457044] [NEW] test_indicator_icon_must_be_visible_after_rotation_locked can fail due to looping horizontal swipe

2015-05-20 Thread Richard Huddie
Public bug reported:

The following failure in
test_indicator_icon_must_be_visible_after_rotation_locked is sometimes
seen on jenkins:

https://jenkins.qa.ubuntu.com/job/generic-deb-autopilot-runner-wily-
mako/14/consoleFull

Here the first vertical swipe completes successfully (Dragging from
685,27 to 685,1280) and then a horizontal swipe is performed (Dragging
from 45,63 to 763,63). This horizontal swipe is then repeated in a loop
until the test finally times out after 2 hours.


Test run on mako image #203 from ubuntu-touch/devel-proposed.

** Affects: unity8 (Ubuntu)
 Importance: High
 Status: New

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

Title:
  test_indicator_icon_must_be_visible_after_rotation_locked can fail due
  to looping horizontal swipe

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

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


[Bug 1457047] [NEW] Autopilot helper to change scope is unreliable

2015-05-20 Thread Richard Huddie
Public bug reported:

When using the autopilot helpers to swipe to a different scope I have
seen failures where the swipe operation sometimes does not work and so
the scope does not change. I've seen this on both krillin and mako.

The methods used are _scroll_to_left_scope() and _scroll_to_right_scope() in:
http://bazaar.launchpad.net/~unity-team/unity8/trunk/view/head:/tests/autopilot/unity8/shell/emulators/dash.py

I found that by slowing down the speed of the swipe (using rate of 5
instead of 10) that the swipe operation was reliable.

** Affects: unity8 (Ubuntu)
 Importance: High
 Status: New

** Branch linked: lp:~canonical-platform-qa/unity8/slow-down-scope-swipe

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

Title:
  Autopilot helper to change scope is unreliable

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

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


[Bug 1450824] [NEW] ubuntu-emulator create should include --developer-mode option

2015-05-01 Thread Richard Huddie
Public bug reported:

In order to enable automated testing of ubuntu emulator images we need a
way to have developer mode enabled by default on new images. Currently
it is only possible to do this by manually going to system settings and
turning it on through the UI.

A --developer-mode option on the command line would be ideal, which
would allow emulator images to be created with developer mode enabled by
default. E.g.

ubuntu-emulator create my-emulator --arch=i386 --channel=ubuntu-touch
/devel-proposed --developer-mode=True

** Affects: phablet-tools (Ubuntu)
 Importance: High
 Status: New

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

Title:
  ubuntu-emulator create should include --developer-mode option

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/phablet-tools/+bug/1450824/+subscriptions

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


[Bug 1421009] Re: unity8 sometimes hangs on boot

2015-03-26 Thread Richard Huddie
I was using mako devel-proposed image #148 with the silo installed.

I'll try and reproduce again and get some more info.

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

Title:
  unity8 sometimes hangs on boot

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

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


[Bug 1421009] Re: unity8 sometimes hangs on boot

2015-03-26 Thread Richard Huddie
I tried again to reproduce the issue, using #150 + silo 18 (including
autopilot update). I've not been able to reproduce it again after many
retries.

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

Title:
  unity8 sometimes hangs on boot

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

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


[Bug 1421009] Re: unity8 sometimes hangs on boot

2015-03-25 Thread Richard Huddie
I tried reproducing this issue on silo 18 using
address_book_app.tests.test_add_contact.TestAddContact.test_go_to_add_contact.

The test failed on the 10th attempt in the same way as in the logs:
http://people.canonical.com/~tjyrinki/qt5/fail/qtbase_ubuntu5/ap-
2015_03_24-21_48_11-address_book_app-1-018.tests

Watching the test, the address-book-app froze as it was launching,
displaying a frozen spinner on the loading screen. Autopilot then timed
out waiting for the app to launch and reported the introspection
failure.

Subsequent tests then failed with the maliit-server error as reported in
the same logs.

The only crash file reported was: _usr_lib_telepathy_mission-
control-5.32011.crash

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

Title:
  unity8 sometimes hangs on boot

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

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


[Bug 1419849] Re: gallery-app dashboard test failures

2015-02-13 Thread Richard Huddie
** Also affects: gallery-app (Ubuntu RTM)
   Importance: Undecided
   Status: New

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

Title:
  gallery-app dashboard test failures

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

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


[Bug 1419024] [NEW] adt-run fails to import MagickWand for running com.ubuntu.camera click autopilot tests

2015-02-06 Thread Richard Huddie
Public bug reported:

Trying to run autopilot tests for com.ubuntu.camera with adt-run fails
to import MagickWand shared library:

Loading tests from: /tmp/adt-run.GmaZzr/tree/tests/autopilot

Failed to import test module: camera_app.tests.test_capture
Traceback (most recent call last):
  File /tmp/adt-run.GmaZzr/deps/usr/lib/python3/dist-packages/wand/api.py, 
line 137, in module
libraries = load_library()
  File /tmp/adt-run.GmaZzr/deps/usr/lib/python3/dist-packages/wand/api.py, 
line 107, in load_library
raise IOError('cannot find library; tried paths: ' + repr(tried_paths))
OSError: cannot find library; tried paths: []

During handling of the above exception, another exception occurred:

Traceback (most recent call last):
  File /usr/lib/python3.4/unittest/loader.py, line 312, in _find_tests
module = self._get_module_from_name(name)
  File /usr/lib/python3.4/unittest/loader.py, line 290, in 
_get_module_from_name
__import__(name)
  File 
/tmp/adt-run.GmaZzr/tree/tests/autopilot/camera_app/tests/test_capture.py, 
line 13, in module
from wand.image import Image
  File /tmp/adt-run.GmaZzr/deps/usr/lib/python3/dist-packages/wand/image.py, 
line 20, in module
from .api import MagickPixelPacket, libc, libmagick, library
  File /tmp/adt-run.GmaZzr/deps/usr/lib/python3/dist-packages/wand/api.py, 
line 163, in module
'Try to install:\n  ' + msg)
ImportError: MagickWand shared library not found.
You probably had not installed ImageMagick library.
Try to install:
  apt-get install libmagickwand-dev


To run these tests I am using attached modified manifest.json for camera app 
file (see lp:1419022) and command:
adt-run --override-control=./path/to/modified/manifest.json 
--click=com.ubuntu.camera --- ssh -s adb

Using autopkgtest 3.9.4

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

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

Title:
  adt-run fails to import MagickWand for running com.ubuntu.camera click
  autopilot tests

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

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


[Bug 1419024] Re: adt-run fails to import MagickWand for running com.ubuntu.camera click autopilot tests

2015-02-06 Thread Richard Huddie
** Attachment added: manifest.json
   
https://bugs.launchpad.net/ubuntu/+source/autopkgtest/+bug/1419024/+attachment/4313895/+files/manifest.json

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

Title:
  adt-run fails to import MagickWand for running com.ubuntu.camera click
  autopilot tests

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

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


[Bug 1417966] [NEW] adt-run does not work with autopilot on emulator

2015-02-04 Thread Richard Huddie
Public bug reported:


When trying to run autopilot tests (lp:ubuntu-sanity-tests) on the ubuntu 
emulator, the test fails with the following error. If the autopilot tests are 
installed and run directly on the emulator, they will work ok. This problem 
only happens when trying to use adt-run:

Traceback (most recent call last):
  File 
/tmp/adt-run.tQuWXi/build.KbZ/real-tree/ubuntu_sanity_tests/tests/test_edges_demo.py,
 line 41, in setUp
super().setUp()
  File 
/tmp/adt-run.tQuWXi/build.KbZ/real-tree/ubuntu_sanity_tests/tests/base.py, 
line 42, in setUp
super().setUp()
  File 
/tmp/adt-run.tQuWXi/deps/usr/lib/python3/dist-packages/unity8/shell/tests/__init__.py,
 line 164, in setUp
_uinput._touch_device = _uinput.create_touch_device()
  File 
/tmp/adt-run.tQuWXi/deps/usr/lib/python3/dist-packages/autopilot/utilities.py,
 line 265, in wrapped
return fn(*args, **kwargs)
  File 
/tmp/adt-run.tQuWXi/deps/usr/lib/python3/dist-packages/autopilot/input/_uinput.py,
 line 235, in create_touch_device
version=0x2, devnode=_get_devnode_path())
  File 
/tmp/adt-run.tQuWXi/deps/usr/lib/python3/dist-packages/evdev/uinput.py, line 
66, in __init__
self._verify()
  File 
/tmp/adt-run.tQuWXi/deps/usr/lib/python3/dist-packages/evdev/uinput.py, line 
186, in _verify
raise UInputError(msg.format(self.devnode))
evdev.uinput.UInputError: /dev/uinput cannot be opened for writing

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

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

Title:
  adt-run does not work with autopilot on emulator

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

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


[Bug 1417966] Re: adt-run does not work with autopilot on emulator

2015-02-04 Thread Richard Huddie
Adding emulator environment details:

current build number: 90
device name: generic_x86
channel: ubuntu-touch/devel-proposed
alias: ubuntu-touch/vivid-proposed
last update: 2015-02-02 03:18:30
version version: 90
version ubuntu: 20150202
version device: 20150129
version custom: 20150202

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

Title:
  adt-run does not work with autopilot on emulator

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

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


[Bug 1408350] [NEW] 'apt-get update' should be configurable as part of testbed setup

2015-01-07 Thread Richard Huddie
Public bug reported:

It would be useful to add a flag to automatically allow 'apt-get update'
to be run during testbed setup.

Currently this can be done using --setup-commands option:
'mount -o remount,rw /; apt-get update; mount -o remount,ro /'

But it would be much easier to have a flag to allow this to be
configured as part of the setup procedure.

This step is required to ensure device package lists don't became out of
sync with archive.

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

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

Title:
  'apt-get update' should be configurable as part of testbed setup

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

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


[Bug 1407949] [NEW] Cannot use imagemagick with adt-run

2015-01-06 Thread Richard Huddie
Public bug reported:

Trying to use imagemagick 'convert-im6' in an autopilot test using adt-run 
generates the following error:
convert-im6: error while loading shared libraries: libMagickCore-6.Q16.so.2: 
cannot open shared object file: No such file or directory

The imagemagick library file gets installed to the following directory, but it 
cannot be found:
/tmp/adt-run.cdEia7/deps/usr/lib/arm-linux-gnueabihf/libMagickCore-6.Q16.so.2.0.0

If imagemagick is installed on the device directly then the test will
work. This problem occurs only when trying to install and run
imagemagick using adt-run.

Tested on mako vivid-proposed #58, with read-only testbed.

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

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

Title:
  Cannot use imagemagick with adt-run

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

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


[Bug 1399576] [NEW] Cannot introspect settings wizard

2014-12-05 Thread Richard Huddie
Public bug reported:

Currently it is not possible to introspect the settings wizard as it
doesn't provide an option to load the qt testability driver. This should
be done if environment variable QT_LOAD_TESTABILITY is set to 1.

This is required to write autopilot tests for the settings wizard.

In vivid the wizard is planned to move to unity8, so this issue will be
resolved by that. However, in rtm we still need to be able to introspect
the wizard so we can write autopilot tests for it.

** Affects: ubuntu-system-settings (Ubuntu RTM)
 Importance: High
 Status: New


** Tags: qa-automated-testing

** Package changed: ubuntu-system-settings (Ubuntu) = ubuntu-system-
settings (Ubuntu RTM)

** Tags added: qa-automated-testing

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

Title:
  Cannot introspect settings wizard

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu-rtm/+source/ubuntu-system-settings/+bug/1399576/+subscriptions

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


[Bug 1393791] [NEW] Cannot unlock PIN locked SIM

2014-11-18 Thread Richard Huddie
Public bug reported:

ubuntu-touch/vivid-proposed: mako image #25
indicator-network: 0.5.1+15.04.20141103-0ubuntu1

SUMMARY:
When a PIN lock is applied to the SIM there is no method to unlock the SIM 
after rebooting the device.

STEPS:
1) With unlocked SIM inserted, enable a PIN lock.
 Settings - Security  Privacy - SIM PIN
2) Reboot phone
3) Swipe down network indicator

RESULT:
1) SIM PIN is set successfully
2) Phone reboots, but there is no SIM PIN prompt displayed during boot. SIM 
remains locked.
3) There is no Unlock option displayed on the network-indicator. Unkown is 
displayed for SIM.

EXPECTED RESULT:
SIM unlock dialog should be displayed during boot. Also SIM unlock option 
should exist on network indicator.

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

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

Title:
  Cannot unlock PIN locked SIM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-network/+bug/1393791/+subscriptions

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


[Bug 1393791] Re: Cannot unlock PIN locked SIM

2014-11-18 Thread Richard Huddie
** Tags added: qa-sanity

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

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

Title:
  Cannot unlock PIN locked SIM

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/indicator-network/+bug/1393791/+subscriptions

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


[Bug 1382466] [NEW] Greeter lock timeout can be reset by rebooting device

2014-10-17 Thread Richard Huddie
Public bug reported:

14.09-proposed image #113

STEPS:
1. Ensure passphrase is set.
2. Lock device.
3. At locked greeter, attempt to unlock using incorrect passphrase 7 times 
until 'Device Locked' notice is displayed. This displays a 5 minute timeout 
before device can be unlocked again.
4. Reboot device straight away.
5. At locked greeter attempt to unlock device again.

EXPECTED:
The lock period should persist after reboot so it is not possible to unlock the 
device until the timeout period has expired.

ACTUAL:
The lock period is removed, so it is possible to unlock (or attempt to unlock) 
device immediately after reboot.

** Affects: unity8 (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Greeter lock timeout can be reset by rebooting device

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

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


[Bug 1382033] [NEW] [SIM PIN] 'Incorrect PIN' warning is not cleared from display for SIM2 PIN entry

2014-10-16 Thread Richard Huddie
Public bug reported:

14.09-proposed image #109

STEPS:
1. Ensure 2 SIMs inserted into device with PIN lock enabled
2. Boot up
3. At SIM1 PIN entry insert incorrect PIN once
4. Insert correct SIM1 PIN on second attempt (do this reasonably quickly before 
the warning disappears)

EXPECTED RESULT:
SIM2 PIN entry should display with no warning message

ACTUAL RESULT:
The incorrect PIN warning is still displayed for SIM2 PIN entry, when no PIN 
has been entered for SIM2.

** Affects: ubuntu-system-settings (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  [SIM PIN] 'Incorrect PIN' warning is not cleared from display for SIM2
  PIN entry

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1382033/+subscriptions

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


[Bug 1380567] Re: Music plays through device's loudspeaker when incoming call received with BT headset connected

2014-10-16 Thread Richard Huddie
** Summary changed:

- Ring tone and music both play through device's loudspeaker when incoming call 
received
+ Music plays through device's loudspeaker when incoming call received with BT 
headset connected

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

Title:
  Music plays through device's loudspeaker when incoming call received
  with BT headset connected

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

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


[Bug 1382123] [NEW] [SIM PIN] Very fast PIN entry message displayed before SIM PIN entry dialog

2014-10-16 Thread Richard Huddie
Public bug reported:

14.09-proposed image #109

STEPS:
1. Ensure at least 1 SIM inserted with PIN lock
2. Boot up
3. Just before SIM 1 PIN entry, a white message will very quickly flash on the 
screen for approx 0.1 second: 'Enter SIM 1 PIN'
4. The SIM 1 PIN entry dialog will then be correctly displayed

This will also happen for SIM 2 as well.

EXPECTED RESULT:
The very brief message should not be displayed.

** Affects: ubuntu-system-settings (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  [SIM PIN] Very fast PIN entry message displayed before SIM PIN entry
  dialog

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1382123/+subscriptions

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


[Bug 1382129] [NEW] [SIM PIN] Retry count is not displayed following a reboot

2014-10-16 Thread Richard Huddie
Public bug reported:

14.09-proposed image #109

STEPS:
1. Ensure at least 1 SIM inserted with PIN lock
2. Boot up
3. At SIM PIN entry, enter incorrect PIN for fist attempt. The number of 
retries left is displayed to user.
4. Reboot phone and wait for SIM PIN entry dialog

EXPECTED RESULT:
After the phone has rebooted the SIM PIN entry dialog should still display how 
many retries the user has left before the SIM is blocked.

ACTUAL RESULT:
After a reboot the SIM PIN entry dialog does not show how many retry attempts 
the user has left before the SIM is blocked.

If the user inputs 2 incorrect PINs there is a dialog warning the user
that the 3rd will be the last attempt before the SIM is blocked. However
if the user reboots at this point, there is no warning to the user to
indicate that this is the 3rd and final attempt when they come to enter
their PIN.

Comparing to Android, this will display the number of retries left after
a reboot has occured.

** Affects: ubuntu-system-settings (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  [SIM PIN] Retry count is not displayed following a reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1382129/+subscriptions

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


[Bug 1380567] [NEW] Ring tone and music both play through device's loudspeaker when incoming call received

2014-10-13 Thread Richard Huddie
Public bug reported:

krillin ubuntu-rtm/14.09-proposed build 101

SUMMARY:
With a Bluetooth headset connected and listening to music, the ring tone and 
music will both play through device loudspeaker when an incoming call is 
received.

STEPS:
1) Pair and connect the Bluetooth headset
2) Play music through headset
3) Receive an incoming call

EXPECTED RESULT:
The device should remain silent (as is behaviour for wired headset).
The music should pause.
The ring tone should play through the headset.

ACTUAL RESULT:
The music and the ring tone both play through the device's loudspeaker.
The ring tone also plays through the headset (as expected).

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


** Tags: bluetooth rtm14

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

Title:
  Ring tone and music both play through device's loudspeaker when
  incoming call received

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

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


[Bug 1376344] Re: MTP can access locked device data after rebooting

2014-10-02 Thread Richard Huddie
I re-tested this on a fresh install. In this case it takes 2 reboots of
the device at the locked greeter screen to show this problem. It is
still possible to access device data over MTP without unlocking the
device.

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

Title:
  MTP can access locked device data after rebooting

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

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


[Bug 1376344] [NEW] MTP can access locked device data after rebooting

2014-10-01 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Device: ubuntu-rtm/14.09 build 3
Desktop: Ubuntu 14.10

SUMMARY:
MTP can access locked device data after rebooting

STEPS:
1) Ensure device is locked with PIN/passphrase and showing locked greeter
2) Insert USB cable and try to access device content over MTP - No content is 
displayed as expected
3) Reboot device, leaving USB cable connected
4) When device is rebooted and still locked, try and access device content over 
MTP again

EXPECTED RESULT:
It should not be possible to view device content using MTP whilst the device is 
locked

ACTUAL RESULT:
You can copy and view all content on device using MTP whilst device is still 
locked.

** Affects: mtp (Ubuntu)
 Importance: Critical
 Status: New


** Tags: mtp rtm14

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

Title:
  MTP can access locked device data after rebooting

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

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


[Bug 1358750] Re: [Video aggregator] New videos are added to the video scope only after reboot

2014-09-26 Thread Richard Huddie
I have just re-tested this with the above .debs installed. When I insert
SD card with new videos on, they appear straight away in the Videos
scope with no re-boot needed.

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

Title:
  [Video aggregator] New videos are added to the video scope only after
  reboot

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

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


[Bug 1371641] Re: Long delay exiting Bluetooth settings after disabling Bluetooth

2014-09-23 Thread Richard Huddie
Re-tested this on 14.09-proposed #56 but can no longer reproduce the
issue on that build.

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

Title:
  Long delay exiting Bluetooth settings after disabling Bluetooth

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1371641/+subscriptions

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


[Bug 1369632] Re: After disconnecting and reconnecting device to MTP host it is not possible to delete a folder using MTP

2014-09-23 Thread Richard Huddie
I can still reproduce the issue on 14.09-proposed #56. I am attaching some test 
data which I am copying to Pictures folder.
So the exact steps are:
1) Connect krillin to MTP host over USB
2) Copy test data folder1 to Pictures folder
3) Remove USB cable
4) Re-insert USB cable
5) Delete folder1 from Pictures

At this point the delete will fail and the device becomes un-responsive.

** Attachment added: test_data.tar.gz
   
https://bugs.launchpad.net/ubuntu/+source/mtp/+bug/1369632/+attachment/4212297/+files/test_data.tar.gz

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

Title:
  After disconnecting and reconnecting device to MTP host it is not
  possible to delete a folder using MTP

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

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


[Bug 1371583] Re: Cannot play video from SD card in videos scope

2014-09-22 Thread Richard Huddie
Attaching media-hub.log, but no apparmor issues in there.

** Attachment added: media-hub.log
   
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1371583/+attachment/4211225/+files/media-hub.log

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

Title:
  Cannot play video from SD card in videos scope

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/media-hub/+bug/1371583/+subscriptions

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


[Bug 1371583] Re: Cannot play video from SD card in videos scope

2014-09-22 Thread Richard Huddie
attaching syslog, which shows following errors at end of file:
Sep 22 15:31:25 ubuntu-phablet kernel: [  253.043564] 
(3)[6317:scoperunner]type=1400 audit(1411399885.805:253): apparmor=DENIED 
operation=open profile=com.ubuntu.scopes.youtube_youtube_1.0.11 
name=/proc/6317/attr/current pid=6317 comm=scoperunner requested_mask=r 
denied_mask=r fsuid=32011 ouid=32011
Sep 22 15:31:25 ubuntu-phablet kernel: [  253.044104] 
(3)[6317:scoperunner]type=1400 audit(1411399885.805:254): apparmor=DENIED 
operation=mkdir profile=com.ubuntu.scopes.youtube_youtube_1.0.11 
name=/run/user/32011/scopes/leaf-net/ pid=6317 comm=scoperunner 
requested_mask=c denied_mask=c fsuid=32011 ouid=32011
Sep 22 15:31:25 ubuntu-phablet kernel: [  253.045258] 
(3)[6317:scoperunner]type=1400 audit(1411399885.805:255): apparmor=DENIED 
operation=open profile=com.ubuntu.scopes.youtube_youtube_1.0.11 
name=/home/phablet/.config/libaccounts-glib/accounts.db pid=6317 
comm=scoperunner requested_mask=rw denied_mask=rw fsuid=32011 ouid=32011
Sep 22 15:31:25 ubuntu-phablet kernel: [  253.045585] 
(3)[6317:scoperunner]type=1400 audit(1411399885.805:256): apparmor=DENIED 
operation=open profile=com.ubuntu.scopes.youtube_youtube_1.0.11 
name=/home/phablet/.config/libaccounts-glib/accounts.db pid=6317 
comm=scoperunner requested_mask=r denied_mask=r fsuid=32011 ouid=32011
Sep 22 15:31:27 ubuntu-phablet kernel: [  255.020891] (2)[986:init]init: 
sys_prop: permission denied uid:32011  name:bwc.mm.VideoDecodeCodec
Sep 22 15:31:27 ubuntu-phablet kernel: [  255.024525] (2)[986:init]init: 
sys_prop: permission denied uid:32011  name:bwc.mm._Profile
Sep 22 15:31:28 ubuntu-phablet kernel: [  255.898217] (0)[986:init]init: 
sys_prop: permission denied uid:32011  name:bwc.mm._Profile

** Attachment added: syslog
   
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1371583/+attachment/4211581/+files/syslog

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

Title:
  Cannot play video from SD card in videos scope

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/media-hub/+bug/1371583/+subscriptions

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


[Bug 1363153] Re: Can't open the ciborium-ui app (external drives) anymore after formating the sdcard

2014-09-19 Thread Richard Huddie
I have also come across this bug.

When you eject and re-insert the SD card it will start to work again,
but until you do that the SD card drive is not mounted.

This problem is also seen when you connect the device to desktop using
MTP. You cannot view the SD card after formatting until it has been
ejected and re-inserted.

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

Title:
  Can't open the ciborium-ui app (external drives) anymore after
  formating the sdcard

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

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


[Bug 1358750] Re: [Video aggregator] New videos are added to the video scope only after reboot

2014-09-19 Thread Richard Huddie
This problem is also seen when you insert an SD card containing videos.
They only show on the scope after a reboot.

** Tags added: rtm14

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

Title:
  [Video aggregator] New videos are added to the video scope only after
  reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1358750/+subscriptions

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


[Bug 1371583] [NEW] Cannot play video from SD card in videos scope

2014-09-19 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Device: krillin ubuntu-rtm/14.09 build 1

SUMMARY:
Cannot play video from SD card in videos scope

STEPS:
1) Insert SD card into device containing a video file.
I am using a video recorded on the device and then copied to the SD card under 
Videos folder using MTP.

2) Reboot device. This is needed due to bug 1358750:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-
remote/+bug/1358750

3) Navigate to Videos scope
4) Try to play video

EXPECTED RESULT:
The video thumbnail should be displayed and it should be possible to play the 
video.

ACTUAL RESULT:
The video thumbnail is displayed (although sometimes the default thumbnail is 
shown), but when you try to play the video nothing happens at all.

** Affects: unity-scope-video-remote (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Cannot play video from SD card in videos scope

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1371583/+subscriptions

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


[Bug 1371583] Re: Cannot play video from SD card in videos scope

2014-09-19 Thread Richard Huddie
** Tags added: sdcard

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

Title:
  Cannot play video from SD card in videos scope

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1371583/+subscriptions

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


[Bug 1358750] Re: [Video aggregator] New videos are added to the video scope only after reboot

2014-09-19 Thread Richard Huddie
** Tags added: sdcard

** Changed in: unity-scope-video-remote (Ubuntu)
   Importance: Undecided = High

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

Title:
  [Video aggregator] New videos are added to the video scope only after
  reboot

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1358750/+subscriptions

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


[Bug 1363153] Re: Can't open the ciborium-ui app (external drives) anymore after formating the sdcard

2014-09-19 Thread Richard Huddie
** Tags added: sdcard

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

Title:
  Can't open the ciborium-ui app (external drives) anymore after
  formating the sdcard

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

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


[Bug 1371583] Re: Cannot play video from SD card in videos scope

2014-09-19 Thread Richard Huddie
** Changed in: unity-scope-video-remote (Ubuntu)
   Importance: High = Critical

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

Title:
  Cannot play video from SD card in videos scope

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scope-video-remote/+bug/1371583/+subscriptions

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


[Bug 1369964] Re: Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-19 Thread Richard Huddie
** Attachment added: Log file from trying to disconnect the bluetooth speaker
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1369964/+attachment/4208945/+files/application-legacy-ubuntu-system-settings-.log

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1369964] Re: Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-19 Thread Richard Huddie
** Attachment added: 1_pairing_no_name.png
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1369964/+attachment/4208968/+files/1_pairing_no_name.png

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1369964] Re: Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-19 Thread Richard Huddie
** Attachment added: 3_paired.png
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1369964/+attachment/4208970/+files/3_paired.png

** Changed in: bluez (Ubuntu)
   Status: Incomplete = New

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1369964] Re: Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-19 Thread Richard Huddie
I also noticed that when pairing this device for the first time, the name is 
not visible in the list and the properties screen is malformed. See attachments 
of screen shots for details:
1_pairing_no_name.png  - No name is displayed (even after waiting)
2_device_details.png  - The screen is not formed correctly, but the Connect 
button still works
3_paired.png  - Here the correct name is displayed and the device still works 
as expected.

For all further pairing attempts with this device the correct name is
displayed and the connect screen is correctly formed. It is only for the
first attempt that this happens.

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1369964] Re: Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-19 Thread Richard Huddie
** Attachment added: 2_device_details.png
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1369964/+attachment/4208969/+files/2_device_details.png

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1371641] [NEW] Long delay exiting Bluetooth settings after disabling Bluetooth

2014-09-19 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Device: krillin ubuntu-rtm/14.09 build 1

SUMMARY:
Long delay exiting Bluetooth settings after disabling Bluetooth

STEPS:
1) Navigate to Bluetooth settings from System Settings menu
2) Disable Bluetooth (if it's not already enabled then enable it first)
3) Press the back icon to return to System settings

EXPECTED RESULT:
It should return immediately to System settings menu

ACTUAL RESULT:
There is a delay of about 25 seconds before the System settings menu is 
displayed again.

** Affects: ubuntu-system-settings (Ubuntu)
 Importance: High
 Status: New


** Tags: bluetooth rtm14

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

Title:
  Long delay exiting Bluetooth settings after disabling Bluetooth

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/ubuntu-system-settings/+bug/1371641/+subscriptions

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


[Bug 1370572] Re: Unknown libmtp error when copying content from internal storage to SD card using MTP

2014-09-18 Thread Richard Huddie
Note that the same error occurs when you try and move content from
within the same drive. E.g. moving a file from one folder to another on
the same storage drive.

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

Title:
  Unknown libmtp error when copying content from internal storage to SD
  card using MTP

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

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


[Bug 1370572] [NEW] Unknown libmtp error when copying content from internal storage to SD card using MTP

2014-09-17 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Device: ubuntu-rtm/14.09 build 1
Desktop: Ubuntu 14.04/14.10

SUMMARY:
Unknown libmtp error when copying content from internal storage to SD card 
using MTP.

This might be the case for someone who has a new memory card and they
want to copy/move content to it from device's internal storage.

STEPS:
1) Connect Ubuntu device to Ubuntu host PC over USB
2) Attempt to copy/move some music content directly from device's internal 
storage to device's SD card using MTP

EXPECTED RESULT:
The content should be copied/moved successfully.

ACTUAL RESULT:
The following error is displayed on desktop:
libmtp error: Unknown error.

** Affects: mtp (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Unknown libmtp error when copying content from internal storage to SD
  card using MTP

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

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


[Bug 1369964] [NEW] Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

2014-09-16 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
krillin ubuntu-rtm/14.09-proposed build 44.
BQ Avrha Altavoz Vivaldi Bluetooth speaker:
http://www.bqreaders.com/gb/accessories-aquaris.html

SUMMARY:
Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth settings

STEPS:
1) Turn on speaker so that it is in pairing mode
2) On Ubuntu device pair with the speaker
3) Play music through the speaker
4) From Bluetooth settings, select the speaker device and press Disconnect 
button

EXPECTED RESULT:
The device should disconnect.

ACTUAL RESULT:
The disconnect button has no effect. Music continues to play through the 
Bluetooth speaker.

For other Bluetooth devices the Disconnect button works. This bug is
specific to this particular device.

ADDITIONAL INFO:

hcitool inq:
12:1F:83:05:03:B4 clock offset: 0x264c class: 0x240414

hcitool info:

 BD Address: 12:1F:83:05:03:B4
 Device Name: Avrha Vivaldi
 LMP Version: 2.0 (0x3) LMP Subversion: 0x2
 Manufacturer: Accel Semiconductor Ltd. (74)
 Features page 0: 0xff 0x3e 0x0d 0x76 0x80 0x01 0x00 0x80
  3-slot packets 5-slot packets encryption slot offset
  timing accuracy role switch hold mode sniff mode
  RSSI channel quality SCO link HV2 packets
  HV3 packets CVSD power control transparent SCO
  EDR ACL 2 Mbps EDR ACL 3 Mbps interlaced iscan
  interlaced pscan inquiry with RSSI 3-slot EDR ACL
  5-slot EDR ACL extended features
 Features page 1: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00

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


** Tags: bluetooth rtm14

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

Title:
  Cannot disconnect BQ Vivaldi Bluetooth speaker using Bluetooth
  settings

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

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


[Bug 1369632] [NEW] After disconnecting and reconnecting device to MTP host it is not possible to delete a folder using MTP

2014-09-15 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Device: ubuntu-rtm/14.09-proposed build 40
Desktop: Windows 8.1 / Ubuntu

SUMMARY:
After disconnecting and reconnecting device to MTP host it is not possible to 
delete a folder using MTP

STEPS:
1) Connect Ubuntu device to host PC over USB
2) Copy some music content to the music folder on MTP device including some 
folder structure
3) Eject the Ubuntu device's USB connection
4) Re-insert Ubuntu device USB
5) Browse to MTP Music folder on device
6) Try to delete some of the music folders that were just added

EXPECTED RESULT:

The content should be deleted successfully.

ACTUAL RESULT:

After a delay of about 30 seconds Ubuntu presents error:
libmtp error: could not delete object.
It is then not possible to copy any content to or from the device.

Windows also fails to delete the content with error stating that device
has been disconnected.

Note that it is possible to delete files when the device is re-
connected. It is when deleting a parent folder that the problem occurs.

** Affects: mtp (Ubuntu)
 Importance: Critical
 Status: New


** Tags: rtm14

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

Title:
  After disconnecting and reconnecting device to MTP host it is not
  possible to delete a folder using MTP

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

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


[Bug 1369651] [NEW] libmtp error: Could not send object info when copying content to root MTP folder

2014-09-15 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
Ubuntu device: ubuntu-rtm/14.09-proposed build 40
Desktop: Ubuntu 14.10

SUMMARY:
libmtp error: Could not send object info when copying content to root MTP 
folder

STEPS:
1) Connect Ubuntu MTP device over USB
2) Attempt to copy some content to the root of the MTP folder

EXPECTED RESULT:
The copy operation should succeed. (This is the Android behaviour).

ACTUAL RESULT:
An error message is presented on desktop: libmtp error: Could not send object 
info

** Affects: mtp (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  libmtp error: Could not send object info when copying content to
  root MTP folder

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

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


[Bug 1364941] Re: Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-12 Thread Richard Huddie
** Changed in: mtp (Ubuntu)
   Status: Triaged = Fix Released

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1365004] Re: Win 8.1: MTP cannot delete folders

2014-09-12 Thread Richard Huddie
I re-tested this on krillin rtm image 32 and it is fixed

** Changed in: mtp (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  Win 8.1: MTP cannot delete folders

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

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


[Bug 1364953] Re: Win 8.1: Duplicate directories are created during MTP transfer

2014-09-12 Thread Richard Huddie
I re-tested this on krillin rtm image 32 and it is fixed

** Changed in: mtp (Ubuntu)
   Status: Fix Committed = Fix Released

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

Title:
  Win 8.1: Duplicate directories are created during MTP transfer

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

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


[Bug 1364941] Re: Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-11 Thread Richard Huddie
** Attachment added: image test data
   
https://bugs.launchpad.net/ubuntu/+source/mtp/+bug/1364941/+attachment/4201437/+files/test_data.tar.gz

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1364941] Re: Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-11 Thread Richard Huddie
I have re-tested this again, but I still see the same issue. I'm
attaching some test data image files which reproduces the problem quite
easily (for me at least!). These I am copying into the Pictures folder
and after only a few seconds the device becomes unresponsive. Then after
a couple of minutes there is the same error from Windows saying the
device is disconnected.

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1364941] Re: Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-11 Thread Richard Huddie
re-testing on krillin rtm image 30 was much better and I didn't see this
issue

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1364008] Re: Cannot pair with Altavoz Vivaldi Bluetooth speaker

2014-09-09 Thread Richard Huddie
I also tried with: https://launchpad.net/~mathieu-tl/+archive/ubuntu/nv-
build/+build/6332014

But no change in result.

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

Title:
  Cannot pair with Altavoz Vivaldi Bluetooth speaker

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

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


[Bug 1364941] Re: Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-09 Thread Richard Huddie
This problem seems to occur more with directory structures. I copied a
large series of files in the same directory and it worked ok. But when
the files are spread across a directory structure, the problem seems to
occur more quickly.

The music files I am copying have a directory structure:
artisit/album/tracks.

I will also do some more testing around the filenames/attributes to see
if there is anything that triggers it.

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1364008] Re: Cannot pair with Altavoz Vivaldi Bluetooth speaker

2014-09-08 Thread Richard Huddie
Yes, this device does pair and work with the desktop successfully as
'audio device' type. See below for info from hcitool:

BD Address:  12:1F:83:05:03:B4
Device Name: Avrha Vivaldi
LMP Version: 2.0 (0x3) LMP Subversion: 0x2
Manufacturer: Accel Semiconductor Ltd. (74)
Features page 0: 0xff 0x3e 0x0d 0x76 0x80 0x01 0x00 0x80
3-slot packets 5-slot packets encryption slot offset 
timing accuracy role switch hold mode sniff mode 
RSSI channel quality SCO link HV2 packets 
HV3 packets CVSD power control transparent SCO 
EDR ACL 2 Mbps EDR ACL 3 Mbps interlaced iscan 
interlaced pscan inquiry with RSSI 3-slot EDR ACL 
5-slot EDR ACL extended features 
Features page 1: 0x00 0x00 0x00 0x00 0x00 0x00 0x00 0x00


When pairing the device with the phone, there is a greyed out speaker icon. 
With other speakers I have used they have paired as headset devices because 
they have mics built in too. This device doesn't have a mic, so it shows up as 
a speaker.


** Changed in: bluez (Ubuntu)
   Status: Incomplete = New

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

Title:
  Cannot pair with Altavoz Vivaldi Bluetooth speaker

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

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


[Bug 1364008] Re: Cannot pair with Altavoz Vivaldi Bluetooth speaker

2014-09-08 Thread Richard Huddie
output from hcitool inq:

12:1F:83:05:03:B4   clock offset: 0x264cclass: 0x240414

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

Title:
  Cannot pair with Altavoz Vivaldi Bluetooth speaker

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

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


[Bug 1364941] [NEW] Win 8.1: Device becomes un-responsive during MTP transfer of multiple files

2014-09-03 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
krillin ubuntu-rtm/14.09-proposed build 13.
mtp-server 0.0.4+14.10.20140827-0ubuntu1
Windows 8.1

SUMMARY:

During MTP transfer of multiple files, the Ubuntu device becomes
unresponsive and the transfer stops responding. Eventually Windows
presents a message The device either stopped responding or has been
disconnected.

STEPS:
1) Connect Ubuntu device to Windows 8.1 over USB
2) Copy multiple audio files from Windows to Ubuntu device (however same 
problem can also been seen with pictures)

EXPECTED RESULT:
1) Ubuntu device is recognised as MTP device
2) All files are copied to Ubuntu device successfully

ACTUAL RESULT:
After approx 500MB, the transfer becomes unresponsive. Windows eventually 
presents a message The device either stopped responding or has been 
disconnected.

** Affects: mtp (Ubuntu)
 Importance: Critical
 Status: New


** Tags: rtm14

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

Title:
  Win 8.1: Device becomes un-responsive during MTP transfer of multiple
  files

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

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


[Bug 1364953] [NEW] Win 8.1: Duplicate directories are created during MTP transfer

2014-09-03 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
krillin ubuntu-rtm/14.09-proposed build 13.
mtp-server 0.0.4+14.10.20140827-0ubuntu1
Windows 8.1

SUMMARY:

During MTP transfer of several music files in different directories, the
top level directories appear to be duplicated. So in Win 8.1 when you
view the MTP device, you can see 2 directories displayed with the same
name.

STEPS:
1) Connect Ubuntu device to Windows 8.1 over USB
2) Copy multiple audio files from Windows to Music folder of Ubuntu device. 
Directory structure should be artist/album/track.

EXPECTED RESULT:
1) Ubuntu device is recognised as MTP device
2) All files are copied to Ubuntu device successfully

ACTUAL RESULT:
The highest level directory that has been copied will appear to be duplicated. 
So when viewing the MTP device from Win8.1 there will be 2 folders with the 
same name.

If the Ubuntu device is ejected and re-inserted then the duplicated
directories will not be displayed.

** Affects: mtp (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Win 8.1: Duplicate directories are created during MTP transfer

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

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


[Bug 1364988] [NEW] Win 8.1: Windows Media Player does not work with Ubuntu device

2014-09-03 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
krillin ubuntu-rtm/14.09-proposed build 13.
mtp-server 0.0.4+14.10.20140827-0ubuntu1
Windows 8.1

SUMMARY:

When Ubuntu device is connected to Windows 8.1 PC, Windows Media Player
is un-usable.

PRE-REQUISITE:
1) Ensure there are music files on the Ubuntu device

STEPS:
1) Connect Ubuntu device to Windows 8.1 over USB
2) Load Windows Media Player
3) Try and synchronise Ubuntu device or browse artists/albums/tracks on the 
Ubuntu device

EXPECTED RESULT:
1) Ubuntu device is recognised as MTP device
2) Ubuntu device is listed in WMP as media device
3) It should be possible to view content on device and synchronise it with WMP

ACTUAL RESULT:
The track listing for the device is just a long list of files. (Unknown 
album/artist/genre)
It is also not possible to add any tracks to the Ubuntu device using the WMP 
sync feature: Windows Media Player encountered a problem while synchronising 
the file to the device.

** Affects: mtp (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Win 8.1: Windows Media Player does not work with Ubuntu device

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

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


[Bug 1365004] [NEW] Win 8.1: MTP cannot delete folders

2014-09-03 Thread Richard Huddie
Public bug reported:

ENVIRONMENT:
krillin ubuntu-rtm/14.09-proposed build 13.
mtp-server 0.0.4+14.10.20140827-0ubuntu1
Windows 8.1

SUMMARY:
It is not possible to delete high level folders over MTP using Windows 8.1

PRE-REQUISITE:
1) Ensure there are music files on the Ubuntu device. Folder structure should 
be artist/album/tracks

STEPS:
1) Connect Ubuntu device to Windows 8.1 over USB
2) Browse to the music folder on the MTP device and try to delete an artist 
folder containing sub-folders and files

EXPECTED RESULT:
1) Ubuntu device is recognised as MTP device
2) Folder and sub-folder/tracks should be deleted

ACTUAL RESULT:
The operation freezes and it is not possible to delete the high level folder. 
If the files are selected directly from the sub-directory, it is then possible 
to delete them. The problem occurs when trying to delete from a higher level 
parent directory.
Windows displays error [folder name] could not be deleted. The device has 
either stopped responding or has been disconnected.

** Affects: mtp (Ubuntu)
 Importance: High
 Status: New


** Tags: rtm14

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

Title:
  Win 8.1: MTP cannot delete folders

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

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


[Bug 1364008] Re: Cannot pair with Altavoz Vivaldi Bluetooth speaker

2014-09-02 Thread Richard Huddie
Note that this speaker is from the BQ store, so should work as a
priority

** Changed in: bluez (Ubuntu)
   Importance: High = Critical

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

Title:
  Cannot pair with Altavoz Vivaldi Bluetooth speaker

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

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


[Bug 1364008] [NEW] Cannot pair with Altavoz Vivaldi Bluetooth speaker

2014-09-01 Thread Richard Huddie
Public bug reported:

krillin ubuntu-rtm/14.09-proposed build 9.
bluez 4.101-0ubuntu19 armhf

SUMMARY:
Cannot pair with Avrha Altavoz Vivaldi Bluetooth speaker:
http://www.bqreaders.com/gb/accessories-aquaris.html

Device is Bluetooth v2.0 +EDR

[Note that the other listed Bluetooth Speaker Strauss does work]


STEPS:
1) Turn on speaker so that it is in pairing mode
2) On krillin attempt to pair with the speaker

EXPECTED RESULT:
The pairing should be successful

ACTUAL RESULT:
In the list of Bluetooth devices a greyed-out speaker icon is listed with the 
name '...'
The name is never resolved and it is not possible to start a pairing request 
with the device.

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


** Tags: bluetooth rtm14

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

Title:
  Cannot pair with Altavoz Vivaldi Bluetooth speaker

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

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


[Bug 1363046] [NEW] No message/call notification tone plays through Bluetooth headset

2014-08-29 Thread Richard Huddie
Public bug reported:

krillin ubuntu-rtm/14.09-proposed build 4.
bluez  4.101-0ubuntu19 armhf

SUMMARY:
When a Bluetooth headset (Sony SBH50, Motorola S10-HD) is connected to krillin 
and a call/sms is received, no notification tone is played through the headset. 
Instead it plays normally through the device loud speakers.

We have seen on some other versions of headset (Jawbone ERA, BQ Avrha
Strauss) where a new sms notification tone is played through the
headset, but not the call ringer tone.

STEPS:
1) Pair and connect the Bluetooth headset
2) Receive an incoming sms
3) Receive an incoming call

EXPECTED RESULT:
The notification tones should play through the Bluetooth headset

ACTUAL RESULT:
There is no notification tone played through the Bluetooth headset

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

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

Title:
  No message/call notification tone plays through Bluetooth headset

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

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


[Bug 1363046] Re: No message/call notification tone plays through Bluetooth headset

2014-08-29 Thread Richard Huddie
** Also affects: bluez (Ubuntu Utopic)
   Importance: High
   Status: New

** Tags added: rtm14

** Tags added: bluetooth

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

Title:
  No message/call notification tone plays through Bluetooth headset

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

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


[Bug 1363083] [NEW] Music playback does not re-route audio when Bluetooth speaker connected/disconnected

2014-08-29 Thread Richard Huddie
Public bug reported:

krillin ubuntu-rtm/14.09-proposed build 4.
bluez 4.101-0ubuntu19 armhf

SUMMARY:
When a Bluetooth speaker is connected/disconnected to the krillin, the music 
playback route does not automatically update to accomodate this. The music app 
must be re-started for the new configuration to work.

STEPS:
1) Pair and connect the Bluetooth speaker (BQ Altavoz Bluetooth Strauss)
2) Start music playback
3) Disconnect the Bluetooth speaker on krillin from the Bluetooth settings

EXPECTED RESULT:
The music should play back through the Bluetooth speaker until it is 
disconnected. When the speaker is disconnected it should revert to using the 
krillin loud speaker.

ACTUAL RESULT:
The music plays back through the Bluetooth speaker until it is disconnected. 
When the speaker is disconnected, there is no music heard from the krillin. The 
music app is still playing the track as the progress bar is still updating, but 
there is no sound.

When the music app is re-started, music will play through the krillin
loud speaker.

NOTES:
The same problem is observed for the opposite situation where a Bluetooth 
speaker is connected to the device when it is already playing music through the 
krillin loud speaker. The Bluetooth speaker will only be used once the music 
app is restarted.

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


** Tags: bluetooth rtm14

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

Title:
  Music playback does not re-route audio when Bluetooth speaker
  connected/disconnected

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

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


[Bug 1363095] [NEW] Music playback does not re-start in Bluetooth speaker following incoming phone call

2014-08-29 Thread Richard Huddie
Public bug reported:

krillin ubuntu-rtm/14.09-proposed build 4.
bluez 4.101-0ubuntu19 armhf

SUMMARY:
When a Bluetooth speaker is connected to the krillin and playing music, after 
an incoming call is received, it is not possible to resume playback on the 
Bluetooth speaker without restarting the music app.

STEPS:
1) Pair and connect the Bluetooth speaker (BQ Altavoz Bluetooth Strauss)
2) Start music playback
3) During music playback receive an incoming call
4) Reject the call from the krillin
5) Try to resume music playback

EXPECTED RESULT:
The music should continue to play back through the Bluetooth speaker from the 
point when the call was received.

ACTUAL RESULT:
The music app indicates it is playing the track, but there is no music heard. 
It is not possible to play the music through the Bluetooth speaker without 
re-starting the music app. When the music app is re-started, music will play 
through the Bluetooth speaker again.

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


** Tags: bluetooth rtm14

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

Title:
  Music playback does not re-start in Bluetooth speaker following
  incoming phone call

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

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


[Bug 1273629] Re: HSP fails on Ubuntu Touch [Bluetooth headset does not work]

2014-08-29 Thread Richard Huddie
** Tags added: bluetooth

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

Title:
  HSP fails on Ubuntu Touch [Bluetooth headset does not work]

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

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


[Bug 1336414] Re: test_picker_mode.TestPickerMode.test_pick_named_photo is skipped

2014-07-28 Thread Richard Huddie
Cause for the failures was that gallery-app was not launching in Picker
mode. This was becuase the --pick-mode argument was being appended after
each test run, which lead to very long argument strings.

** Changed in: gallery-app
   Status: Confirmed = Fix Released

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

Title:
  test_picker_mode.TestPickerMode.test_pick_named_photo is skipped

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

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


[Bug 1240915] [NEW] OSK does not appear in Google maps route planning when device location is available

2013-10-17 Thread Richard Huddie
Public bug reported:

mako 20131017

TEST CASE:
1. Launch browser and navigate to google.com and select maps
2. When asked to allow location request, select Allow option
3. Enable Location detection and GPS from location indicator menu
4. Leave the device to obtain a GPS fix. This can take up to 15 mins for a cold 
start and must be near a window. Also leave the device in active state using 
command powerd-cli display on bright
5. Once a GPS fix has been obtained and position shown on Google maps press on 
the Navigation icon (3rd icon from right)
6. Tap in either the Start Address or End Address fields

EXPECTED RESULT:
The OSK should load to allow the user to input their required location

ACTUAL RESULT:
The OSK does not load and the user is not able to input their required location.

I have noticed that if the device does not have a location fix, then the
OSK will appear as expected. This behaviour only seems to happen if a
location is available.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: webbrowser-app 0.22+13.10.20131011.1-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu2
Architecture: armhf
Date: Thu Oct 17 10:23:45 2013
InstallationDate: Installed on 2013-10-17 (0 days ago)
InstallationMedia: Ubuntu 13.10 - armhf (20131017)
MarkForUpload: True
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: webbrowser-app
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: webbrowser-app (Ubuntu)
 Importance: High
 Status: Confirmed

** Affects: webbrowser-app (Ubuntu Saucy)
 Importance: High
 Status: Confirmed


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

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

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

Title:
  OSK does not appear in Google maps route planning when device location
  is available

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/webbrowser-app/+bug/1240915/+subscriptions

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


[Bug 1240467] [NEW] Incorrect volume level and audio routing after call received during music playback with headphones

2013-10-16 Thread Richard Huddie
Public bug reported:

mako 20131015.2

TEST CASE:
1. Insert headphones into phone
2. Start music playback through the headphones
3. Receive an incoming call on the device and answer the call
4. End the call

EXPECTED RESULT:
Music playback should pause when the call is received
When the call has ended, playback should resume through the headphones at the 
previous volume level

ACTUAL RESULT:
When the phone receives the call, the music playback changes to loud speaker
After the call has ended, the music volume level is very loud and plays through 
the loud speaker rather than the headphones.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: pulseaudio 1:4.0-0ubuntu6
Uname: Linux 3.4.0-3-mako armv7l
AlsaInfo: This script requires lspci. Please install it, and re-run this script.
ApportVersion: 2.12.5-0ubuntu2
Architecture: armhf
AudioDevicesInUse: Error: [Errno 2] No such file or directory: 'fuser'
Date: Wed Oct 16 10:52:52 2013
InstallationDate: Installed on 2013-10-15 (0 days ago)
InstallationMedia: Ubuntu 13.10 - armhf (20131015.2)
MarkForUpload: True
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: pulseaudio
UpgradeStatus: No upgrade log present (probably fresh install)

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

** Affects: pulseaudio (Ubuntu Saucy)
 Importance: High
 Status: New


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Also affects: pulseaudio (Ubuntu Saucy)
   Importance: High
   Status: New

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

Title:
  Incorrect volume level and audio routing after call received during
  music playback with headphones

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

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


[Bug 1238687] [NEW] Camera app stops responding when swiping through open apps

2013-10-11 Thread Richard Huddie
Public bug reported:

mako 20131011

TEST CASE:
1. Load the camera app
2. Load another app, e.g. Contacts
3. Swipe from right to left to move from Contacts to Camera app
4. Swipe from right to left again to move from Camera back to Contacts
5. Repeat swiping between apps quickly, do not wait for the camera app to 
initialise fully

EXPECTED RESULT:
The camera app should continue to function fully

ACTUAL RESULT:
If the swiping is completed before the camera app has fully initialised (i.e. 
the shutter icon has changed from grey to white) then the camera app will no 
longer function. There will be no live preview and the shutter icon will remain 
greyed out. The camea app will display a static frame as the live preview.

Note that if the device is rotated then the camera settings icons will
rotate correctly with the device, so the camera app is not completely
dead. See attached screen shot which shows the permanently greyed
shutter icon and a frozen preview.

The camera app will need to be re-started in order to take a picture
again.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: camera-app 2.9.1+13.10.20131008-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu1
Architecture: armhf
Date: Fri Oct 11 13:36:43 2013
InstallationDate: Installed on 2013-10-11 (0 days ago)
InstallationMedia: Ubuntu Saucy Salamander (development branch) - armhf 
(20131011)
MarkForUpload: True
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: camera-app
UpgradeStatus: No upgrade log present (probably fresh install)

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

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


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Attachment added: camera_freeze.png
   
https://bugs.launchpad.net/bugs/1238687/+attachment/3874580/+files/camera_freeze.png

** Also affects: camera-app (Ubuntu Saucy)
   Importance: Critical
   Status: New

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

Title:
  Camera app stops responding when swiping through open apps

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/camera-app/+bug/1238687/+subscriptions

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


[Bug 1237341] Re: Extended characters incorrectly inserted into browser address bar when Mir enabled

2013-10-10 Thread Richard Huddie
** No longer affects: mir

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

Title:
  Extended characters incorrectly inserted into browser address bar when
  Mir enabled

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

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


[Bug 1238026] [NEW] dialer-app crashed with SIGSEGV when viewing contact's profile

2013-10-10 Thread Richard Huddie
Public bug reported:

mako 20131010.1

TEST CASE:
1. Load the Contacts app and add a contact to the device including a phone 
number
2. Close the Contacts app
3. Load the Dialer app and switch to Contacts view
4. Select a contact
5. Select View contact's profile option by pressing the icon on right hand 
side

EXPECTED RESULT:
The contacts profile should be displayed

ACTUAL RESULT:
After a delay of approx 5 seconds the dialer app will close.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: dialer-app 0.1+13.10.20131004.1-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu1
Architecture: armhf
Date: Thu Oct 10 13:50:58 2013
InstallationDate: Installed on 2013-10-10 (0 days ago)
InstallationMedia: Ubuntu Saucy Salamander (development branch) - armhf 
(20131010.1)
MarkForUpload: True
SourcePackage: dialer-app
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: dialer-app (Ubuntu)
 Importance: High
 Status: New

** Affects: dialer-app (Ubuntu Saucy)
 Importance: High
 Status: New


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Also affects: dialer-app (Ubuntu Saucy)
   Importance: High
   Status: New

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

Title:
  dialer-app crashed with SIGSEGV when viewing contact's profile

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

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


[Bug 1237399] Re: Numeric OSK sometimes fails to display correctly in Contacts app

2013-10-10 Thread Richard Huddie
** Tags removed: qa-touch

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

Title:
  Numeric OSK sometimes fails to display correctly in Contacts app

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

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


[Bug 1238026] Re: dialer-app crashed with SIGSEGV when viewing contact's profile

2013-10-10 Thread Richard Huddie
confirmed by om26er

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

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

Title:
  dialer-app crashed with SIGSEGV when viewing contact's profile

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

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


[Bug 1238026] Re: dialer-app crashed with SIGSEGV when viewing contact's profile

2013-10-10 Thread Richard Huddie
*** This bug is a duplicate of bug 1238010 ***
https://bugs.launchpad.net/bugs/1238010

** This bug has been marked a duplicate of bug 1238010
   [mir] telephony apps and address book can't communicate

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

Title:
  dialer-app crashed with SIGSEGV when viewing contact's profile

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

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


[Bug 1237341] [NEW] Extended characters incorrectly inserted into browser address bar when Mir enabled

2013-10-09 Thread Richard Huddie
Public bug reported:

mako 20131009

PRE-REQUISITE:
1. Ensure MIR is enabled on the device:
 adb shell touch /home/phablet/.display-mir
 adb reboot

TEST CASE:
1. Make sure the device has just been rebooted
2. Load web browser app (it doesn't matter if you have a working data 
connection)
3. Swipe up from the bottom to show the address bar
4. Touch the address bar to enter a url

EXPECTED RESULT:
The OSK should load and the display current url

ACTUAL RESULT:
The OSK loads and 2 extended characters are automatically inserted into the 
address bar. I have seen either ãã or ØØ inserted.
Because the current url is highlighted, when the new characters are inserted 
they automatically delete the current url.

This only happens with Mir enabled, and it only seems to happen once
after rebooting the device.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: ubuntu-keyboard 0.99.trunk.phablet2+13.10.20131004-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu1
Architecture: armhf
Date: Wed Oct  9 10:39:50 2013
InstallationDate: Installed on 2013-10-09 (0 days ago)
InstallationMedia: Ubuntu Saucy Salamander (development branch) - armhf 
(20131009)
MarkForUpload: True
SourcePackage: ubuntu-keyboard
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: mir
 Importance: Undecided
 Status: New

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

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


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Also affects: ubuntu-keyboard (Ubuntu Saucy)
   Importance: High
   Status: New

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

** Summary changed:

- Extended charcters incorrectly inserted into browser address bar when Mir 
enabled
+ Extended characters incorrectly inserted into browser address bar when Mir 
enabled

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

Title:
  Extended characters incorrectly inserted into browser address bar when
  Mir enabled

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

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

[Bug 1237399] [NEW] Numeric OSK sometimes fails to display correctly in Contacts app

2013-10-09 Thread Richard Huddie
Public bug reported:

mako 20131009

TEST CASE:
1. Load Contacts app and create a contact
2. Add a telephone number to the contact

EXPECTED RESULT:
The numeric OSK should display on the screen correctly to enter in the phone 
number

ACTUAL RESULT:
I have observed occasionally that the numeric OSK fails to display correctly. 
See the screenshot attached for details.

I saw this when I was creating a contact, but was able to reproduce by
repeatedly showing and hiding the numeric OSK multiple times.

Although the number keys are not shown in the correct locations, it is
still possible to enter in a number by pressing on the screen where the
number key should be.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: ubuntu-keyboard 0.99.trunk.phablet2+13.10.20131004-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu1
Architecture: armhf
Date: Wed Oct  9 13:10:13 2013
InstallationDate: Installed on 2013-10-09 (0 days ago)
InstallationMedia: Ubuntu Saucy Salamander (development branch) - armhf 
(20131009)
MarkForUpload: True
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: ubuntu-keyboard
UpgradeStatus: No upgrade log present (probably fresh install)

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

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


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Attachment added: numeric_key_display_error.png
   
https://bugs.launchpad.net/bugs/1237399/+attachment/3868965/+files/numeric_key_display_error.png

** Also affects: ubuntu-keyboard (Ubuntu Saucy)
   Importance: Medium
   Status: New

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

Title:
  Numeric OSK sometimes fails to display correctly in Contacts app

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

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


[Bug 1236798] [NEW] Volume control buttons do not work in music player with Mir enabled

2013-10-08 Thread Richard Huddie
Public bug reported:

mako 20131008

PRE-REQUISITE:
1. Enable Mir:
adb shell touch /home/phablet/.display-mir
adb reboot

2. Copy some music files to the device into /home/phablet/Music

TEST CASE:
1. Load the music app and start to play a song
2. Using the physical buttons on the side of the phone, try and change volume 
level

EXPECTED RESULT:
The volume should increase and decrease according to the physical button presses

ACTUAL RESULT:
Volume control using physical buttons does not work and there is no change in 
volume


When Mir is not running the volume control buttons work as expected.

ProblemType: Bug
DistroRelease: Ubuntu 13.10
Package: unity8 7.82+13.10.20131007-0ubuntu1
Uname: Linux 3.4.0-3-mako armv7l
ApportVersion: 2.12.5-0ubuntu1
Architecture: armhf
Date: Tue Oct  8 11:04:04 2013
InstallationDate: Installed on 2013-10-08 (0 days ago)
InstallationMedia: Ubuntu Saucy Salamander (development branch) - armhf 
(20131008)
MarkForUpload: True
ProcEnviron:
 TERM=linux
 PATH=(custom, no user)
SourcePackage: unity8
UpgradeStatus: No upgrade log present (probably fresh install)

** Affects: unity8 (Ubuntu)
 Importance: High
 Status: New

** Affects: unity8 (Ubuntu Saucy)
 Importance: High
 Status: New


** Tags: apport-bug armhf avengers qa-touch rls-s-incoming saucy

** Also affects: unity8 (Ubuntu Saucy)
   Importance: High
   Status: New

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

Title:
  Volume control buttons do not work in music player with Mir enabled

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

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


[Bug 1235263] Re: Adding photo to contact casuses device blackout when Mir enabled

2013-10-08 Thread Richard Huddie
** Attachment added: unity8 crash file
   
https://bugs.launchpad.net/ubuntu/+source/address-book-app/+bug/1235263/+attachment/3866927/+files/_usr_bin_unity8.32011.crash

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

Title:
  Adding photo to contact casuses device blackout when Mir enabled

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

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


  1   2   >