[Touch-packages] [Bug 1662868] [NEW] Changes to organizationName management break qt-labs-settings

2017-02-08 Thread Tiago Salem Herrmann
Public bug reported:

Recent changes to the way ubuntu-ui-toolkit handles the organizationName
break the qml Settings component. It cannot access the right
configuration files as organizationName is used to build the
configuration file paths.

I added more details to this comment on the MR that introduced the regression:
https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/organizedWindow/+merge/314631/comments/820497

** Affects: ubuntu-ui-toolkit (Ubuntu)
 Importance: Undecided
 Assignee: Christian Dywan (kalikiana)
 Status: New

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

Title:
  Changes to organizationName management break qt-labs-settings

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

Bug description:
  Recent changes to the way ubuntu-ui-toolkit handles the
  organizationName break the qml Settings component. It cannot access
  the right configuration files as organizationName is used to build the
  configuration file paths.

  I added more details to this comment on the MR that introduced the regression:
  
https://code.launchpad.net/~ubuntu-sdk-team/ubuntu-ui-toolkit/organizedWindow/+merge/314631/comments/820497

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

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


[Touch-packages] [Bug 1655022] Re: Image preview no longer works

2017-01-09 Thread Tiago Salem Herrmann
** Branch linked: lp:~phablet-team/messaging-app/fix-attachments-preview

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

Title:
  Image preview no longer works

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

Bug description:
  rc-proposed
  Tap on an image attachment and nothing happens.
  Works fine on OTA 14.

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

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


[Touch-packages] [Bug 1516696] Re: SMS notifications are received only when the phone is unlocked

2016-09-22 Thread Tiago Salem Herrmann
So, while debugging this issue I found the following:

The delay seems to be bigger if wifi is disabled. If wifi is enabled,
after 1:30 at most the device wakes up, and if no wifi, device seems to
remain off indefinitely (I waited only for 10 minutes then gave up). In
my case, it's krillin and I have only one sim in the second slot. At
first I thought that could be lack of entropy and the system would be
stuck trying to read from /dev/urandom, but turns out this is what I
found:

1) oFono delivers the message to telepathy-ofono right away.
2) telepathy-ofono informs telepathy about the new message.
3) telephony-service-indicator gets the message, sets a timer 
(QTimer::singleShot()) of 1.5 seconds before displaying the message (that's to 
avoid displaying notifications for messages that were already displayed in 
messaging-app.

4) Then I noticed that the triggered() signal is never emitted, until I
manually force the device to wake up.

5) running an strace on telephony-service-indicator and (leaving the
device stuck for about 1 minute) I get this:

[pid  2231] 1474573884.069934 clock_gettime(CLOCK_MONOTONIC, {1265, 272122461}) 
= 0
[pid  2231] 1474573884.070193 clock_gettime(CLOCK_MONOTONIC, {1265, 272383307}) 
= 0
[pid  2231] 1474573884.070407 poll([{fd=3, events=POLLIN}, {fd=6, 
events=POLLIN}, {fd=7, events=POLLIN}, {fd=10, events=POLLIN}, {fd=11, 
events=POLLIN}], 5, 1571) = 0 (Timeout)
[pid  2231] 1474573951.500698 read(3, 0xbed2817c, 16) = -1 EAGAIN (Resource 
temporarily unavailable)
[pid  2231] 1474573951.500977 clock_gettime(CLOCK_MONOTONIC, {1266, 845932613}) 
= 0
[pid  2231] 1474573951.501380 clock_gettime(CLOCK_MONOTONIC, {1266, 846369074}) 
= 0


Someone please correct me if I am missing something, but from my understanding 
qt is stuck in the event loop waiting for the timer event, which only happens 
after I press the power button.

What worries me here is that the call to poll() explicitly sets the
timeout for 1571 (1.5 seconds), and -apparently- it only timed out after
67 seconds, which is when the next call to read() is executed.

An additional information is that on dbus I always see indicator-
datetime emitting a signal (Changed()) as soon as telephony-service-
indicator also gets unblocked, which is a strong indication that
indicator-datetime is also getting affected by this.

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

Title:
  SMS notifications are received only when the phone is unlocked

Status in Canonical System Image:
  Confirmed
Status in powerd:
  New
Status in Unity System Compositor:
  New
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in ofono package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  WHAT HAPPENED:
  The phone stays quiet while locked but once the power button is pressed 
(unlocked), SMS notification are received with vibration, notification bubble 
and sound alert. The message received shows that it was actually received 10 
minutes ago.
  This happened multiple times already but I think I ignored them and this 
seems to have started after OTA-7 was released.

  
  EXPECTED:
  The phone should have the vibration, notification bubble/indicator and sound 
alert even if the phone is locked.

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

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


[Touch-packages] [Bug 1516696] Re: SMS notifications are received only when the phone is unlocked

2016-09-21 Thread Tiago Salem Herrmann
The flow is ofono -> telepathy-ofono -> telephony-service-indicator ->
Notification

My guess is that telephony-service-indicator could be stuck for some
reason (waiting on some dbus call to finish or something like that).

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

Title:
  SMS notifications are received only when the phone is unlocked

Status in Canonical System Image:
  Confirmed
Status in powerd:
  New
Status in Unity System Compositor:
  New
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in ofono package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Incomplete

Bug description:
  WHAT HAPPENED:
  The phone stays quiet while locked but once the power button is pressed 
(unlocked), SMS notification are received with vibration, notification bubble 
and sound alert. The message received shows that it was actually received 10 
minutes ago.
  This happened multiple times already but I think I ignored them and this 
seems to have started after OTA-7 was released.

  
  EXPECTED:
  The phone should have the vibration, notification bubble/indicator and sound 
alert even if the phone is locked.

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

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


[Touch-packages] [Bug 1613471] Re: [MIR] telepathy-ofono

2016-09-09 Thread Tiago Salem Herrmann
Yes, maybe use XDG_SESSION_DESKTOP could be a good solution, but we
decided to remove the dependency of telepathy-ofono from telephony-
service, so I believe once we land that change this MIR won't be needed
anymore.

https://requests.ci-train.ubuntu.com/#/ticket/1902

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

Title:
  [MIR] telepathy-ofono

Status in telepathy-ofono package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by nuntium and telephony-service.

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests.

  [Dependencies]
   * This package depends on ofono, ofono-qt, libphonenumber7 and 
telepathy-qt5. (none of them are currently in main)

  [Standards compliance]
   * This package uses cmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1613469] Re: [MIR] ofono-qt

2016-08-24 Thread Tiago Salem Herrmann
- libqofono did not exist by the time telepathy-ofono was created, and
ofono-qt was the only alternative. libqofono started as a fork of ofono-
qt IIRC.

- The tests work with ofono-phonesim (actually phonesim is required).

- Some tests require manual interaction:
http://paste.ubuntu.com/23085781/

- We don't have a roadmap AFAIK.

- It will be a lot of effort to move tp-ofono to link against libqofono.
We have patches in ofono-qt that change some internal logic and add
custom features that are probably not part of libqofono yet. Even the
telepathy-ofono tests are based on ofono-qt. There is a mock to simulate
a real modem using ofono-qt as base.

- If moving ofono-qt to main is really a blocker, as a short term
solution I would say we could move ofono-qt into telepathy-ofono (since
we already have part of the code there for tests), and than come up with
a roadmap to finally move telepathy-ofono to link against libqofono.

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1613471] Re: [MIR] telepathy-ofono

2016-08-23 Thread Tiago Salem Herrmann
- I believe telepathy-ofono-ril-mc-plugin is disabled on most archs
because it depends on libhybris-utils, and that is not available on all
architectures.

- telepathy-ofono uses libpulse to change the system audio routes when
there is an incoming call and other call events. That affects the entire
system, so by the time we created the package (3 years ago) that was the
only way to make sure it wasn't going to break audio of desktops. This
audio management should be done outside of telepathy-ofono. We had a
discussion some time ago and decided to create a pulse module to take
care of that, but it is still not done.

- Those crashes are mostly related to pulse audio. I believe some of
them are actually fixed by now.

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

Title:
  [MIR] telepathy-ofono

Status in telepathy-ofono package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by nuntium and telephony-service.

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests.

  [Dependencies]
   * This package depends on ofono, ofono-qt, libphonenumber7 and 
telepathy-qt5. (none of them are currently in main)

  [Standards compliance]
   * This package uses cmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1613469] Re: [MIR] ofono-qt

2016-08-23 Thread Tiago Salem Herrmann
Tests are not executed because they rely on ofonod running with some
modem enabled, which is not doable on test environments.

Yes, it was abandoned upstream because ofono-qt was mostly replaced by 
libqofono.
This is the main reason why it has no bugs open.

There was some discussion to move telepathy-ofono to use libqofono
(currently telepathy-ofono is the only package linking against it), but
it would require a lot of effort and would risk introducing new bugs to
the telephony stack, which is not an option at the moment.

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  Incomplete

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1613474] [NEW] [MIR] telepathy-qt5

2016-08-15 Thread Tiago Salem Herrmann
Public bug reported:

[Availability]
 * Available in universe

[Rationale]
 * This package is required by telephony-service, history-service, 
telepathy-ofono and media-hub.

[Security]
 * No known security issues at this time.

[Quality assurance]
 * This package has unit tests, but not executed during build time.

[Dependencies]
 * This package depends on libtelepathy-farstream3.

[Standards compliance]
 * This package uses cmake and does not require translation.

[Maintenance]
 * Actively developed upstream: 
https://cgit.freedesktop.org/telepathy/telepathy-qt/
 * Packaging maintained in bzr by the phablet team and actively in use on the 
phone and tablet images. Additional patch has been added to fix building with 
gstreamer support on ubuntu.

** Affects: telepathy-qt5 (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  [MIR] telepathy-qt5

Status in telepathy-qt5 package in Ubuntu:
  New

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telephony-service, history-service, 
telepathy-ofono and media-hub.

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build time.

  [Dependencies]
   * This package depends on libtelepathy-farstream3.

  [Standards compliance]
   * This package uses cmake and does not require translation.

  [Maintenance]
   * Actively developed upstream: 
https://cgit.freedesktop.org/telepathy/telepathy-qt/
   * Packaging maintained in bzr by the phablet team and actively in use on the 
phone and tablet images. Additional patch has been added to fix building with 
gstreamer support on ubuntu.

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

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


[Touch-packages] [Bug 1613469] [NEW] [MIR] ofono-qt

2016-08-15 Thread Tiago Salem Herrmann
Public bug reported:

[Availability]
 * Available in universe

[Rationale]
 * This package is required by telepathy-ofono

[Security]
 * No known security issues at this time.

[Quality assurance]
 * This package has unit tests, but not executed during build because they 
require ofono to be running.

[Dependencies]
 * This package depends only on qt5 which is already in main.

[Standards compliance]
 * This package uses qmake and requires no translation.

[Maintenance]
 * This package is maintained by Canonical and actively in use on the phone and 
tablet images

** Affects: ofono-qt (Ubuntu)
 Importance: Undecided
 Status: New

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

Title:
  [MIR] ofono-qt

Status in ofono-qt package in Ubuntu:
  New

Bug description:
  [Availability]
   * Available in universe

  [Rationale]
   * This package is required by telepathy-ofono

  [Security]
   * No known security issues at this time.

  [Quality assurance]
   * This package has unit tests, but not executed during build because they 
require ofono to be running.

  [Dependencies]
   * This package depends only on qt5 which is already in main.

  [Standards compliance]
   * This package uses qmake and requires no translation.

  [Maintenance]
   * This package is maintained by Canonical and actively in use on the phone 
and tablet images

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

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


[Touch-packages] [Bug 1612277] [NEW] Tapping the green bar during calls does not bring dialer-app to foreground.

2016-08-11 Thread Tiago Salem Herrmann
Public bug reported:

This seems to be xenial only.

I flashed the device with channel ubuntu-touch/staging/bq-aquaris.en and
installed silo 11 (with new qt 5.6).

I noticed that tapping the green top bar during calls does not bring
dialer-app to foreground anymore. I'm still not sure if this was
introduced on xenial or only after installing silo 11.

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

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

Title:
  Tapping the green bar during calls does not bring dialer-app to
  foreground.

Status in unity8 package in Ubuntu:
  New

Bug description:
  This seems to be xenial only.

  I flashed the device with channel ubuntu-touch/staging/bq-aquaris.en
  and installed silo 11 (with new qt 5.6).

  I noticed that tapping the green top bar during calls does not bring
  dialer-app to foreground anymore. I'm still not sure if this was
  introduced on xenial or only after installing silo 11.

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

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


[Touch-packages] [Bug 1461873] Re: [messaging] Ability to forward SMS without copy 'n past approach

2016-06-28 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/forward-support

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

Title:
  [messaging] Ability to forward SMS without copy 'n past approach

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

Bug description:
  It would be nice if the SMS app swipe left context had the ability to forward 
the SMS to other receivers.
  The existing approah where one can swipe left and copy the content and then 
paste into a new SMS seems less intuitive.

  **

  This feature is in the new designs but has yet to be implemented.
  https://docs.google.com/presentation/d/1hkrF2g-
  ad7fhJ0UVLKmu_5ZXSFK1EkcWS129JxmAAI4/edit#slide=id.p97

  **

  This is a certification requirement

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

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


[Touch-packages] [Bug 1588127] Re: Phone abandons incoming call

2016-06-28 Thread Tiago Salem Herrmann
I am seeing timeout from the approver while trying to create an instance
of media-hub in the dbus.log file.

Media-hub is a telepathy observer (it watches telepathy to stop music
when there is an incoming call), and telepathy by design won't forward
the incoming call to the approver (to display the snap decision) until
all observers confirm receiving the incoming channel first.

If media-hub is really stuck for some reason, that would explain the
issue, since after a dbus timeout trying to deliver the channel to
media-hub, telepathy would still try to deliver the channel to the
approver, which would make the snap decision appear, and quickly
disappear (since the incoming call is already gone).

This is a guess, but seems to match what Matthew described, and what I
see in the logs:

-

virtual QMediaService* AalServicePlugin::create(const QString&)
"org.qt-project.qt.mediaplayer"
Failed to start a new media-hub player session:
org.freedesktop.DBus.Error.NoReply: Did not receive a reply. Possible
causes include: the remote application did not send a reply, the
message bus security policy blocked the reply, the reply timeout
expired, or the network connection was broken.
Failed to create a new media player backend. Video playback will not function.

Could not finish contructing new AalMediaPlayerService instance since
m_hubPlayerSession is NULL



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

Title:
  Phone abandons incoming call

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  Incomplete
Status in telephony-service package in Ubuntu:
  New

Bug description:
  I just received five incoming calls but I couldn't answer any of them.
  In each case the phone started vibrating, then after a while the ring
  tone started and the answer buttons were displayed, but before I had a
  chance to answer, the phone seemed to give up and go back to sleep.
  Then I could see the green envelope meaning that I had missed a call.

  The fifth time was me trying from another phone.  In this case it
  seemed that the line was still ringing, but again I was unable to
  answer the call.

  After rebooting the phone, I can now answer incoming calls no problem.
  So it seems this is some bad state that the phone gets into after a
  while.

  I've previously had problems with my phone's cover blocking the light
  sensor and preventing me answering calls.  However in this case I was
  expecting the call and had prepared by opening the cover, so this
  can't be the problem.

  Phone is an MX4.  OS Ubuntu 15.04 (OTA-10.1).

  FYI, this was a job interview, with a CTO who was phoning from New
  York.  I'd already had to delay a week after missing the first
  appointment due to the exact same problem.  I've been barely
  tolerating Ubuntu Phone's bugs up to now, but this is the final straw.

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

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


[Touch-packages] [Bug 1588127] Re: Phone abandons incoming call

2016-06-28 Thread Tiago Salem Herrmann
Thanks for the logs,
could you also grab the dbus logs using the steps I provided on comment #6 
using adb?

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

Title:
  Phone abandons incoming call

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  Incomplete
Status in telephony-service package in Ubuntu:
  New

Bug description:
  I just received five incoming calls but I couldn't answer any of them.
  In each case the phone started vibrating, then after a while the ring
  tone started and the answer buttons were displayed, but before I had a
  chance to answer, the phone seemed to give up and go back to sleep.
  Then I could see the green envelope meaning that I had missed a call.

  The fifth time was me trying from another phone.  In this case it
  seemed that the line was still ringing, but again I was unable to
  answer the call.

  After rebooting the phone, I can now answer incoming calls no problem.
  So it seems this is some bad state that the phone gets into after a
  while.

  I've previously had problems with my phone's cover blocking the light
  sensor and preventing me answering calls.  However in this case I was
  expecting the call and had prepared by opening the cover, so this
  can't be the problem.

  Phone is an MX4.  OS Ubuntu 15.04 (OTA-10.1).

  FYI, this was a job interview, with a CTO who was phoning from New
  York.  I'd already had to delay a week after missing the first
  appointment due to the exact same problem.  I've been barely
  tolerating Ubuntu Phone's bugs up to now, but this is the final straw.

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

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


[Touch-packages] [Bug 1588127] Re: Phone abandons incoming call

2016-06-28 Thread Tiago Salem Herrmann
you just need to ssh the device and run the same commands:

$  dbus-monitor > call_dbus-session.log
$  dbus-monitor --system > call_dbus-system.log

then attach the files to the bug report.
Thank you.

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

Title:
  Phone abandons incoming call

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  Incomplete
Status in telephony-service package in Ubuntu:
  New

Bug description:
  I just received five incoming calls but I couldn't answer any of them.
  In each case the phone started vibrating, then after a while the ring
  tone started and the answer buttons were displayed, but before I had a
  chance to answer, the phone seemed to give up and go back to sleep.
  Then I could see the green envelope meaning that I had missed a call.

  The fifth time was me trying from another phone.  In this case it
  seemed that the line was still ringing, but again I was unable to
  answer the call.

  After rebooting the phone, I can now answer incoming calls no problem.
  So it seems this is some bad state that the phone gets into after a
  while.

  I've previously had problems with my phone's cover blocking the light
  sensor and preventing me answering calls.  However in this case I was
  expecting the call and had prepared by opening the cover, so this
  can't be the problem.

  Phone is an MX4.  OS Ubuntu 15.04 (OTA-10.1).

  FYI, this was a job interview, with a CTO who was phoning from New
  York.  I'd already had to delay a week after missing the first
  appointment due to the exact same problem.  I've been barely
  tolerating Ubuntu Phone's bugs up to now, but this is the final straw.

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

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


[Touch-packages] [Bug 1588127] Re: Phone abandons incoming call

2016-06-28 Thread Tiago Salem Herrmann
sorry, I just read your comment where you say you're not able to use adb.
Can you access the phone over ssh somehow?

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

Title:
  Phone abandons incoming call

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  Incomplete
Status in telephony-service package in Ubuntu:
  New

Bug description:
  I just received five incoming calls but I couldn't answer any of them.
  In each case the phone started vibrating, then after a while the ring
  tone started and the answer buttons were displayed, but before I had a
  chance to answer, the phone seemed to give up and go back to sleep.
  Then I could see the green envelope meaning that I had missed a call.

  The fifth time was me trying from another phone.  In this case it
  seemed that the line was still ringing, but again I was unable to
  answer the call.

  After rebooting the phone, I can now answer incoming calls no problem.
  So it seems this is some bad state that the phone gets into after a
  while.

  I've previously had problems with my phone's cover blocking the light
  sensor and preventing me answering calls.  However in this case I was
  expecting the call and had prepared by opening the cover, so this
  can't be the problem.

  Phone is an MX4.  OS Ubuntu 15.04 (OTA-10.1).

  FYI, this was a job interview, with a CTO who was phoning from New
  York.  I'd already had to delay a week after missing the first
  appointment due to the exact same problem.  I've been barely
  tolerating Ubuntu Phone's bugs up to now, but this is the final straw.

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

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


[Touch-packages] [Bug 1588127] Re: Phone abandons incoming call

2016-06-08 Thread Tiago Salem Herrmann
Could you also attach .cache/upstart/dbus.log? And if you are able to
reproduce it easily, it would be good to also grab two additional logs
using the following steps:

connect the device in development mode via usb in your desktop and run:

1) adb shell dbus-monitor > call_dbus-session.log
2) in another terminal run: adb shell dbus-monitor --system > 
call_dbus-system.log
3) receive a call and reproduce the bug
4) attach both call_dbus-session.log and call_dbus-system.log to the bug report.

thank you.

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

Title:
  Phone abandons incoming call

Status in Canonical System Image:
  Incomplete
Status in ofono package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  New

Bug description:
  I just received five incoming calls but I couldn't answer any of them.
  In each case the phone started vibrating, then after a while the ring
  tone started and the answer buttons were displayed, but before I had a
  chance to answer, the phone seemed to give up and go back to sleep.
  Then I could see the green envelope meaning that I had missed a call.

  The fifth time was me trying from another phone.  In this case it
  seemed that the line was still ringing, but again I was unable to
  answer the call.

  After rebooting the phone, I can now answer incoming calls no problem.
  So it seems this is some bad state that the phone gets into after a
  while.

  I've previously had problems with my phone's cover blocking the light
  sensor and preventing me answering calls.  However in this case I was
  expecting the call and had prepared by opening the cover, so this
  can't be the problem.

  Phone is an MX4.  OS Ubuntu 15.04 (OTA-10.1).

  FYI, this was a job interview, with a CTO who was phoning from New
  York.  I'd already had to delay a week after missing the first
  appointment due to the exact same problem.  I've been barely
  tolerating Ubuntu Phone's bugs up to now, but this is the final straw.

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

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


[Touch-packages] [Bug 1585791] Re: Clicking on links doesn't work

2016-05-25 Thread Tiago Salem Herrmann
This is the commit that broke clicking the links:

http://bazaar.launchpad.net/~phablet-team/address-book-
app/trunk/revision/586

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

Title:
  Clicking on links doesn't work

Status in address-book-app package in Ubuntu:
  New
Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  Links in text messages don't work any more since krillin image 342.

  the diff:

  http://pastebin.ubuntu.com/16693187/

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

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


[Touch-packages] [Bug 1568750] Re: With dual SIM, SIM choice is not retained for a SMS conversation

2016-04-29 Thread Tiago Salem Herrmann
The feature to restore a previous sim selection in a given conversation was 
never part of the design spec, thus it was never implemented.
The current behavior is that messaging-app must always use the sim card 
selected as default in system-settings.

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

Title:
  With dual SIM, SIM choice is not retained for a SMS conversation

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

Bug description:
  For an existing SMS conversation with one contact (when using dual
  SIM):

  Expected behaviour: tap on conversation in messaging-app, the
  messaging screen opens showing the SMS conversation, with the
  previously used SIM selected.

  Actual behaviour: SIM #1 is always selected, even if all previous SMS
  messages to that contact have used SIM #2.

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

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


[Touch-packages] [Bug 1571686] Re: "Ask me each time" for SMS does not work

2016-04-28 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/fix-sections-dualsim

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

Title:
  "Ask me each time" for SMS does not work

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

Bug description:
  BQ Aquaris E4.5 with OTA 10.1
  Settings "Ask me each time" in "For messages, use" in "Cellular" in "Settings"

  I am using 2 SIM cards and since the beginning of my usage (started
  with release21 this settings was working as expected -> when I wanted
  to send SMS and did not select SIM card by myself (so no SIM card was
  highlighted in the Messages app), I was asked to select one.

  Since some time (OTA-9?) there is always (first one) SIM card selected
  despite the above mentioned settings. And, by whatever reason
  sometimes the SMS is send from other then selected SIM card. Because
  it is now happening much more often and I see that "nice" info: "You
  switched to XXX XX" (PS: no I did not!), it becomes really annoying (I
  have one SIM card in roaming mode) and people are receiving my
  messages from different number and therefore I decided to open this
  bug report.

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

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


[Touch-packages] [Bug 1571094] Re: /usr/bin/phone-gsettings-migration.py:ValueError:/usr/bin/phone-gsettings-migration.py@27:__call__:call_blocking

2016-04-15 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/fix-migration-script

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

Title:
  /usr/bin/phone-gsettings-migration.py:ValueError:/usr/bin/phone-
  gsettings-migration.py@27:__call__:call_blocking

Status in telephony-service package in Ubuntu:
  Confirmed

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

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

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


[Touch-packages] [Bug 1565103] [NEW] bottom edge first time wizard is being incorrectly displayed on dialer-app and messaging-app

2016-04-01 Thread Tiago Salem Herrmann
Public bug reported:

A new bottom edge wizard is being displayed in the recent images, but
there are cases where it is being displayed when it shouldn't.

Steps to reproduce:

1) Flash the phone with --wipe.
2) Before opening dialer-app, lock the phone and receive a call.
3) Once you accept the call, dialer-app is launched and instead of the live 
call view, the wizard is displayed on top of it, but there is no bottom edge on 
that screen, and I believe in this case we should not display any wizards, 
specially because the phone is locked, but even if the phone was unlocked, we 
should not display the wizard if the view does not have bottom edge enabled.

Another case is when launching messaging-app or dialer-app. we have a
first time dialog that appears behind the wizard. Not sure if that's
expected, but seems to cause a bad user experience to me.

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

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

Title:
  bottom edge first time wizard is being incorrectly displayed on
  dialer-app and messaging-app

Status in unity8 package in Ubuntu:
  New

Bug description:
  A new bottom edge wizard is being displayed in the recent images, but
  there are cases where it is being displayed when it shouldn't.

  Steps to reproduce:

  1) Flash the phone with --wipe.
  2) Before opening dialer-app, lock the phone and receive a call.
  3) Once you accept the call, dialer-app is launched and instead of the live 
call view, the wizard is displayed on top of it, but there is no bottom edge on 
that screen, and I believe in this case we should not display any wizards, 
specially because the phone is locked, but even if the phone was unlocked, we 
should not display the wizard if the view does not have bottom edge enabled.

  Another case is when launching messaging-app or dialer-app. we have a
  first time dialog that appears behind the wizard. Not sure if that's
  expected, but seems to cause a bad user experience to me.

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

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


[Touch-packages] [Bug 1563711] Re: Can't enable loudspeaker during a call on krillin

2016-03-30 Thread Tiago Salem Herrmann
Thanks for the report.

If you manage to reproduce that again, please grab the dbus-monitor logs, 
also try to switch to another app, then back to dialer and try enabling the 
speaker mode again.

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

Title:
  Can't enable loudspeaker during a call on krillin

Status in Canonical System Image:
  New
Status in dialer-app package in Ubuntu:
  New

Bug description:
  I noticed yesterday that the loudspeaker button doesn't do anything on
  my krillin during a call.

  Couldn't find anything in the logs, I'm afraid.

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: dialer-app 0.1+15.04.20160317-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.17.2-0ubuntu1.3touch1
  Architecture: armhf
  Date: Wed Mar 30 09:54:55 2016
  InstallationDate: Installed on 2016-03-30 (0 days ago)
  InstallationMedia: Ubuntu 15.04 - armhf (20160330-020304)
  SourcePackage: dialer-app
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1550582] Re: Cant delete messages

2016-03-30 Thread Tiago Salem Herrmann
Hi Arnaud,

looks like the issue you describe is a different bug. I believe we have
the similar bug for dialer already reported here:
https://bugs.launchpad.net/ubuntu/+source/dialer-app/+bug/1407977

It's a different app, but the root cause of both bugs is the same.

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

Title:
  Cant delete messages

Status in Canonical System Image:
  Incomplete
Status in messaging-app package in Ubuntu:
  Incomplete

Bug description:
  I swipe to the right to reveal the red delete icon. I tap, and the app
  freezes for around 30 seconds. Then the message is still there. E4.5,
  OTA9.1.

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

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


[Touch-packages] [Bug 1475102] Re: The "call waiting "function is incomplete (Just for operator)

2016-03-25 Thread Tiago Salem Herrmann
Hi, thanks for the log,

but it seems you did not use adb shell to run dbus-monitor.
This log is from your desktop, not the phone.
Can you make sure the following command is executed?

adb shell dbus-monitor --system interface=org.ofono.VoiceCallManager >
call_waiting.log

thanks.

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

Title:
  The "call waiting "function is incomplete (Just for operator)

Status in Canonical System Image:
  Incomplete
Status in telephony-service package in Ubuntu:
  Incomplete

Bug description:
  $ system-image-cli -i
  current build number: 57
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-10 02:04:41
  version version: 57
  version ubuntu: 20150709
  version device: 20150709-8965e37
  version custom: 20150709-814-6-40

  Reproduce Steps:
  1,System settings-->Phone-->Turn the Call waiting ON
  2,Call to operator(Unicom 10010 China mobile 10086)
  3,Keep the DUT is on the phone
  4,Make the another phone to DUT

  Expect Result:
  The user can answer the another call

  Actual Result:
  The DUT can't answer the another phone (call waiting is not work for operator 
)
  But for Android OS ,it's work fine for operator,And IOS can support 
"End#accept"Please  check it !

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

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


[Touch-packages] [Bug 1418040] Re: Calling from car using bluetooth, call is placed on ril_0, even though ril_1 is default

2016-03-22 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/remove-gsettings

** Branch linked: lp:~tiagosh/telephony-service/default-sim-for-calls

** Branch linked: lp:~tiagosh/telepathy-ofono/use-accounts-service

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

Title:
  Calling from car using bluetooth, call is placed on ril_0, even though
  ril_1 is default

Status in Canonical System Image:
  In Progress
Status in bluez package in Ubuntu:
  Invalid
Status in ofono package in Ubuntu:
  Triaged
Status in telephony-service package in Ubuntu:
  Triaged
Status in ubuntu-system-settings package in Ubuntu:
  In Progress

Bug description:
  What happened
  Placed call from car over bluetooth
  Call was placed on my first SIM card, even though I selected my second SIM as 
default for calls

  What should have happened
  The call should have been placed on my second SIM

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: telephony-service 0.1+15.04.20150124-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: armhf
  Date: Wed Feb  4 14:25:44 2015
  InstallationDate: Installed on 2015-02-02 (2 days ago)
  InstallationMedia: Ubuntu Vivid Vervet (development branch) - armhf 
(20150202-020204)
  SourcePackage: telephony-service
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1558778] [NEW] long press on attachments closes the osk

2016-03-19 Thread Tiago Salem Herrmann
Public bug reported:

1)  open messaging-app and add an attachment
2) tap the input field as if you were going to type a message
3) once the osk opens, long press the attachment to get the "remove" popup 
button.

Expected behavior:
The osk should remain open

Current behavior:
notice that the osk is closed and the popup remains on screen.

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

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

Title:
  long press on attachments closes the osk

Status in messaging-app package in Ubuntu:
  New

Bug description:
  1)  open messaging-app and add an attachment
  2) tap the input field as if you were going to type a message
  3) once the osk opens, long press the attachment to get the "remove" popup 
button.

  Expected behavior:
  The osk should remain open

  Current behavior:
  notice that the osk is closed and the popup remains on screen.

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

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


[Touch-packages] [Bug 1558780] [NEW] contact profile empty when opened from a recents entry

2016-03-19 Thread Tiago Salem Herrmann
Public bug reported:

1) Open dialer-app
2) open the recents page (bottom edge)
3) swipe left any entry from a known contact and click the profile button

Expected behavior:
Contact profile displayed

Current behavior:
Contact profile page is displayed empty

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

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

Title:
  contact profile empty when opened from a recents entry

Status in dialer-app package in Ubuntu:
  New

Bug description:
  1) Open dialer-app
  2) open the recents page (bottom edge)
  3) swipe left any entry from a known contact and click the profile button

  Expected behavior:
  Contact profile displayed

  Current behavior:
  Contact profile page is displayed empty

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

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


[Touch-packages] [Bug 1546079] Re: [France]SMS aren't sent to their destinations or are received in the same device

2016-03-10 Thread Tiago Salem Herrmann
Hi,

can you confirm if you tried to send a message to your own number before
sending a message to other contact?

There was a bug that got recently fixed that if you first send a message
to your own number, all subsequent messages sent to other contacts could
end up being sent to your own number.

Does this behavior persist after a reboot? If not, try sending a message
to yourself and check if the behavior is reproduced.

thanks.

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

Title:
  [France]SMS aren't sent to their destinations or are received in the
  same device

Status in Canonical System Image:
  Incomplete
Status in address-book-app package in Ubuntu:
  New
Status in messaging-app package in Ubuntu:
  New
Status in ofono package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  New

Bug description:
  2 French customers have reproduced this behaviour after OTA-9 we're
  still collecting information from them.

  Product: bq Aquaris E4.5 & E5
  FW version: OTA-9

  Preconditions:

  STEPS TO REPRO:
  1. Compose an SMS.
  2. Check on the other side if the SMS was received.
  3. Check your own SMS box

  Actual Result:
  SMS are received back in the device or sent to another unwanted contacts
  Expected Result:
  SMS messages should be sent to the contact selected

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

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


[Touch-packages] [Bug 1471680] Re: there is no copy and paste options when long pressing the number in dialer

2016-03-02 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/dialer-app/add-copy-and-paste

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

Title:
  there is no copy and paste options when long pressing the number in
  dialer

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  New
Status in dialer-app package in Ubuntu:
  Confirmed

Bug description:
  current build number: 47
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-06 05:43:41
  version version: 47
  version ubuntu: 20150706
  version device: 20150701-cdd791c
  version custom: 20150602-731-5-32

  Steps:
1.open the dialer app
2.input some numbers 
3.long press the numbers 

  Expectations:
After step3#,the numbers should be chosen and there will be two options: 
copy,select

  Actual result: after step3#, there is nothing appears

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

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


[Touch-packages] [Bug 1547462] Re: [notification] all received messages are not always played back

2016-03-02 Thread Tiago Salem Herrmann
The real cause is that we skip notifications when the sender phone number 
matches the sim card number that received that message.
The fix is on the way.

Thanks for all the information and for taking time to help us fix this
bug.

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

Title:
  [notification] all received messages are not always played back

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Here is another case where received messages are not notified:
  SMS messages sent directly from my operator to my number.
  To do so I need to send the SMS into a formatted url (Percent-encoding) from
  my operator web site: example: to send the message "Hello World !"
  on the mobile connect to :
  
https://smsapi.free-mobile.fr/sendmsg?user=login=password=Hello%20World%20!

  As well the login/password is the one supplied by my operator.

  This kind of SMS message will not be notified when it arrives in my BQ 
Aquaris Phone.
  Other notifications work well. This problem did not exist before OTA-9

  Expected Result: This SMS also should give sound notification.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 29
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2016-01-28 09:44:29
  version version: 29
  version ubuntu: 20160123.1
  version tag: OTA-9
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid
  phablet@ubuntu-phablet:~$

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

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


[Touch-packages] [Bug 1547462] Re: [notification] all received messages are not always played back

2016-03-01 Thread Tiago Salem Herrmann
Thank you.

Could you also run the following commands as soon as the bug is
reproduced and then attach the output files here (indicator_observer.log
and indicator_backtrace.log) ?

1) dbus-send --print-reply
--dest=com.canonical.TelephonyServiceIndicator
/org/freedesktop/Telepathy/Client/TelephonyServiceIndicator
org.freedesktop.DBus.Properties.Get
string:org.freedesktop.Telepathy.Client.Observer
string:ObserverChannelFilter &> indicator_observer.log

2) sudo gdb --batch -ex "thread apply all bt full" -p $(pidof telephony-
service-indicator) > indicator_backtrace.log


Some more questions:

1)  what happens if you receive an sms from any other number after the
bug is reproduced? Does it behave correctly? or once the bug is
reproduced it always happens until you reboot?

2) Can you check if the count of received sms's in the welcome screen
increase when you get these messages?

3) When you get the message from your operator, is the recipient number
in messaging-app the same as your own sim card phone number? Or is this
a carrier service phone number?

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

Title:
  [notification] all received messages are not always played back

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Here is another case where received messages are not notified:
  SMS messages sent directly from my operator to my number.
  To do so I need to send the SMS into a formatted url (Percent-encoding) from
  my operator web site: example: to send the message "Hello World !"
  on the mobile connect to :
  
https://smsapi.free-mobile.fr/sendmsg?user=login=password=Hello%20World%20!

  As well the login/password is the one supplied by my operator.

  This kind of SMS message will not be notified when it arrives in my BQ 
Aquaris Phone.
  Other notifications work well. This problem did not exist before OTA-9

  Expected Result: This SMS also should give sound notification.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 29
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2016-01-28 09:44:29
  version version: 29
  version ubuntu: 20160123.1
  version tag: OTA-9
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid
  phablet@ubuntu-phablet:~$

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

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


[Touch-packages] [Bug 1547462] Re: [notification] all received messages are not always played back

2016-03-01 Thread Tiago Salem Herrmann
Thank you.

I have some more questions:

1) Does the phone vibrate even you get the message?
2) Is messaging-app open? Can you reproduce it also with messaging-app closed?
3) Once you reproduce the bug, can you check if telephony-service-indicator is 
running with "ps -aux | grep telephony-service-indicator"

Thank you

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

Title:
  [notification] all received messages are not always played back

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Here is another case where received messages are not notified:
  SMS messages sent directly from my operator to my number.
  To do so I need to send the SMS into a formatted url (Percent-encoding) from
  my operator web site: example: to send the message "Hello World !"
  on the mobile connect to :
  
https://smsapi.free-mobile.fr/sendmsg?user=login=password=Hello%20World%20!

  As well the login/password is the one supplied by my operator.

  This kind of SMS message will not be notified when it arrives in my BQ 
Aquaris Phone.
  Other notifications work well. This problem did not exist before OTA-9

  Expected Result: This SMS also should give sound notification.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 29
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2016-01-28 09:44:29
  version version: 29
  version ubuntu: 20160123.1
  version tag: OTA-9
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid
  phablet@ubuntu-phablet:~$

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

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


[Touch-packages] [Bug 1475102] Re: The "call waiting "function is incomplete (Just for operator)

2016-03-01 Thread Tiago Salem Herrmann
looks like you ran dbus-monitor while making the call to the operator.

Could you run again before your receive the second call (waiting call)?

thanks.

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

Title:
  The "call waiting "function is incomplete (Just for operator)

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  Triaged

Bug description:
  $ system-image-cli -i
  current build number: 57
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-10 02:04:41
  version version: 57
  version ubuntu: 20150709
  version device: 20150709-8965e37
  version custom: 20150709-814-6-40

  Reproduce Steps:
  1,System settings-->Phone-->Turn the Call waiting ON
  2,Call to operator(Unicom 10010 China mobile 10086)
  3,Keep the DUT is on the phone
  4,Make the another phone to DUT

  Expect Result:
  The user can answer the another call

  Actual Result:
  The DUT can't answer the another phone (call waiting is not work for operator 
)
  But for Android OS ,it's work fine for operator,And IOS can support 
"End#accept"Please  check it !

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

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


[Touch-packages] [Bug 1550582] Re: Cant delete messages

2016-02-29 Thread Tiago Salem Herrmann
Hi,

do you have access to the device over adb? if so, could you run "adb shell 
dbus-monitor > history.log"
and try removing the message again?

Then attach history.log here.

Thanks

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

Title:
  Cant delete messages

Status in Canonical System Image:
  Triaged
Status in messaging-app package in Ubuntu:
  Triaged

Bug description:
  I swipe to the right to reveal the red delete icon. I tap, and the app
  freezes for around 30 seconds. Then the message is still there. E4.5,
  OTA9.1.

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

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


[Touch-packages] [Bug 1549352] Re: New message to contact only opens messaging app

2016-02-25 Thread Tiago Salem Herrmann
** Branch unlinked: lp:~tiagosh/messaging-
app/set_width_based_on_screen_size

** Branch linked: lp:~tiagosh/messaging-app/fix_leaks_and_empty_view

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

Title:
  New message to contact only opens messaging app

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

Bug description:
  Test case.
  - Open Contacts app.
  - Add a new contact with a phone number.
  - Save the contact.
  - On the contact list, tap on the contact.
  - Tap on the messaging button to send a message to the contact.

  Expected result.
  - Messaging app is opened but the message list is displayed, instead of the 
screen to write the message to the contact.

  Through Dialer app, the message creation screen is opened correctly.

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

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

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


[Touch-packages] [Bug 1547462] Re: [notification] all received messages are not always played back

2016-02-25 Thread Tiago Salem Herrmann
Thank you!

from the logs I can't tell much yet where the problem is,

could you run "dbus-monitor > dbus.log" as phablet user and after you
reproduce the issue just press ctrl+c and attach dbus.log file here?

You can remove the phone number from the logs before attaching it if you
wish.

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

Title:
  [notification] all received messages are not always played back

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Here is another case where received messages are not notified:
  SMS messages sent directly from my operator to my number.
  To do so I need to send the SMS into a formatted url (Percent-encoding) from
  my operator web site: example: to send the message "Hello World !"
  on the mobile connect to :
  
https://smsapi.free-mobile.fr/sendmsg?user=login=password=Hello%20World%20!

  As well the login/password is the one supplied by my operator.

  This kind of SMS message will not be notified when it arrives in my BQ 
Aquaris Phone.
  Other notifications work well. This problem did not exist before OTA-9

  Expected Result: This SMS also should give sound notification.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 29
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2016-01-28 09:44:29
  version version: 29
  version ubuntu: 20160123.1
  version tag: OTA-9
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid
  phablet@ubuntu-phablet:~$

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

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


[Touch-packages] [Bug 1547462] Re: [notification] all received messages are not always played back

2016-02-25 Thread Tiago Salem Herrmann
Hi, can you check if you have any telephony-service-indicator crash file
in /var/crash ?

Also, check if you get any suspicious message in $HOME/.cache/upstart
/telephony-service-indicator.log by the time you receive those sms's.

Thank you.

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

Title:
  [notification] all received messages are not always played back

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  New

Bug description:
  Here is another case where received messages are not notified:
  SMS messages sent directly from my operator to my number.
  To do so I need to send the SMS into a formatted url (Percent-encoding) from
  my operator web site: example: to send the message "Hello World !"
  on the mobile connect to :
  
https://smsapi.free-mobile.fr/sendmsg?user=login=password=Hello%20World%20!

  As well the login/password is the one supplied by my operator.

  This kind of SMS message will not be notified when it arrives in my BQ 
Aquaris Phone.
  Other notifications work well. This problem did not exist before OTA-9

  Expected Result: This SMS also should give sound notification.

  phablet@ubuntu-phablet:~$ system-image-cli -i
  current build number: 29
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2016-01-28 09:44:29
  version version: 29
  version ubuntu: 20160123.1
  version tag: OTA-9
  version device: 20160108-efc96d8
  version custom: 20160111-926-36--vivid
  phablet@ubuntu-phablet:~$

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

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


[Touch-packages] [Bug 1518344] Re: "Swipe to reveal actions" label needs more space.

2016-02-23 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/fix_swipe-demo_text_position

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

Title:
  "Swipe to reveal actions" label needs more space.

Status in Canonical System Image:
  Triaged
Status in messaging-app package in Ubuntu:
  In Progress

Bug description:
  Hi!

  I translated the following string to Hungarian:

  "Swipe to reveal actions"

  But it needs more space (see attached screenshot). Additional info: In
  the Phone app the same translation looks okay.

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

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


[Touch-packages] [Bug 1546094] [NEW] messaging-app apparmor profile deny reading dconf files

2016-02-16 Thread Tiago Salem Herrmann
Public bug reported:

Messaging-app is now running confined, but it can't recover some
settings as read access to /home/phablet/.config/dconf/user  is getting
denied by the apparmor profile by default.

This is currently causing problems to read the default sim card for
messages and the mms group chat option under the settings panel.

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

** Branch linked: lp:~tiagosh/messaging-app/allow-reading-dconf-files

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

Title:
  messaging-app apparmor profile deny reading dconf files

Status in messaging-app package in Ubuntu:
  New

Bug description:
  Messaging-app is now running confined, but it can't recover some
  settings as read access to /home/phablet/.config/dconf/user  is
  getting denied by the apparmor profile by default.

  This is currently causing problems to read the default sim card for
  messages and the mms group chat option under the settings panel.

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

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


[Touch-packages] [Bug 1513082] Re: Ringtone in silent mode not playing on wired headsets

2016-02-05 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/headset-silent-mode

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

Title:
  Ringtone in silent mode not playing on wired headsets

Status in Canonical System Image:
  Confirmed
Status in telepathy-ofono package in Ubuntu:
  Confirmed

Bug description:
  Currently telepathy-ofono changes the audio route according to its internal 
state.
  Considering that the audio route affects other components like 
telephony-service-approver/indicator, the audio routing should be done in 
telephony-service instead.

  Cases like playing ringtones in the headset while in silent mode, and
  handling incoming calls from other connection managers (sip for
  example) will require the audio routing being done in telephony-
  service as well.

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

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


[Touch-packages] [Bug 1460301] Re: [Dialer] Incoming call - no info which SIM card was called (dual SIM)

2016-02-04 Thread Tiago Salem Herrmann
The SIM information on the incoming call screen is about the sim card
that's receiving the call from that contact, and not the sim card where
that contact was originally stored.

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

Title:
  [Dialer] Incoming call - no info which SIM card was called (dual SIM)

Status in Canonical System Image:
  Fix Released
Status in Ubuntu UX:
  Fix Committed
Status in telephony-service package in Ubuntu:
  Fix Released

Bug description:
  Ubuntu 14.10 (r22)

  (Don't know how to find a package version :/, but I checked for
  updates on 29-05-2015 and all apps are up to date)

  I have two SIM cards inserted into BQ Aquaris 4.5

  On incoming call I expect to see information if SIM1 or SIM2 was dialled by 
caller alongside caller ID.
  I see only caller ID.

  It may be useful if one of the SIM cards is in roaming, or when one of
  the SIMs is a company number while other is a private number.

   UX comment ---

  The SIM card indication should replace the "Incoming call" text. This
  applies only for dual SIM devices. On a single SIM device the
  "Incoming call" labe remains. Please see attached wireframe for the
  exact solution.

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

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


[Touch-packages] [Bug 1518344] Re: "Swipe to reveal actions" label needs more space.

2016-02-02 Thread Tiago Salem Herrmann
** Branch linked: lp:~radonapps/messaging-app/fix_swipe-
demo_text_position

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

Title:
  "Swipe to reveal actions" label needs more space.

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

Bug description:
  Hi!

  I translated the following string to Hungarian:

  "Swipe to reveal actions"

  But it needs more space (see attached screenshot). Additional info: In
  the Phone app the same translation looks okay.

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

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


[Touch-packages] [Bug 1418040] Re: Calling from car using bluetooth, call is placed on ril_0, even though ril_1 is default

2016-02-02 Thread Tiago Salem Herrmann
Yes, this is still an issue. We agreed with Alfonso that ofono will use 
AccountsService to get the default sim card for calls.
It needs some work on telephony-service and system-settings.

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

Title:
  Calling from car using bluetooth, call is placed on ril_0, even though
  ril_1 is default

Status in Canonical System Image:
  Confirmed
Status in bluez package in Ubuntu:
  Invalid
Status in ofono package in Ubuntu:
  Triaged
Status in telephony-service package in Ubuntu:
  Triaged
Status in ubuntu-system-settings package in Ubuntu:
  Confirmed

Bug description:
  What happened
  Placed call from car over bluetooth
  Call was placed on my first SIM card, even though I selected my second SIM as 
default for calls

  What should have happened
  The call should have been placed on my second SIM

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: telephony-service 0.1+15.04.20150124-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.15.1-0ubuntu4
  Architecture: armhf
  Date: Wed Feb  4 14:25:44 2015
  InstallationDate: Installed on 2015-02-02 (2 days ago)
  InstallationMedia: Ubuntu Vivid Vervet (development branch) - armhf 
(20150202-020204)
  SourcePackage: telephony-service
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1535297] Re: Unity8 crashes on session logout on desktop

2016-01-27 Thread Tiago Salem Herrmann
It is possible to link libphonenumber against protobuf-lite with this
patch: http://pastebin.ubuntu.com/14680746/ .

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

Title:
  Unity8 crashes on session logout on desktop

Status in Mir:
  Invalid
Status in libphonenumber package in Ubuntu:
  New
Status in mir package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  This is happening on a fresh setup, which is basically:
  Xenial 17Jan iso + unity8-desktop-session-mir package

  When I logout, I get a black screen. Turns out unity8 is crashing with
  a "double free or linked list corruption"

  Please find unity8.log attached

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

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


[Touch-packages] [Bug 1512132] Re: sometimes no ring for incoming calls.

2016-01-25 Thread Tiago Salem Herrmann
It seems to me that media-hub is crashing at the time approver tries to
play the ringtone. The workaround we landed makes sure the next incoming
calls will work without rebooting the device, but not the one that
actually crashed media-hub.

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

Title:
  sometimes no ring for incoming calls.

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

Bug description:
  This is similar, but not equal to this:

  https://bugs.launchpad.net/canonical-devices-system-image/+bug/1471338

  After ota-7, my aquaris E4.5 sometimes doesn't ring on incoming calls.
  It vibrates, the led blinks, but no sound at all. The phone isn't
  muted and toggle the related function doesn't affect the problem - the
  phone remains muted and only a reboot let the ringer work again for a
  while. after that the problem returns.

  when the problem presents, telephone-service-indicator.log reports:

  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  TelephonyService/MessagingMenu: Calling back "+"
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

  ** (process:2264): WARNING **: a source with id 'telephony-service-indicator' 
doesn't exist
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

  system-image-cli -i

  current build number: 28
  device name: krillin
  channel: ubuntu-touch/stable/bq-aquaris.en
  last update: 2015-12-17 18:07:06
  version version: 28
  version ubuntu: 20151210
  version tag: OTA-8.5
  version device: 20150821-736d127
  version custom: 2015--36-46-vivid

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

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


[Touch-packages] [Bug 1533659] Re: Sending rotated picture by MMS will send the original one

2016-01-13 Thread Tiago Salem Herrmann
The picture received from content-hub is correctly rotated. I believe
some component in messaging app is not respecting the Orientation exif
property.

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

Title:
  Sending rotated picture by MMS will send the original one

Status in Canonical System Image:
  New
Status in messaging-app package in Ubuntu:
  New

Bug description:
  How to reproduce it : take a picture, modify it by rotating it once, go back 
to the picture and share it by MMS.
  Expected result: rotated picture sent
  Actual result: original (before modification) picture sent

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

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


[Touch-packages] [Bug 1532899] Re: Group chat sometimes misses messages with Unknown Number Message not found

2016-01-11 Thread Tiago Salem Herrmann
Nuntium is signaling MessageAdded without "Sender", and the attachment file 
contains "message not found".
In the nuntium log we can find the following message:

2016/01/11 14:16:18 Cannot upload m-notifyresp.ind encoded file
/home/phablet/.cache/nuntium/store/a53fcb01bc22bbfaa2812221d3596d0f.m-notifyresp.ind
to message center: NETWORK ERROR

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

Title:
  Group chat sometimes misses messages with Unknown Number Message not
  found

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

Bug description:
  This happened the last two times I received group chat messages.
  Several messages were not listed in the chat but rather under an
  Unknown Number contact with content Message no found.

  I see 4 such entries for the time covered in the log files.

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

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


[Touch-packages] [Bug 1528625] Re: messaging-app should run confined

2016-01-08 Thread Tiago Salem Herrmann
** Branch linked: lp:~phablet-team/messaging-app/add-apparmor-profile

** Branch linked: lp:~tiagosh/apparmor-easyprof-ubuntu/messaging-app-
confinement

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

Title:
  messaging-app should run confined

Status in Canonical System Image:
  New
Status in messaging-app package in Ubuntu:
  New

Bug description:
  We're introducing the ability to record audio clips from the
  messaging-app which will record voice using the microphone.  This
  requires trust-store integration for the prompts and we've been told
  making the app confined will allow us to get this for free.

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

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


[Touch-packages] [Bug 1529903] Re: Blank message in a group sms

2016-01-05 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/update-mms-flag

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

Title:
  Blank message in a group sms

Status in Canonical System Image:
  Confirmed
Status in telepathy-ofono package in Ubuntu:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  MX4 running 201

  Received an incoming text to an existing group
  A notification was shown and added to the indicator
  The message content was empty as was the contact info
  Other members in the group received the SMS properly and subsequent messages 
were displayed correctly.
  There is no entry shown in the messaging app
  There is no crash file

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

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


[Touch-packages] [Bug 1523722] Re: /usr/bin/telephony-service-approver:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:core::dbus::Bus::send_wit

2016-01-05 Thread Tiago Salem Herrmann
** Also affects: qtubuntu-media (Ubuntu)
   Importance: Undecided
   Status: New

** Summary changed:

- 
/usr/bin/telephony-service-approver:6:__gnu_cxx::__verbose_terminate_handler:__cxxabiv1::__terminate:std::terminate:__cxxabiv1::__cxa_throw:core::dbus::Bus::send_with_reply_and_block_for_at_most
+ Crash when deleting QMediaPlayer instance

** Changed in: qtubuntu-media (Ubuntu)
 Assignee: (unassigned) => Jim Hodapp (jhodapp)

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

Title:
  Crash when deleting QMediaPlayer instance

Status in Canonical System Image:
  Confirmed
Status in qtubuntu-media package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  Invalid

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding telephony-service.  This problem was most recently seen with
  version 0.1+16.04.20151119-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/8f663af0b140859566ab5cf21a4ad6e5eb7b6fc0
  contains more details.

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

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


[Touch-packages] [Bug 1523722] Re: Crash when deleting QMediaPlayer instance

2016-01-05 Thread Tiago Salem Herrmann
I am guessing this crash started to happen when we introduced the following 
change:
http://bazaar.launchpad.net/~phablet-team/telephony-service/trunk/revision/1144

It essentially pauses the stream and delete the old instance before creating a 
new one.
The backtrace shows an exception is raised in 
core::dbus::Bus::send_with_reply_and_block_for_at_most, and another thread 
shows a __pthread_cond_wait(), can it be some sort of deadlock on deletion?

** Changed in: telephony-service (Ubuntu)
   Status: New => Invalid

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

Title:
  Crash when deleting QMediaPlayer instance

Status in Canonical System Image:
  Confirmed
Status in media-hub package in Ubuntu:
  New
Status in qtubuntu-media package in Ubuntu:
  New
Status in telephony-service package in Ubuntu:
  Invalid

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding telephony-service.  This problem was most recently seen with
  version 0.1+16.04.20151119-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/8f663af0b140859566ab5cf21a4ad6e5eb7b6fc0
  contains more details.

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

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


[Touch-packages] [Bug 1527187] Re: Unable to hang up outgoing call

2015-12-22 Thread Tiago Salem Herrmann
dialer-app only update existing calls in the live call screen when it is in 
foreground. (we unregister the telepathy observer when it's in background to 
avoid other problems).
If you lock the device with dialer-app open, then unlock it, it is still 
reported as inactive by Qt.application.active.
If we try to make a call in this state, the app won't be able to control it. 
(including the hangup button not working)
Once we swipe the app to background and then foreground again it works again, 
and Qt.application.active reports the right state.

Did we land any change to the dialer-app focus logic on unity recently?

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

Title:
  Unable to hang up outgoing call

Status in Canonical System Image:
  New
Status in dialer-app package in Ubuntu:
  Confirmed

Bug description:
  When I make an outgoing call, I am unable to hang up. I can do so only
  by changing to another app and then return to the dialer-ap.

  Step to reproduce:

  1.) Open the dialer-app
  2.) Start an outgoing call
  3.) Try to hang up by pushing the hang-up button

  Then the hang-up button is unresponsive.

  Further steps to workaround

  4.) Swipe from the right and switch to another application
  5.) A green panel appears on the top of the screen.
  6.) Click the green panel to return to the call
  7.) Now the hang up button works and you an hang up the call

  My System is the following: (I will translate some descriptions from german):
  - Hardware: BQ Aquaris 4.5 Ubuntu Version

  From Settings->Device Information-> Operating System :
  - OS-Build Number:  OTA-8.5
  - Ubuntu-Image-Part: 20151210
  - Ubuntu-Build-Description: Ubuntu 15.04 -armhf (20151210-005527)
  - Device-Image-Part: 20150821-736d127
  - Device-Builde-Description: KRILIN01A-S15A_BQ_L100EN_2028_151210
  - Adaption-Image-Part: 2015--36-46-vivid

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

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


[Touch-packages] [Bug 1528668] [NEW] dialer-app not getting focused after screen unlock

2015-12-22 Thread Tiago Salem Herrmann
Public bug reported:


Steps to reproduce:

1) open dialer-app
2) lock the screen
3) unlock the screen

Expected behavior:
Qt.application.active == true

Current behavior
Qt.application.active == false until we manually switch the app to 
background/foreground again.

Additional info:
This is causing a bigger issue in the dialer-app functionality. It currently 
only refreshes the live call view when in foreground, so
when dialer is in this state, calls are placed but the call controls don't work 
(like hangup or speaker mode).

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

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

Title:
  dialer-app not getting focused after screen unlock

Status in unity8 package in Ubuntu:
  New

Bug description:
  
  Steps to reproduce:

  1) open dialer-app
  2) lock the screen
  3) unlock the screen

  Expected behavior:
  Qt.application.active == true

  Current behavior
  Qt.application.active == false until we manually switch the app to 
background/foreground again.

  Additional info:
  This is causing a bigger issue in the dialer-app functionality. It currently 
only refreshes the live call view when in foreground, so
  when dialer is in this state, calls are placed but the call controls don't 
work (like hangup or speaker mode).

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

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


[Touch-packages] [Bug 1522150] Re: Cut off messages

2015-12-08 Thread Tiago Salem Herrmann
In this case I believe the bug is in ofono/ril, since the
IncomingMessage signal we get from ofono already contains the message
cut off.

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

Title:
  Cut off messages

Status in Canonical System Image:
  Incomplete
Status in messaging-app package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  My girlfriend send me some SMS with text: 'Umiem. Skoro się pytam to chcę 
(emoticon) bo miałeś wczoraj rację, że dawno nie wychodziliśmy', but I've 
received 'nie wychodzilismy'.
  We tested that exact text few times - all the time I'm receiving 'nie 
wychodzilismy'. Could anyone test that text? Please look at 'ś' that 
disappeared in my phone.
  We test that without emoticon and - magic, I've received all text, but 
without polish special signs (like ł ś ę, etc.). Inserted other emoticon - 
received 'ie wychodzilismy'.
  I must also admin that I'm getting 's', 'e', etc. instead of 'ś', 'ę', etc.

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

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


[Touch-packages] [Bug 1522150] Re: Cut off messages

2015-12-07 Thread Tiago Salem Herrmann
The two possibilities here are that ofono is truncating the message after it's 
received, or the carrier is already sending it truncated to the phone.
The fact that characters like "ą ę" are being replaced by "a e" already 
indicates that something in the middle (carrier) is trying to replace/remove 
utf-8 characters from the message.
My opinion is that the carrier is editing the message and the swiftkey emoticon 
is making their parser break. 

If possible, insert the same sim card on another phone with another OS
and try sending the very same message. If it arrives truncated, than
it's a bug in the carrier side, otherwise if might be something in
ofono.

Thanks

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

Title:
  Cut off messages

Status in Canonical System Image:
  Incomplete
Status in messaging-app package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  My girlfriend send me some SMS with text: 'Umiem. Skoro się pytam to chcę 
(emoticon) bo miałeś wczoraj rację, że dawno nie wychodziliśmy', but I've 
received 'nie wychodzilismy'.
  We tested that exact text few times - all the time I'm receiving 'nie 
wychodzilismy'. Could anyone test that text? Please look at 'ś' that 
disappeared in my phone.
  We test that without emoticon and - magic, I've received all text, but 
without polish special signs (like ł ś ę, etc.). Inserted other emoticon - 
received 'ie wychodzilismy'.
  I must also admin that I'm getting 's', 'e', etc. instead of 'ś', 'ę', etc.

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

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


[Touch-packages] [Bug 1522150] Re: Cut off messages

2015-12-03 Thread Tiago Salem Herrmann
If you are getting characters replaced, I would say the operator is
incorrectly parsing/editing the message before sending.

Could you run "dbus-monitor > session.log", and in another shell "dbus-
monitor --system > system.log", and then receive the message and attach
the logs here?

Also note that the files might contain phone numbers, feel free to
remove them before attaching the logs.

Thanks.

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

Title:
  Cut off messages

Status in Canonical System Image:
  Incomplete
Status in messaging-app package in Ubuntu:
  Incomplete

Bug description:
  Hello,

  My girlfriend send me some SMS with text: 'Umiem. Skoro się pytam to chcę 
(emoticon) bo miałeś wczoraj rację, że dawno nie wychodziliśmy', but I've 
received 'nie wychodzilismy'.
  We tested that exact text few times - all the time I'm receiving 'nie 
wychodzilismy'. Could anyone test that text? Please look at 'ś' that 
disappeared in my phone.
  We test that without emoticon and - magic, I've received all text, but 
without polish special signs (like ł ś ę, etc.). Inserted other emoticon - 
received 'ie wychodzilismy'.
  I must also admin that I'm getting 's', 'e', etc. instead of 'ś', 'ę', etc.

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

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


[Touch-packages] [Bug 1517654] Re: Notifications contain no body message when only attachment received via MMS

2015-12-02 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/fix-1517654

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

Title:
  Notifications contain no body message when only attachment received
  via MMS

Status in Canonical System Image:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  latest rc-proposed, post ota8

  Send an MMS to the phone, with a single image, or vcard
  In the notification and mesasging-menu, it only shows the Contact name (or 
phone number) of the sender without any message.

  However in the messaging-app conversation view, it correctly shows:
  
  Attachment: 1 image (or 1 contact, etc).

  We should do the same thing for the notification and for the item in
  the messaging-menu. If the message only has an attachment and no text
  it should show the Attachment information.  If possible if the message
  has text and attachment we should show both if room in the
  notification and messaging menu

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-30 Thread Tiago Salem Herrmann
With latest pulseaudio from silo 9 the call is routed correctly, but I
still can't control the incoming call with the headset, and I hear the
device ringtone, and not the headset one. My guess here is that HFP is
only working during an active call, since I can hangup an active call
with the headset button but I can't accept a call while it's ringing.

I am attaching the syslog.

** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4527689/+files/syslog

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  In Progress

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
Looks like the bug is easily reproducible when the device gets connected before 
it's registered to the network, but I was able to reproduce the problem after 
connecting it manually after it's registered as well, but in this case, not 
always reproducible.
One thing I noticed (not sure if related) is that sometimes I get the ringtone 
as a2dp, sometimes I don't get nothing, and the device supports hfp, but it 
doesn't work on bluez5 as it seems. It does work on bluez4.

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
** Attachment added: "cards.txt"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4525338/+files/cards.txt

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
-- 
You received this bug notification because you are a member of Ubuntu
Touch seeded packages, which is subscribed to bluez in Ubuntu.
https://bugs.launchpad.net/bugs/1519809

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
** Attachment added: "syslog"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4525333/+files/syslog

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
** Attachment added: "dbus.log"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4525332/+files/dbus.log

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] [NEW] No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
Public bug reported:

After the latest update to bluez5 no sound is routed to the connected
bluetooth headset after a call is ended.

Steps to reproduce:

1) connect a bluetooth headset
2) Receive a call
3) End the call
4) Try to play music

Expected behavior:
Music is routed to the connected headset

Current behavior:
No sound is routed, although music player behaves as it was playing normally.

Additional info.
If you receive a second call, the audio is again routed normally to the headset 
after it's finished.
Just tried with old images with bluez4 and it works as expected.

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

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
** Attachment added: "bluetoothctl.txt"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4525230/+files/bluetoothctl.txt

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1519809] Re: No sound is routed to bluetooth headset after a call

2015-11-25 Thread Tiago Salem Herrmann
** Attachment added: "hciconfig.txt"
   
https://bugs.launchpad.net/ubuntu/+source/bluez/+bug/1519809/+attachment/4525231/+files/hciconfig.txt

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

Title:
  No sound is routed to bluetooth headset after a call

Status in bluez package in Ubuntu:
  New

Bug description:
  After the latest update to bluez5 no sound is routed to the connected
  bluetooth headset after a call is ended.

  Steps to reproduce:

  1) connect a bluetooth headset
  2) Receive a call
  3) End the call
  4) Try to play music

  Expected behavior:
  Music is routed to the connected headset

  Current behavior:
  No sound is routed, although music player behaves as it was playing normally.

  Additional info.
  If you receive a second call, the audio is again routed normally to the 
headset after it's finished.
  Just tried with old images with bluez4 and it works as expected.

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

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


[Touch-packages] [Bug 1373059] Re: Messages sent as reply from the notification panel are counted as unseen

2015-11-24 Thread Tiago Salem Herrmann
Just to clarify, in this bug, the message marked as unread is the
message that was received, and not the message sent as a reply.

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

Title:
  Messages sent as reply from the notification panel are counted as
  unseen

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

Bug description:
  Step to reproduce:
  - Receive a message
  - Reply to the messagge from the shortcut in the notification panel
  - Open the messagges app
  - There is a number '2' (or 1, don't remember atm, I'll update asap) near the 
conversation, as you have unseen messages.

  I expect there are no unread messages, because if I reply to a
  message, I read it.

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

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


[Touch-packages] [Bug 1517531] Re: ringtone changes not applied until after reboot

2015-11-24 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-
service/delete_player_instance_on_incoming_call

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

Title:
  ringtone changes not applied until after reboot

Status in Canonical System Image:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  When changing the ringtone in system settings, the newly selected
  ringtone isn't used for incoming calls until telephone-service-
  approver is restarted.

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

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


[Touch-packages] [Bug 1487528] Re: [notifications] + [messaging] SMS notifications should should show which SIM received message

2015-11-23 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/multi_sim_notifications

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

Title:
  [notifications] + [messaging] SMS notifications should should show
  which SIM received message

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Fix Committed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  User does not see onto which SIM card the SMS was received on the lock screen 
(if this option is enabled by device privacy settings).
  It is great that used has option to reply immediately, without unlocking the 
device, but it is not possible to know, which SIM card to use to reply back.

   UX comment ---

  Please find attached to this bug a design solution which shows two solutions 
for the here described issue. 
  A. Places the [SIM name] in the place of a time stamp (recommended).
  B. Adds [SIM name] after the header of the notification.

  Solution B may be applied if solution A can not be implemented for the
  time being.

  The label of the SIM card should always represent the label users set,
  even if they renamed the sim cards.

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

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


[Touch-packages] [Bug 1460301] Re: [Dialer] Incoming call - no info which SIM card was called (dual SIM)

2015-11-23 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/multi_sim_notifications

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

Title:
  [Dialer] Incoming call - no info which SIM card was called (dual SIM)

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Fix Committed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 14.10 (r22)

  (Don't know how to find a package version :/, but I checked for
  updates on 29-05-2015 and all apps are up to date)

  I have two SIM cards inserted into BQ Aquaris 4.5

  On incoming call I expect to see information if SIM1 or SIM2 was dialled by 
caller alongside caller ID.
  I see only caller ID.

  It may be useful if one of the SIM cards is in roaming, or when one of
  the SIMs is a company number while other is a private number.

   UX comment ---

  The SIM card indication should replace the "Incoming call" text. This
  applies only for dual SIM devices. On a single SIM device the
  "Incoming call" labe remains. Please see attached wireframe for the
  exact solution.

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

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


[Touch-packages] [Bug 1373059] Re: Messages sent as reply from the notification panel are counted as unseen

2015-11-20 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/history-service/fix-1373059

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

Title:
  Messages sent as reply from the notification panel are counted as
  unseen

Status in Canonical System Image:
  Confirmed
Status in indicator-messages package in Ubuntu:
  Confirmed
Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  Step to reproduce:
  - Receive a message
  - Reply to the messagge from the shortcut in the notification panel
  - Open the messagges app
  - There is a number '2' (or 1, don't remember atm, I'll update asap) near the 
conversation, as you have unseen messages.

  I expect there are no unread messages, because if I reply to a
  message, I read it.

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

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


[Touch-packages] [Bug 1518291] Re: visual bug in messaging app in landscape mode

2015-11-20 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/fix-1518291

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

Title:
  visual bug in messaging app in landscape mode

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

Bug description:
  see the screenshot

  when writing a message in landscape mode and entering multiple lines,
  the contact's name remains visible and gets mixed up with the
  message's text

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

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


[Touch-packages] [Bug 1460301] Re: [Dialer] Incoming call - no info which SIM card was called (dual SIM)

2015-11-20 Thread Tiago Salem Herrmann
Thanks Olga,

Just wanted to remind that "SIM 1" can be any text defined by the user in 
system-settings. Should we still go ahead and keep this solution?
We also need wireframes for missed call entries displayed in the indicator.

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

Title:
  [Dialer] Incoming call - no info which SIM card was called (dual SIM)

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Fix Committed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  Ubuntu 14.10 (r22)

  (Don't know how to find a package version :/, but I checked for
  updates on 29-05-2015 and all apps are up to date)

  I have two SIM cards inserted into BQ Aquaris 4.5

  On incoming call I expect to see information if SIM1 or SIM2 was dialled by 
caller alongside caller ID.
  I see only caller ID.

  It may be useful if one of the SIM cards is in roaming, or when one of
  the SIMs is a company number while other is a private number.

   UX comment ---

  The SIM card indication should be next to the text stating "Incoming
  call". Please see attached wireframe for the exact solution.

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

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


[Touch-packages] [Bug 1487528] Re: [notifications] + [messaging] SMS notifications should should show which SIM received message

2015-11-20 Thread Tiago Salem Herrmann
Thanks for the wireframe. If I remember correctly we don't have support
for displaying text on the top right of the notification bubble. Is this
in the notifications spec?

Also, we need wireframes for incoming messages in the indicator menu.

I know this bug is about messages, but there is a similar use case we have to 
fix, which is voicemail in the indicator.
As a temporary solution we are displaying something like "1 Voicemail - SIM 1", 
but would be good to have a final solution for this case as well.

Thanks.

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

Title:
  [notifications] + [messaging] SMS notifications should should show
  which SIM received message

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Fix Committed
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  User does not see onto which SIM card the SMS was received on the lock screen 
(if this option is enabled by device privacy settings).
  It is great that used has option to reply immediately, without unlocking the 
device, but it is not possible to know, which SIM card to use to reply back.

   UX comment ---

  Please find attached to this bug a design solution which will allow
  users to see which SIM card is used on the notification bubble. There
  is a SIM stamp on the right hand side, centered with the name.

  The label of the SIM card should always represent the label users set,
  even if they renamed the sim cards.

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

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


[Touch-packages] [Bug 1517602] [NEW] Impossible to remove empty threads

2015-11-18 Thread Tiago Salem Herrmann
Public bug reported:

It is impossible to remove empty conversations from messaging-app.
They are created when you open a conversation to a contact from dialer-app or 
addressbook-app, and they appear at the end of the conversation list. Deleting 
them doesn't work.

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

** Affects: history-service (Ubuntu)
 Importance: High
 Assignee: Tiago Salem Herrmann (tiagosh)
 Status: Confirmed

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

Title:
  Impossible to remove empty threads

Status in Canonical System Image:
  Confirmed
Status in history-service package in Ubuntu:
  Confirmed

Bug description:
  It is impossible to remove empty conversations from messaging-app.
  They are created when you open a conversation to a contact from dialer-app or 
addressbook-app, and they appear at the end of the conversation list. Deleting 
them doesn't work.

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

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


[Touch-packages] [Bug 1512132] Re: sometimes no ring for incoming calls.

2015-11-12 Thread Tiago Salem Herrmann
** Branch unlinked: lp:~tiagosh/telephony-service/fix-1512132

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

Title:
  sometimes no ring for incoming calls.

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

Bug description:
  This is similar, but not equal to this:

  https://bugs.launchpad.net/canonical-devices-system-image/+bug/1471338

  After ota-7, my aquaris E4.5 sometimes doesn't ring on incoming calls.
  It vibrates, the led blinks, but no sound at all. The phone isn't
  muted and toggle the related function doesn't affect the problem - the
  phone remains muted and only a reboot let the ringer work again for a
  while. after that the problem returns.

  when the problem presents, telephone-service-indicator.log reports:

  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  TelephonyService/MessagingMenu: Calling back "+"
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

  ** (process:2264): WARNING **: a source with id 'telephony-service-indicator' 
doesn't exist
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

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

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


[Touch-packages] [Bug 1515677] Re: default sim not selected when opening message from indicator

2015-11-12 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/fix-preselect-default-sim

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

Title:
  default sim not selected when opening message from indicator

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

Bug description:
  on latest rc-proposed r175 on krillin

  Make sure messaging app is closed and you have a default sim to send
  messages on in settings

  1) send message to phone
  2) open the message by clicking on the notification or opening from the 
messaging menu
  3) messaging app launched and the message thread is displayed

  expected results:
  SIM selector in header should be selected with default sim choosen in settings

  actual result:
  No selection in SIM selector

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

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


[Touch-packages] [Bug 1513082] [NEW] Ringtone in silent mode not playing on wired headsets

2015-11-04 Thread Tiago Salem Herrmann
Public bug reported:

Currently telepathy-ofono changes the audio route according to its internal 
state.
Considering that the audio route affects other components like 
telephony-service-approver/indicator, the audio routing should be done in 
telephony-service instead.

Cases like playing ringtones in the headset while in silent mode, and
handling incoming calls from other connection managers (sip for example)
will require the audio routing being done in telephony-service as well.

** Affects: telepathy-ofono (Ubuntu)
 Importance: Undecided
 Status: New

** Summary changed:

- Audio routing should be done outside telepathy-ofono
+ Ringtone in silent mode not playing on wired headsets

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

Title:
  Ringtone in silent mode not playing on wired headsets

Status in telepathy-ofono package in Ubuntu:
  New

Bug description:
  Currently telepathy-ofono changes the audio route according to its internal 
state.
  Considering that the audio route affects other components like 
telephony-service-approver/indicator, the audio routing should be done in 
telephony-service instead.

  Cases like playing ringtones in the headset while in silent mode, and
  handling incoming calls from other connection managers (sip for
  example) will require the audio routing being done in telephony-
  service as well.

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

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


[Touch-packages] [Bug 1512132] Re: sometimes no ring for incoming calls.

2015-11-04 Thread Tiago Salem Herrmann
@roa Do you at least see the snap decision (notification with the slider) to 
accept the call?
Could you run the following command and paste the output for us?

zgrep "Failed to get current playback position" $HOME/.cache/upstart/*

Thank you.

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

Title:
  sometimes no ring for incoming calls.

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

Bug description:
  This is similar, but not equal to this:

  https://bugs.launchpad.net/canonical-devices-system-image/+bug/1471338

  After ota-7, my aquaris E4.5 sometimes doesn't ring on incoming calls.
  It vibrates, the led blinks, but no sound at all. The phone isn't
  muted and toggle the related function doesn't affect the problem - the
  phone remains muted and only a reboot let the ringer work again for a
  while. after that the problem returns.

  when the problem presents, telephone-service-indicator.log reports:

  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  TelephonyService/MessagingMenu: Calling back "+"
  Loading module: 'libubuntu_application_api_touch_mirclient.so.3.0.0'
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

  ** (process:2264): WARNING **: a source with id 'telephony-service-indicator' 
doesn't exist
  void CallManager::onCallEnded()
  void CallManager::onCallEnded()

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

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


[Touch-packages] [Bug 1489512] Re: slow to match contact name on messaging-app startup

2015-11-03 Thread Tiago Salem Herrmann
@themeles What image version are you using? This is only present on rc-
proposed channel yet.

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

Title:
  slow to match contact name on messaging-app startup

Status in Canonical System Image:
  Fix Committed
Status in address-book-service package in Ubuntu:
  Fix Released
Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  when Messages view loads for the first time, there is a delay (1-3
  seconds) where the phone numbers are shown in the view and then after
  some time the contact matching occurs and the contact name fills in.

  This should be faster, also immediate really. We need to optimize how
  this lookup is done so it can happen more instantly.

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

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


[Touch-packages] [Bug 1483888] Re: Ringtone cannot be heard when jack/headphones plugged

2015-10-30 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telepathy-ofono/play_ringtone_speakers

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

Title:
  Ringtone cannot be heard when jack/headphones plugged

Status in Canonical System Image:
  Confirmed
Status in Ubuntu UX:
  Triaged
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  Aquaris E5: Ringtone cannot be heard when jack/headphones are plugged.

  This I consider a bug, since user cannot depend on the such a device
  with hearing calls in the morning.

  Typical scenario: listening to music/watching movies during the night
  and falling asleep. It already happened several times to me that I did
  not get awakened by the phone in the morning, since headphones were
  plugged into the device and all the sounds could be heard only in
  headphones.

  (The equivalent for the alarm clock is bug 1364647.)

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

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


[Touch-packages] [Bug 1484300] Re: /usr/bin/dialer-app:11:QScopedLoopLevelCounter:QCoreApplication::notifyInternal:sendEvent:QCoreApplicationPrivate::sendPostedEvents:QCoreApplication::sendPostedEvent

2015-10-20 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/fix-observer-crash

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

Title:
  /usr/bin/dialer-
  
app:11:QScopedLoopLevelCounter:QCoreApplication::notifyInternal:sendEvent:QCoreApplicationPrivate::sendPostedEvents:QCoreApplication::sendPostedEvents

Status in Canonical System Image:
  Confirmed
Status in dialer-app package in Ubuntu:
  New

Bug description:
  The Ubuntu Error Tracker has been receiving reports about a problem
  regarding dialer-app.  This problem was most recently seen with
  version 0.1+15.10.20150615-0ubuntu1, the problem page at
  https://errors.ubuntu.com/problem/86fd27665d578509408b73f1950422e5b3f31faa
  contains more details.

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

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


[Touch-packages] [Bug 1475102] Re: The "call waiting "function is incomplete (Just for operator)

2015-10-19 Thread Tiago Salem Herrmann
can you run the following command via adb before receiving the second
call?

adb shell dbus-monitor --system interface=org.ofono.VoiceCallManager >
call_waiting.log

and then attach the call_waiting.log file here to the bug report?

Thank you

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

Title:
  The "call waiting "function is incomplete (Just for operator)

Status in Canonical System Image:
  Triaged
Status in telephony-service package in Ubuntu:
  Triaged

Bug description:
  $ system-image-cli -i
  current build number: 57
  device name: arale
  channel: ubuntu-touch/rc-proposed/meizu.en
  last update: 2015-07-10 02:04:41
  version version: 57
  version ubuntu: 20150709
  version device: 20150709-8965e37
  version custom: 20150709-814-6-40

  Reproduce Steps:
  1,System settings-->Phone-->Turn the Call waiting ON
  2,Call to operator(Unicom 10010 China mobile 10086)
  3,Keep the DUT is on the phone
  4,Make the another phone to DUT

  Expect Result:
  The user can answer the another call

  Actual Result:
  The DUT can't answer the another phone (call waiting is not work for operator 
)
  But for Android OS ,it's work fine for operator,And IOS can support 
"End#accept"Please  check it !

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

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


[Touch-packages] [Bug 1496845] Re: Number containing # are incorrectly sent unencoded to url-dispatcher

2015-10-19 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/dialer-app/fix-1496845

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

Title:
  Number containing # are incorrectly sent unencoded to url-dispatcher

Status in Canonical System Image:
  In Progress
Status in address-book-app package in Ubuntu:
  Confirmed
Status in dialer-app package in Ubuntu:
  New
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released

Bug description:
  Reproduce:
  * Open System Settings and call a SIM Service number containing a #, e.g. 
+47005#1
  * Create a contact in address-book-app with the number “+47005#1” and call it.

  What happens:
  “+47005” appears in dialer

  What should happen:
  “+47005#1” should appear in dialer, i.e. affected apps needs to urlencode the 
number.

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

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


[Touch-packages] [Bug 1504170] Re: [Indicators] Some icons in messaging-menu disappear when list items are selected

2015-10-09 Thread Tiago Salem Herrmann
I think the icon is there, but it seems it's the same color as the selection 
overlay (which is also grey). The selection is filling the UbuntuShape internal 
area, so the icon seems to disappear.
I believe messaging-menu should avoid filling the UbuntuShape with the 
selection overlay color, so even if the icon has the same color of the overlay 
it would still be visible.

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

Title:
  [Indicators] Some icons in messaging-menu disappear when list items
  are selected

Status in Canonical System Image:
  New
Status in Ubuntu UX:
  Triaged
Status in indicator-messages package in Ubuntu:
  New
Status in messaging-app package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce:

  1) receive a message from a MMS group
  2) open messaging-menu
  3) verify the group icon is displayed
  4) tap the message to reply
  5) verify the icon disappears because it has the same color as the selection.

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

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


[Touch-packages] [Bug 1504256] [NEW] Snap decisions are ignoring line feed (\n)

2015-10-08 Thread Tiago Salem Herrmann
Public bug reported:

Just noticed that USSD menus are not being correctly displayed. They are
usually multi-line messages, and in the most recent image the menu
entries appear all in the same line. Looks like something in the
notification system is dropping the \n.

The message appears to be correct on dbus:
http://paste.ubuntu.com/12717220/

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

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

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

Title:
  Snap decisions are ignoring line feed (\n)

Status in unity8 package in Ubuntu:
  New

Bug description:
  Just noticed that USSD menus are not being correctly displayed. They
  are usually multi-line messages, and in the most recent image the menu
  entries appear all in the same line. Looks like something in the
  notification system is dropping the \n.

  The message appears to be correct on dbus:
  http://paste.ubuntu.com/12717220/

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

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

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


[Touch-packages] [Bug 1503018] Re: Messages are not broken into lines on full word boundaries

2015-10-06 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/revert_nbsp_replace

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

Title:
  Messages are not broken into lines on full word boundaries

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

Bug description:
  The breaks are made within words and the formatting looks bad.

  This has regressed since ota6 in stable

  MX4 running 130 proposed

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

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


[Touch-packages] [Bug 1503018] Re: Messages are not broken into lines on full word boundaries

2015-10-05 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/no-nbsp-in-bubbles

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

Title:
  Messages are not broken into lines on full word boundaries

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

Bug description:
  The breaks are made within words and the formatting looks bad.

  This has regressed since ota6 in stable

  MX4 running 130 proposed

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

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


[Touch-packages] [Bug 1480815] Re: Receiving MMS will auto change into group chat for some operators

2015-09-11 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telepathy-ofono/fix-mms-groupchat-
recipients

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

Title:
  Receiving MMS will auto change into  group chat for some operators

Status in messaging-app package in Ubuntu:
  Confirmed

Bug description:
  system-image-cli -i
  current build number: 80
  device name: arale
  channel: ubuntu-touch/devel-proposed/meizu.en
  last update: 2015-08-03 15:23:15
  version version: 80
  version ubuntu: 20150802
  version device: 20150709-8965e37
  version custom: 20150716-819-8-42

  reproduce steps:
  1.there is a CMCC SIM card inserted in the DUT device.
  2.there is no contact in the device and the MMS group chat option was disabled
  3.other device send one MMS just to the DUT
  4.the DUT received the MMS 
  5.launch the message app check the received MMS

  expect result:
  (5) the MMS display in the dialog panel and show the the number of the sender 
and the word content 
  actual result:
  the dialog panel of the message change to group chat auto.

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

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


[Touch-packages] [Bug 1483127] Re: Proximity does not turn screen on during a call

2015-08-21 Thread Tiago Salem Herrmann
I reverted unity-system-compositor to commit 236 and the bug is gone.
Not sure what commit actually introduced the issue though.

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

Title:
  Proximity does not turn screen on during a call

Status in Canonical System Image:
  Confirmed
Status in telephony-service package in Ubuntu:
  Invalid
Status in unity-system-compositor package in Ubuntu:
  New

Bug description:
  This has regressed a week or two ago. It's not reliably reproducible,
  but bites me almost every time I want to end a call. It might be
  incoming calls only, or maybe only after a minute.

  Steps:
  * go on a call
  * cover the proximity sensor
  * uncover the proximity sensor

  Expected:
  * screen goes off/on as you cover/uncover the sensor

  Current:
  * screen goes off but not back on

  $ system-image-cli -i
  current build number: 90
  device name: krillin
  channel: ubuntu-touch/rc-proposed/bq-aquaris.en
  last update: 2015-08-08 21:08:55
  version version: 90
  version ubuntu: 20150807.1
  version device: 20150716-fb60d96
  version custom: 20150717-820-30-25-vivid

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

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


[Touch-packages] [Bug 1485005] Re: not matching contact name when create a new conversation

2015-08-18 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/history-service/fix-1485005

** Branch linked: lp:~tiagosh/telepathy-ofono/fix-1485005

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

Title:
  not matching contact name when create a new conversation

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

Bug description:
  on latest rc-proposed
  wipe your phone
  open messaging-app
  compose a new message to a contact in your address book
  send the message
  the thread view correctly shows the contact name after the message is sent
  go back to conversation view

  expected results:
  converstation view should show the contact name

  actual results:
  conversation view shows the phone number, but not the contact name
  if you close messaging-app and re-open then the name properly appears

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

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


[Touch-packages] [Bug 1347906] Re: don't display notification when in the message thread

2015-08-18 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/fix-1482401

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

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

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

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

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

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


[Touch-packages] [Bug 1482401] Re: Race condition when removing read sms's from the indicator menu

2015-08-18 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/fix-1482401

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

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

Status in Canonical System Image:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

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

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

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


[Touch-packages] [Bug 1449778] Re: [dialer-app] + [messaging-app] remove pop up asking to select a SIM

2015-08-10 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/messaging-app/update-sim-dialogs

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

Title:
  [dialer-app] + [messaging-app] remove pop up asking to select a SIM

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

Bug description:
  krillin vivid and RTM

  Current behaviour: If the device has both SIM slots occupied, users
  are asked on action to select a SIM card for either placing a phone
  call or sending a text message. This can be very annoying for users
  because on first time launch there is a different pop up asking a
  similar question and explaining to users where to amend their default
  SIM for outgoing communication.

  --UX comment--

  The desired solution is to change the text of the popup on first time launch 
and remove the popup on action.
  A 3rd popup appears on the dialer app after user made a phone call and didn't 
select a default SIM. This should be removed as well.
  The SIM card in the first SIM slot should be selected by default and the 
first popup will inform users where to alter the selection and change the 
default SIM for outgoing communication.

  Please follow guidance in this spec:
  
https://docs.google.com/document/d/1BRy9-DEXr3A1D7PHkJaXmjbe7xbRmxKkzANXuu-F6lc/edit

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

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


[Touch-packages] [Bug 1334860] Re: EmergencyNumbers not correctly filled for brazilian operators

2015-08-10 Thread Tiago Salem Herrmann
** Package changed: ofono (Ubuntu) = telephony-service (Ubuntu)

** Changed in: telephony-service (Ubuntu)
   Status: Incomplete = In Progress

** Changed in: telephony-service (Ubuntu)
 Assignee: Gustavo Pichorim Boiko (boiko) = Tiago Salem Herrmann (tiagosh)

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

Title:
  EmergencyNumbers not correctly filled for brazilian operators

Status in telephony-service package in Ubuntu:
  In Progress

Bug description:
  Using a SIM card from VIVO, I get the following list of emergency
  numbers:

  [ org.ofono.VoiceCallManager ]
  EmergencyNumbers = 08 000 999 110 112 911 118 119

  And on a SIM card from OI, the same list is returned:

  [ org.ofono.VoiceCallManager ]
  EmergencyNumbers = 08 000 999 110 112 911 118 119

  But those are not the emergency numbers for Brazil, they should be
  similar to the numbers listed in ServiceNumbers:

  [ org.ofono.SimManager ]
  ServiceNumbers = [Ambulancia] = '192' [Defesa Civil] = '199' 
[Policia] = '190' [Bombeiros] = '193'

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

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


[Touch-packages] [Bug 1482401] [NEW] Race condition when removing read sms's from the indicator menu

2015-08-06 Thread Tiago Salem Herrmann
Public bug reported:


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

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

** Affects: telephony-service (Ubuntu)
 Importance: High
 Assignee: Tiago Salem Herrmann (tiagosh)
 Status: Confirmed

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

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

Status in Canonical System Image:
  Confirmed
Status in telephony-service package in Ubuntu:
  Confirmed

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

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

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


[Touch-packages] [Bug 1476833] Re: wrong contact name is displayed for phone number

2015-07-31 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telephony-service/check-contact-watcher-
results

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

Title:
  wrong contact name is displayed for phone number

Status in Canonical System Image:
  In Progress
Status in address-book-service package in Ubuntu:
  In Progress
Status in telephony-service package in Ubuntu:
  Confirmed

Bug description:
  In my address book I have two contacts with very similar numbers.
  (last 6 digits changed in the example)

  Person A:  +352 661 123456
  Person B:  +352 691 123456

  When I receive a call or try to compose a message to Person B, the
  phone always displays the name of Person A. The same happens in call
  records.

  The only way to have the name of Person B displayed upon calls or
  message sending is to delete Person A from the address book.

  This is very strange, because phone numbers are prefix codes, thus
  ignoring a leading digit in a phone number seems like the wrongest
  thing to do in this context.

  The bug is still present in the current MX4 image (revision 3)

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

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


[Touch-packages] [Bug 1308365] Re: [phone-app] press-call-twice-to-redial doesn't work

2015-07-30 Thread Tiago Salem Herrmann
** Changed in: dialer-app (Ubuntu)
   Status: Triaged = In Progress

** Changed in: dialer-app (Ubuntu)
   Importance: Wishlist = Low

** Changed in: dialer-app (Ubuntu)
 Assignee: (unassigned) = Tiago Salem Herrmann (tiagosh)

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

Title:
  [phone-app] press-call-twice-to-redial doesn't work

Status in Ubuntu UX:
  Fix Committed
Status in dialer-app package in Ubuntu:
  In Progress

Bug description:
  Almost every phone made in the past 15 years has a feature where the
  user can press 'call' twice to redial the last number dialed.
  However, this feature is not implemented on Ubuntu Touch.

  The details vary slightly from phone to phone, but nearly everything
  produces the same result after two or three button presses.  For
  example, on Android, one 'call' press starts the dialer app, the
  second press fills in the last-dialed number, and the third press
  starts the call.  Older/simpler phones usually only require pressing
  twice.

  Could we add this?

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

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


[Touch-packages] [Bug 1473761] Re: SMS from A appear as to have been sent from B

2015-07-28 Thread Tiago Salem Herrmann
** Branch linked: lp:~tiagosh/telepathy-ofono/fix-uniqueName

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

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

Status in Canonical System Image:
  In Progress
Status in messaging-app package in Ubuntu:
  Confirmed

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

  Mako @ rc-proposed latest

  Reproduce:
  1. Receive sms message from person A

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

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

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

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


  1   2   3   >