[Touch-packages] [Bug 1677625] Re: ubuntu-terminal-app if the preferences window is minimized and you click on the cogwheel it doesn't bring up the preferences window and also you can't type in the te

2017-03-30 Thread Josh Arenson
Can you elaborate further? It seems to me that the settings dialog opens
as a new page within the terminal window, rather than as separate
windows.

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

Title:
  ubuntu-terminal-app if the preferences window is minimized and you
  click on the cogwheel it doesn't bring up the preferences window and
  also you can't type in the terminal anymore

Status in Canonical System Image:
  New
Status in Ubuntu Terminal App:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  ubuntu 17.04, terminal app from overlay ppa

  ubuntu-terminal-app if the preferences window is minimized and you
  click on the cogwheel it doesn't bring up the preferences window and
  also you can't type in the terminal anymore

  it happens to me a lot, i open the preferences window, minimize it and
  forget about it, then if i click on the cogwheel it doesn't bring up
  the preferences window and the terminal just loses focus and you can't
  type in it anymore

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

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


[Touch-packages] [Bug 1673199] [NEW] Greeter shows "unknown" session if user has never logged in when it should show default.

2017-03-15 Thread Josh Arenson
Public bug reported:

Steps to reproduce:
1. Create a new user
2. Go to greeter
3. Look at the session icon for the new user

Expected: Ubuntu Icon
Actual: Unknown Icon

It should be noted that LightDM handles this fine and launches, what I
presume is, the default session (ubuntu)

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

Title:
  Greeter shows "unknown" session if user has never logged in when it
  should show default.

Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce:
  1. Create a new user
  2. Go to greeter
  3. Look at the session icon for the new user

  Expected: Ubuntu Icon
  Actual: Unknown Icon

  It should be noted that LightDM handles this fine and launches, what I
  presume is, the default session (ubuntu)

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

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


[Touch-packages] [Bug 1580916] Re: LIstitem dividers not shown for new items.

2017-03-08 Thread Josh Arenson
*** This bug is a duplicate of bug 1665559 ***
https://bugs.launchpad.net/bugs/1665559

** This bug has been marked a duplicate of bug 1665559
   UbuntuListView dividers don't get updated on model changes

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

Title:
  LIstitem dividers not shown for new items.

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

Bug description:
  Newly added listitems don't show a divider.

  Expected Behavior:
  All list view items include a divide between items. no divider on the bottom 
of the last item. 

  Experienced Behavior:
  No dividers are shown for newly added items. The dividers are shown if the 
page is reopened with an existing model, but any subsequently added items do 
not have a divider.

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

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


[Touch-packages] [Bug 1665559] Re: UbuntuListView dividers don't get updated on model changes

2017-03-01 Thread Josh Arenson
Seeing this here https://code.launchpad.net/~josharenson/unity8
/dashboard-manager as well.

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

Title:
  UbuntuListView dividers don't get updated on model changes

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

Bug description:
  I have an UbuntuListView with ListItems, and I add items into the model at 
runtime.
  I want to keep the list sorted, so I insert items at specific positions 
instead of appending them.
  The problem is that the divider only shows up for items that are inserted 
before the last one.
  I read in the API documentation for ListItem [1]:
  > When used in ListView or UbuntuListView, the last list item will not show 
the divider no matter of the visible property value set.

  So I suppose this is the reason. But shouldn't the divider become
  visible when the model changes and the ListItem is no longer the last
  one?

  For example, I add the following items, in order:
  * aaa
  * ccc
  * bbb

  Because the list is sorted, when adding `bbb` it is inserted in the
  middle and receives a divider. But `aaa` remains with no divider, and
  the list looks weird.

  Expected:
  aaa
  -
  bbb
  -
  ccc

  Actual:
  aaa
  bbb
  -
  ccc

  Here is the full source code:

  === Main.qml ===

  import QtQuick 2.4
  import QtQuick.Layouts 1.1

  import Ubuntu.Components 1.2

  MainView {

  width: units.gu(40)
  height: units.gu(40)

  Page {

  ColumnLayout {
  spacing: units.gu(1)
  anchors {
  margins: units.gu(2)
  fill: parent
  }

  TextField {
  id: textInput
  Layout.fillWidth: true;
  hasClearButton: true
  onAccepted: {
  addToList();
  }
  }

  MyList {
  id: myList
  anchors {
  left: parent.left
  right: parent.right
  }
  height: parent.height
  }
  }
  }

  function addToList() {
  if(textInput.text.length > 0) {
  myList.add(textInput.text);
  textInput.text = '';
  }
  }
  }

  === MyList.qml ===

  import QtQuick 2.4
  import Ubuntu.Components 1.2
  import Ubuntu.Components.ListItems 1.0

  Item {

  ListModel {
  id: listModel
  }

  UbuntuListView {
  anchors.fill: parent
  model: listModel

  delegate: ListItem {
  id: listItem
  height: units.gu(5)

  divider.visible: true; // doesn't help
  Label {
  text: itemName
  verticalAlignment: Text.AlignVCenter
  height: parent.height
  }

  onClicked: {
  divider.visible = true; // doesn't help
  }
  }
  }

  function add(text) {
  var indexToInsert = listModel.count;
  for(var i = 0; i < listModel.count; i++) {
  var compareResult = text.localeCompare(listModel.get(i).itemName);
  if(compareResult <= 0) {
  indexToInsert = i;
  break;
  }
  }
  listModel.insert(indexToInsert, {itemName: text});
  }
  }

  
  I'm not really sure if this is a bug, or if I'm not using the API correctly.

  [1]
  
https://developer.ubuntu.com/api/apps/qml/sdk-15.04/Ubuntu.Components.ListItem/

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

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


[Touch-packages] [Bug 1667463] [NEW] Unity8 Greeter mock initializes sessionMode incorrectly

2017-02-23 Thread Josh Arenson
Public bug reported:

In the WideView mock, the "multipleSessions" checkbox is instantiated
unchecked. However, the mock behaves as if the box were checked. Cycling
through check/uncheck resolves the issue.

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

Title:
  Unity8 Greeter mock initializes sessionMode incorrectly

Status in unity8 package in Ubuntu:
  New

Bug description:
  In the WideView mock, the "multipleSessions" checkbox is instantiated
  unchecked. However, the mock behaves as if the box were checked.
  Cycling through check/uncheck resolves the issue.

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

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


[Touch-packages] [Bug 1654313] Re: The greeter is not shown when switching users

2017-02-08 Thread Josh Arenson
Thanks Pat, I'll try and push the MP through then.

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

Title:
  The greeter is not shown when switching users

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This is not consistent, when switching between two user sessions (one
  unity8 snap on classic and one unity7) I sometimes get presented with
  the unity8 lock screen that only provides the current session as an
  option.

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

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


[Touch-packages] [Bug 1654313] Re: The greeter is not shown when switching users

2017-02-07 Thread Josh Arenson
** Attachment added: 
"indicator-session_12.10.5+17.04.20161201-0ubuntu1_amd64.deb"
   
https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1654313/+attachment/4814924/+files/indicator-session_12.10.5+17.04.20161201-0ubuntu1_amd64.deb

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

Title:
  The greeter is not shown when switching users

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This is not consistent, when switching between two user sessions (one
  unity8 snap on classic and one unity7) I sometimes get presented with
  the unity8 lock screen that only provides the current session as an
  option.

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

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


[Touch-packages] [Bug 1654313] Re: The greeter is not shown when switching users

2017-02-07 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  The greeter is not shown when switching users

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  This is not consistent, when switching between two user sessions (one
  unity8 snap on classic and one unity7) I sometimes get presented with
  the unity8 lock screen that only provides the current session as an
  option.

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

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


[Touch-packages] [Bug 1650494] Re: Un-favoriting a scope after changing the order leaves gaps in Manage dash

2017-01-26 Thread Josh Arenson
Can you still reproduce this? I don't see it on a recently flashed
tablet build or in the mock.

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

Title:
  Un-favoriting a scope after changing the order leaves gaps in Manage
  dash

Status in Canonical System Image:
  New
Status in unity-scopes-shell package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  1. Go to Manage Dash. Make sure you have a few scopes favorited.
  2. Long press to start the "edit mode". Move the 2nd scope on the fav list to 
the last position in favs
  3. Leave "edit mode" by pressing the big X button in Manage Dash view.
  4. Unfavorite the last scope by tapping star icon.
  5. Keep unfavoriting scopes from the bottom of the list.
   -> Notice how every unfavorited scope leaves a gap on the list

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

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


[Touch-packages] [Bug 1650494] Re: Un-favoriting a scope after changing the order leaves gaps in Manage dash

2017-01-26 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Un-favoriting a scope after changing the order leaves gaps in Manage
  dash

Status in Canonical System Image:
  New
Status in unity-scopes-shell package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  New

Bug description:
  1. Go to Manage Dash. Make sure you have a few scopes favorited.
  2. Long press to start the "edit mode". Move the 2nd scope on the fav list to 
the last position in favs
  3. Leave "edit mode" by pressing the big X button in Manage Dash view.
  4. Unfavorite the last scope by tapping star icon.
  5. Keep unfavoriting scopes from the bottom of the list.
   -> Notice how every unfavorited scope leaves a gap on the list

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

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


[Touch-packages] [Bug 1652890] Re: Keyboard Layout indicator is not translated into Spanish

2017-01-26 Thread Josh Arenson
Can you still reproduce this? I can see in indicator-keyboard that the
string is translated correctly. In addition, I see the correctly
translated string in build 606 on flo.

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Keyboard Layout indicator is not translated into Spanish

Status in unity8 package in Ubuntu:
  New

Bug description:
  See attached screenshot.

  Keyboard Layout indicator is not properly translated into Spanish.

  "Orientación", "Archivos" and "Ubicación" have working translation,
  meanwhile Keyboard Layout is still in English.

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

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


[Touch-packages] [Bug 1654308] Re: Logging out of the unity8 session snap takes a long time or sometimes hangs endlessly

2017-01-05 Thread Josh Arenson
I believe @mterry and I were looking at this in The Hague (but put it on
the back burner since). I don't think its specific to snaps and may be
an issue with LightDM. Stay tuned...

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Logging out of the unity8 session snap takes a long time or sometimes
  hangs endlessly

Status in unity8 package in Ubuntu:
  New

Bug description:
  Pat "It consistently takes up to a minute to go from a blank screen to
  displaying the greeter."

  kg "as of Jan 5, my log out from unity8-session snap on classic is hanging 
endlessly, i end up having to reboot"
  kg's snaps

  kg@kg-MacBookPro:~$ snap list
  NameVersion Rev  Developer  
Notes
  address-book-app0.2+17.04.20161124.2-0ubuntu1   19   canonical  
devmode
  camera-app  3.0.0.658   8canonical  
devmode
  chrome-test 55.0.2883.8719   chadmiller -
  gallery-app 0.0.67+17.04.20161129-0ubuntu1  10   canonical  
devmode
  libreoffice 5.2.3.2 10   canonical  -
  ubuntu-app-platform 1   22   canonical  -
  ubuntu-calculator-app   2.3.1   22   ubuntucoredev  
devmode
  ubuntu-calendar-app 0.1.1   22   canonical  
devmode
  ubuntu-clock-app3.8.480 22   ubuntucoredev  
devmode
  ubuntu-core 16.04.1 423  canonical  -
  ubuntu-device-flash 3   3canonical  
devmode
  ubuntu-filemanager-app  0.4 10   canonical  
devmode
  ubuntu-image0.5+mvo13   20   canonical  
devmode
  ubuntu-terminal-app 0.8 14   canonical  
devmode
  unity8-session  1   294  canonical  
devmode
  webbrowser-app  20170104-staging4canonical  -

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

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


[Touch-packages] [Bug 1646947] Re: Model slowness causes significant UI hang when reordering the scopes list

2016-12-13 Thread Josh Arenson
** Changed in: unity-scopes-shell (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Model slowness causes significant UI hang when reordering the scopes
  list

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

Bug description:
  == Background ==
  I recently implemented an autoscrolling mechanism 
(lp:~josharenson/unity8/autoscroller-alternative) for the ScopesList to resolve 
lp:1575319 This branch, I believe, is exposing an issue that has likely always 
been present.

  == Steps to Reproduce ==
  1. Install the autosceoller branch mentioned above on a mobile device. For 
the sake of this bug, you can probably just copy the changed qml files.
  2. Install enough scopes so that the list is longer than the display; about 
20 should work.
  3. Open the scopes list, press and hold to enter 'edit' mode, and drag the 
bottom most scope to the top of the list (which should automatically scroll 
upwards).
  4. Release the scope

  Expected behavior: scope drops to new position in list
  Actual behavior: UI hangs for several seconds

  == Evidence ==
  There are several possible culprits for this issue, however I've ruled out 
two big ones.
  Qt - Since the issue isn't present in the mock, its unlikely a Qt bug
  Unity8 - I have a qt profiler trace from the unity8-dash that shows no 
activity at all during the hang. Thus, I believe the issue is somewhere in the 
scopes or categories model. I've attached the trace for reference.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1646947/+subscriptions

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


[Touch-packages] [Bug 1646947] Re: Model slowness causes significant UI hang when reordering the scopes list

2016-12-08 Thread Josh Arenson
Seems to be caused by the last for loop in
OverviewResultsModel::setResults, which is being executed 131071
times Working on a patch

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

Title:
  Model slowness causes significant UI hang when reordering the scopes
  list

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

Bug description:
  == Background ==
  I recently implemented an autoscrolling mechanism 
(lp:~josharenson/unity8/autoscroller-alternative) for the ScopesList to resolve 
lp:1575319 This branch, I believe, is exposing an issue that has likely always 
been present.

  == Steps to Reproduce ==
  1. Install the autosceoller branch mentioned above on a mobile device. For 
the sake of this bug, you can probably just copy the changed qml files.
  2. Install enough scopes so that the list is longer than the display; about 
20 should work.
  3. Open the scopes list, press and hold to enter 'edit' mode, and drag the 
bottom most scope to the top of the list (which should automatically scroll 
upwards).
  4. Release the scope

  Expected behavior: scope drops to new position in list
  Actual behavior: UI hangs for several seconds

  == Evidence ==
  There are several possible culprits for this issue, however I've ruled out 
two big ones.
  Qt - Since the issue isn't present in the mock, its unlikely a Qt bug
  Unity8 - I have a qt profiler trace from the unity8-dash that shows no 
activity at all during the hang. Thus, I believe the issue is somewhere in the 
scopes or categories model. I've attached the trace for reference.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1646947/+subscriptions

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


[Touch-packages] [Bug 1646947] Re: Model slowness causes significant UI hang when reordering the scopes list

2016-12-05 Thread Josh Arenson
Some stuff worth noting

[2016-12-05:10:34:33.448] JOSH: Entering moveFavoriteTo
[2016-12-05:10:34:33.498] JOSH: Exiting moveFavoriteTo after  49  ms
[2016-12-05:10:34:33.510] JOSH: Entering favoritesChanged*
[2016-12-05:10:34:33.510] JOSH: Entering processFavoriteScopes*
[2016-12-05:10:34:33.511] JOSH: Exiting processFavoriteScopes after  0  ms

[2016-12-05:10:34:35.528] JOSH: Exiting favoritesChanged after  2018  ms

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

Title:
  Model slowness causes significant UI hang when reordering the scopes
  list

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

Bug description:
  == Background ==
  I recently implemented an autoscrolling mechanism 
(lp:~josharenson/unity8/autoscroller-alternative) for the ScopesList to resolve 
lp:1575319 This branch, I believe, is exposing an issue that has likely always 
been present.

  == Steps to Reproduce ==
  1. Install the autosceoller branch mentioned above on a mobile device. For 
the sake of this bug, you can probably just copy the changed qml files.
  2. Install enough scopes so that the list is longer than the display; about 
20 should work.
  3. Open the scopes list, press and hold to enter 'edit' mode, and drag the 
bottom most scope to the top of the list (which should automatically scroll 
upwards).
  4. Release the scope

  Expected behavior: scope drops to new position in list
  Actual behavior: UI hangs for several seconds

  == Evidence ==
  There are several possible culprits for this issue, however I've ruled out 
two big ones.
  Qt - Since the issue isn't present in the mock, its unlikely a Qt bug
  Unity8 - I have a qt profiler trace from the unity8-dash that shows no 
activity at all during the hang. Thus, I believe the issue is somewhere in the 
scopes or categories model. I've attached the trace for reference.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1646947/+subscriptions

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


[Touch-packages] [Bug 1646947] [NEW] Model slowness causes significant UI hang when reordering the scopes list

2016-12-02 Thread Josh Arenson
Public bug reported:

== Background ==
I recently implemented an autoscrolling mechanism 
(lp:~josharenson/unity8/autoscroller-alternative) for the ScopesList to resolve 
lp:1575319 This branch, I believe, is exposing an issue that has likely always 
been present.

== Steps to Reproduce ==
1. Install the autosceoller branch mentioned above on a mobile device. For the 
sake of this bug, you can probably just copy the changed qml files.
2. Install enough scopes so that the list is longer than the display; about 20 
should work.
3. Open the scopes list, press and hold to enter 'edit' mode, and drag the 
bottom most scope to the top of the list (which should automatically scroll 
upwards).
4. Release the scope

Expected behavior: scope drops to new position in list
Actual behavior: UI hangs for several seconds

== Evidence ==
There are several possible culprits for this issue, however I've ruled out two 
big ones.
Qt - Since the issue isn't present in the mock, its unlikely a Qt bug
Unity8 - I have a qt profiler trace from the unity8-dash that shows no activity 
at all during the hang. Thus, I believe the issue is somewhere in the scopes or 
categories model. I've attached the trace for reference.

** Affects: unity-scopes-shell (Ubuntu)
 Importance: Undecided
 Status: New

** Attachment added: "trace_161202_120224.qtd"
   
https://bugs.launchpad.net/bugs/1646947/+attachment/4786711/+files/trace_161202_120224.qtd

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

Title:
  Model slowness causes significant UI hang when reordering the scopes
  list

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

Bug description:
  == Background ==
  I recently implemented an autoscrolling mechanism 
(lp:~josharenson/unity8/autoscroller-alternative) for the ScopesList to resolve 
lp:1575319 This branch, I believe, is exposing an issue that has likely always 
been present.

  == Steps to Reproduce ==
  1. Install the autosceoller branch mentioned above on a mobile device. For 
the sake of this bug, you can probably just copy the changed qml files.
  2. Install enough scopes so that the list is longer than the display; about 
20 should work.
  3. Open the scopes list, press and hold to enter 'edit' mode, and drag the 
bottom most scope to the top of the list (which should automatically scroll 
upwards).
  4. Release the scope

  Expected behavior: scope drops to new position in list
  Actual behavior: UI hangs for several seconds

  == Evidence ==
  There are several possible culprits for this issue, however I've ruled out 
two big ones.
  Qt - Since the issue isn't present in the mock, its unlikely a Qt bug
  Unity8 - I have a qt profiler trace from the unity8-dash that shows no 
activity at all during the hang. Thus, I believe the issue is somewhere in the 
scopes or categories model. I've attached the trace for reference.

To manage notifications about this bug go to:
https://bugs.launchpad.net/ubuntu/+source/unity-scopes-shell/+bug/1646947/+subscriptions

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


[Touch-packages] [Bug 1631365] Re: unity8 greeter does not save the last used session

2016-11-28 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/backported-session-icon-fix

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

Title:
  unity8 greeter does not save the last used session

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  How to reproduce:
   * Have both unity7 and unity8 sessions installed
   * Log in to unity8
   * Log out
   * The greeter suggests unity7 as the session to log in 

  It should save the last session and suggest that one.

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

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


[Touch-packages] [Bug 1575319] Re: [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying position

2016-11-17 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/autoscroller-alternative

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

Title:
  [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying
  position

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  When managing the order of available scopes, if the list of scopes is
  longer than what can be shown on the screen, dragging scope to top or
  bottom of screen doesn't automatically begin to scroll screen.  Scope
  would have to be dropped near then top, then scroll screen, then move
  scope into final position.

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

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


[Touch-packages] [Bug 1631365] Re: unity8 greeter does not save the last used session

2016-10-19 Thread Josh Arenson
@mterry The greeter gets this information from whatever LightDM says the
"default" session is. Perhaps logging into an alternative DE doesn't
update this information? I'll patch it and add a test.

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

Title:
  unity8 greeter does not save the last used session

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  How to reproduce:
   * Have both unity7 and unity8 sessions installed
   * Log in to unity8
   * Log out
   * The greeter suggests unity7 as the session to log in 

  It should save the last session and suggest that one.

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

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


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

2016-06-09 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: Josh Arenson (josharenson) => (unassigned)

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

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

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Currently there is no way in an autopilot test to request to the shell
  to close an application cleanly (i.e. in the same way that the user
  would close it).

  It would be useful to add an emulator allowing to perform such an
  action that could be imported by other tests, in the same spirit as
  the emulator already existing in the UITK to do things like bringing
  up a toolbar.

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

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


[Touch-packages] [Bug 1583624] Re: Mir cannot open a tty when started by lightdm

2016-06-08 Thread Josh Arenson
Forgive my incoherent ramble in #9... Keep this open until lp:~robert-
ancell/lightdm/new-mir-socket-variable lands :-p Also, the new issue is
probably best explained by looking at lp:~mterry/lightdm/initialize-
more/+merge/296836

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

Title:
  Mir cannot open a tty when started by lightdm

Status in Light Display Manager:
  In Progress
Status in Light Display Manager 1.18 series:
  In Progress
Status in lightdm package in Ubuntu:
  Triaged
Status in lightdm source package in Xenial:
  Triaged

Bug description:
  From mir-greeter.log (and with minor instrumentation from RAOF)

  ERROR: QMirServer - Mir failed to start
  qtmir.screens: ScreenController::ScreenController
  qtmir.mir: MirServer created
  qtmir.mir: Command line arguments passed to Qt: ("/usr/bin/unity8", 
"--mode=greeter")
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/server/graphics/default_configuration.cpp(133):
 Throw in function 
mir::DefaultServerConfiguration::the_graphics_platform()::
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Exception while creating graphics platform
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/platforms/mesa/server/kms/linux_virtual_terminal.cpp(238):
 Throw in function int 
mir::graphics::mesa::LinuxVirtualTerminal::find_active_vt_number()
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Failed to find the current VT. Tried:
/dev/tty0:
Failed to open read-only: Permission denied
Failed to open write-only: Permission denied
/dev/tty:
Failed to open read-only: No such device or address
Failed to open write-only: No such device or address

  
  This occurs when trying to start the unity8 greeter under unity system 
compositor

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

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


[Touch-packages] [Bug 1583624] Re: Mir cannot open a tty when started by lightdm

2016-06-08 Thread Josh Arenson
The root cause is the fd that pipe gives to USC is 0. The compositor
starts and begins drawing frames, and lightdm eventually tries writing
to fd=0 (also known as STDIN) which causes an Opperation not permitted
error (see lp:1590447). I wrote a nasty patch that forces lightdm to
keep obtaining file descriptors until fd[0]!=0 and it solved all the
(known) issues that we are seeing.

 Mterry and I are workin on a fix for this ^^ and I'll work on the log
name issue right after. I think we can close this bug, as the original
issue has long since been resolved. Thanks.

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

Title:
  Mir cannot open a tty when started by lightdm

Status in Light Display Manager:
  In Progress
Status in Light Display Manager 1.18 series:
  In Progress
Status in lightdm package in Ubuntu:
  Triaged
Status in lightdm source package in Xenial:
  Triaged

Bug description:
  From mir-greeter.log (and with minor instrumentation from RAOF)

  ERROR: QMirServer - Mir failed to start
  qtmir.screens: ScreenController::ScreenController
  qtmir.mir: MirServer created
  qtmir.mir: Command line arguments passed to Qt: ("/usr/bin/unity8", 
"--mode=greeter")
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/server/graphics/default_configuration.cpp(133):
 Throw in function 
mir::DefaultServerConfiguration::the_graphics_platform()::
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Exception while creating graphics platform
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/platforms/mesa/server/kms/linux_virtual_terminal.cpp(238):
 Throw in function int 
mir::graphics::mesa::LinuxVirtualTerminal::find_active_vt_number()
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Failed to find the current VT. Tried:
/dev/tty0:
Failed to open read-only: Permission denied
Failed to open write-only: Permission denied
/dev/tty:
Failed to open read-only: No such device or address
Failed to open write-only: No such device or address

  
  This occurs when trying to start the unity8 greeter under unity system 
compositor

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

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


[Touch-packages] [Bug 1583624] Re: Mir cannot open a tty when started by lightdm

2016-06-07 Thread Josh Arenson
I got the greeter working, but there are 2 other issues. The following
assumes you are using the unity8 greeter to launch a unity7 session

if (seat-type == unity)
   The greeter loads, authenticates, a black screen is briefly shown, and the 
greeter comes back up. My theory here is that lightdm is trying to start unity7 
on the same VT as the greeter, and this is making USC mad. I believe this will 
be fixed in USC in the future, but is there a work around we could have for the 
time being?

if (seat-type == xlocal)
   The log in /var/log/lightdm for the greeter is called (null)-greeter.log. I 
think this is because the code path taken doesn't call display_server_set_name 
in time. I used to know the answer to this, but I've since forgotten. I'm going 
to dig into this part further today, but if you have input, let me know.

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

Title:
  Mir cannot open a tty when started by lightdm

Status in Light Display Manager:
  In Progress
Status in Light Display Manager 1.18 series:
  In Progress
Status in lightdm package in Ubuntu:
  Triaged
Status in lightdm source package in Xenial:
  Triaged

Bug description:
  From mir-greeter.log (and with minor instrumentation from RAOF)

  ERROR: QMirServer - Mir failed to start
  qtmir.screens: ScreenController::ScreenController
  qtmir.mir: MirServer created
  qtmir.mir: Command line arguments passed to Qt: ("/usr/bin/unity8", 
"--mode=greeter")
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/server/graphics/default_configuration.cpp(133):
 Throw in function 
mir::DefaultServerConfiguration::the_graphics_platform()::
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Exception while creating graphics platform
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/platforms/mesa/server/kms/linux_virtual_terminal.cpp(238):
 Throw in function int 
mir::graphics::mesa::LinuxVirtualTerminal::find_active_vt_number()
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Failed to find the current VT. Tried:
/dev/tty0:
Failed to open read-only: Permission denied
Failed to open write-only: Permission denied
/dev/tty:
Failed to open read-only: No such device or address
Failed to open write-only: No such device or address

  
  This occurs when trying to start the unity8 greeter under unity system 
compositor

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

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


[Touch-packages] [Bug 1419645] Re: [Dialer] dialer screen focussed after receiving a call

2016-06-07 Thread Josh Arenson
@Matthew this spec already describes the current behavior. The issue is
that when a call is accepted, the dialer app is launched, and the call
is ended using the app rather than the parentless dialog. It would take
considerable effort to get the dialer app to run inside a dialog, and
the dialer app would need to be modified in such a way that pressing end
would dismiss the dialog (a dialog that wasn't created by the app
itself). This would also not solve the problem for 3rd party dialers. I
can prototype my other solution if you'd like. I'm also at a sprint
right now, so I can get some technical input from other folks and see
what other solutions are possible.

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

Title:
  [Dialer] dialer screen focussed after receiving a call

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  Fix Committed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Using rtm 228 on krillin
  - have your phone on the dash (nothing is running) or with an application in 
use (ie. the webbrowser)
  - receive a call
  - look at your phone after the call

  The dialer-app is open and focussed, it shouldn't, answering a phone
  shouldn't return the device in a state different from the one it was
  before talking. If you were using the webbrowser you probably want to
  keep doing that rather than dial a new number

  Opening against unity8 since that's an application management issue,
  not sure if that's the correct component though

  UX comment---

  I agree, this is a bad user experience. As proposed in the bug description:
  After user hangs up an accepted call, the previously used app should be back 
in view.

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

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


[Touch-packages] [Bug 1543859] Re: Autopilot tests cannot launch most apps

2016-06-06 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
   Status: Triaged => Won't Fix

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

Title:
  Autopilot tests cannot launch most apps

Status in unity8 package in Ubuntu:
  Won't Fix

Bug description:
  Only the dialer-app and webbrowser-app can be launched by calling the
  main_window.launch_application(appId) method. Possibly related to the
  fact that the location for .desktop files for most (all) other pre-
  installed apps has changed.

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

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


[Touch-packages] [Bug 1583624] Re: Mir cannot open a tty when started by lightdm

2016-06-02 Thread Josh Arenson
Here is mir-greeter.log using your instrumented lightdm and changing the
unity8 seat type to unity.

http://pastebin.ubuntu.com/16932129/

Thoughts?

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

Title:
  Mir cannot open a tty when started by lightdm

Status in Light Display Manager:
  In Progress
Status in Light Display Manager 1.18 series:
  In Progress
Status in lightdm package in Ubuntu:
  Triaged
Status in lightdm source package in Xenial:
  Triaged

Bug description:
  From mir-greeter.log (and with minor instrumentation from RAOF)

  ERROR: QMirServer - Mir failed to start
  qtmir.screens: ScreenController::ScreenController
  qtmir.mir: MirServer created
  qtmir.mir: Command line arguments passed to Qt: ("/usr/bin/unity8", 
"--mode=greeter")
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/server/graphics/default_configuration.cpp(133):
 Throw in function 
mir::DefaultServerConfiguration::the_graphics_platform()::
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Exception while creating graphics platform
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/platforms/mesa/server/kms/linux_virtual_terminal.cpp(238):
 Throw in function int 
mir::graphics::mesa::LinuxVirtualTerminal::find_active_vt_number()
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Failed to find the current VT. Tried:
/dev/tty0:
Failed to open read-only: Permission denied
Failed to open write-only: Permission denied
/dev/tty:
Failed to open read-only: No such device or address
Failed to open write-only: No such device or address

  
  This occurs when trying to start the unity8 greeter under unity system 
compositor

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

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


[Touch-packages] [Bug 1583624] Re: Mir cannot open a tty when started by lightdm

2016-05-26 Thread Josh Arenson
I get

[+0.01s] CRITICAL: g_object_unref: assertion 'G_IS_OBJECT (object)'
failed

in the logs (or when running in test mode). This only happens when
trying to run under Mir. Meaning I can delete 51-unity8-greeter.conf and
lightdm starts just fine. The error happens before usc/mir are able to
log anything.

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

Title:
  Mir cannot open a tty when started by lightdm

Status in Light Display Manager:
  In Progress
Status in Light Display Manager 1.18 series:
  In Progress
Status in lightdm package in Ubuntu:
  Triaged
Status in lightdm source package in Xenial:
  Triaged

Bug description:
  From mir-greeter.log (and with minor instrumentation from RAOF)

  ERROR: QMirServer - Mir failed to start
  qtmir.screens: ScreenController::ScreenController
  qtmir.mir: MirServer created
  qtmir.mir: Command line arguments passed to Qt: ("/usr/bin/unity8", 
"--mode=greeter")
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/server/graphics/default_configuration.cpp(133):
 Throw in function 
mir::DefaultServerConfiguration::the_graphics_platform()::
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Exception while creating graphics platform
  ERROR: 
/home/josh/Documents/mir/verbose-error-for-vt-finding/src/platforms/mesa/server/kms/linux_virtual_terminal.cpp(238):
 Throw in function int 
mir::graphics::mesa::LinuxVirtualTerminal::find_active_vt_number()
  Dynamic exception type: 
boost::exception_detail::clone_impl
 >
  std::exception::what: Failed to find the current VT. Tried:
/dev/tty0:
Failed to open read-only: Permission denied
Failed to open write-only: Permission denied
/dev/tty:
Failed to open read-only: No such device or address
Failed to open write-only: No such device or address

  
  This occurs when trying to start the unity8 greeter under unity system 
compositor

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

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


[Touch-packages] [Bug 1498169] Re: some logs in .cache/upstart are missing date/timestamps

2016-05-24 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/add-timestamps-to-unity8-log

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

Title:
  some logs in .cache/upstart are missing date/timestamps

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  New

Bug description:
  such as unity8.log and such as unity8-dash.log and many more such as.
  how can one debug without date/timestamps?

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

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


[Touch-packages] [Bug 1580074] Re: Please add timestamps to unity8-dash.log

2016-05-23 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/add-timestamps-to-dash-log

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

Title:
  Please add timestamps to unity8-dash.log

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  It would be super useful to have timestamps in unity8-dash.log, it's
  very helpful to be able to correlate events from dash log and other
  logs, such as scope-registry.log. I think unity-scopes-shell plugin is
  not the right place to install custom log handler, so opening it
  against unity8.

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

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


[Touch-packages] [Bug 1575319] Re: [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying position

2016-05-11 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/fix-scope-managment-scrolling

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

Title:
  [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying
  position

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  When managing the order of available scopes, if the list of scopes is
  longer than what can be shown on the screen, dragging scope to top or
  bottom of screen doesn't automatically begin to scroll screen.  Scope
  would have to be dropped near then top, then scroll screen, then move
  scope into final position.

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

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


[Touch-packages] [Bug 1575319] Re: [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying position

2016-05-04 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  [Ubuntu Touch] Manage Scopes doesn't scroll up/down when modifying
  position

Status in Canonical System Image:
  Confirmed
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  When managing the order of available scopes, if the list of scopes is
  longer than what can be shown on the screen, dragging scope to top or
  bottom of screen doesn't automatically begin to scroll screen.  Scope
  would have to be dropped near then top, then scroll screen, then move
  scope into final position.

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

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


[Touch-packages] [Bug 1569498] Re: Close Dash Page header "extra" panel when selecting an option on the dash primary filter

2016-04-21 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/close-extra-panel-when-selected

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

Title:
  Close Dash Page header "extra" panel when selecting an option on the
  dash primary filter

Status in canonical-scopes-project:
  New
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  We should close the Dash Page header extra panel (i.e. the one that
  contains old searches/departments/primary navigation filter) when we
  have a primary navigation filter and one of the filters of the option
  selector is selected.

  We will only allow "sigle selection filters" in there, so the single
  selection option or a radio group (when/if we have it), so we can
  perfectly close the panel when something on the filter has been
  selected.

  
  Suggested solution to the bug by Albert: FilterWidget needs to have a 
"clicked/activated" signal that the FilterOptionSelection will emit and the 
PageHeaderExtraPanel will receive and then emit another signal so that it gets 
closed, i.e. something similar to what dashNavigation does with onLeafClicked

  
  **
  Old description, comments up to #5 relate to this description

  
  When you are using an option filter as the primary navigation widget, usually 
dismissing the filter widget by tapping results causes a result preview to 
display, but the user really wants to see all results and only dismiss the 
filter overly.

  You can see this in the attached fake 500px click:

  1) tap the search magnifying glass icon to display the filter overlay
  2) expand "Discover" (that is the title of the nav filter in this case
  3) select any option under Discover
  4) collapse "Discover" so that the overlay is small enough that some results 
are visible
  5) tap results area to dismiss the overlay

  What happens: The preview for the result you tapped displays

  What was expected: the filter overlay disappears showing results

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-scopes-project/+bug/1569498/+subscriptions

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


[Touch-packages] [Bug 1569980] Re: Can't click filter button in search field of dash while the search field has active focus.

2016-04-19 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
   Status: New => Invalid

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

Title:
  Can't click filter button in search field of dash while the search
  field has active focus.

Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Using this scope https://code.launchpad.net/500px-scope

  1. Type a search query in the search box
  2. Tap the filter label ("popular" is the default)

  Expected behavior: filter list opens
  Actual behavior: nada

  WAR: Give focus to something outside the search box and then tap the
  navigation button.

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

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


[Touch-packages] [Bug 1569492] Re: can't select primary nav filter sometimes

2016-04-19 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/fix-primary-filter-scrolling

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

Title:
  can't select primary nav filter sometimes

Status in canonical-scopes-project:
  New
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  One sometimes cannot select the lowest options in an option select
  filter when it is the primary navigation widget for the scope.

  Here's a case.

  Using the attached fake 500px scope:
  1) Enter a query string (wait 30 seconds for the query to complete -- FYI 
this takes a long time -- 30 secs -- due to  bug 1568035)
  2) Tap the nav button that now appears in the Search box (label is 
"Popular"). 
  3) Expand the filter by tapping its title: "Discover". (You probably can at 
this point swipe up to see and probably select any of the options, including 
the three lowest: fake1, fake2 and fake3)
  4) Tap in results 
  5) Modify your query string and let it complete
  6) redo 2) & 3). (you may have to tap in results again to get focus out of 
the Search box user input area, which may also be a bug)
  At this point, if you swipe up, you can no longer bring the lowest filter 
options into a position where you can select them. (As soon as you remove your 
finger, they bounce back down out of view).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-scopes-project/+bug/1569492/+subscriptions

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


[Touch-packages] [Bug 1569492] Re: can't select primary nav filter sometimes

2016-04-13 Thread Josh Arenson
The screen on my arale is large enough that it shows all the filter
options without needing to scroll. I'm going to modify the scope to make
the filter list longer and I'll post a click package here. Also, I've
filed lp:1569980 as a result of the instructions in this report as it is
a separate, and annoying, issue.

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

Title:
  can't select primary nav filter sometimes

Status in canonical-scopes-project:
  New
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  One sometimes cannot select the lowest options in an option select
  filter when it is the primary navigation widget for the scope.

  Here's a case.

  Using the attached fake 500px scope:
  1) Enter a query string (wait 30 seconds for the query to complete -- FYI 
this takes a long time -- 30 secs -- due to  bug 1568035)
  2) Tap the nav button that now appears in the Search box (label is 
"Popular"). 
  3) Expand the filter by tapping its title: "Discover". (You probably can at 
this point swipe up to see and probably select any of the options, including 
the three lowest: fake1, fake2 and fake3)
  4) Tap in results 
  5) Modify your query string and let it complete
  6) redo 2) & 3). (you may have to tap in results again to get focus out of 
the Search box user input area, which may also be a bug)
  At this point, if you swipe up, you can no longer bring the lowest filter 
options into a position where you can select them. (As soon as you remove your 
finger, they bounce back down out of view).

To manage notifications about this bug go to:
https://bugs.launchpad.net/canonical-scopes-project/+bug/1569492/+subscriptions

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


[Touch-packages] [Bug 1569980] [NEW] Can't click filter button in search field of dash while the search field has active focus.

2016-04-13 Thread Josh Arenson
Public bug reported:

Using this scope https://code.launchpad.net/500px-scope

1. Type a search query in the search box
2. Tap the filter label ("popular" is the default)

Expected behavior: filter list opens
Actual behavior: nada

WAR: Give focus to something outside the search box and then tap the
navigation button.

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

Title:
  Can't click filter button in search field of dash while the search
  field has active focus.

Status in unity8 package in Ubuntu:
  New

Bug description:
  Using this scope https://code.launchpad.net/500px-scope

  1. Type a search query in the search box
  2. Tap the filter label ("popular" is the default)

  Expected behavior: filter list opens
  Actual behavior: nada

  WAR: Give focus to something outside the search box and then tap the
  navigation button.

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

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


[Touch-packages] [Bug 1563357] Re: Scope cannot set color of filter widget in page header

2016-03-30 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/allow-page-header-to-set-color

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

Title:
  Scope cannot set color of filter widget in page header

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

Bug description:
  A scope dev can set the color of page header foreground items (like search 
magnifying glass and favorite widget) in the scope ini file:
  PageHeader.ForegroundColor=#ff

  Problem:
  This does not also set the color of the new filter button, but it should

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

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


[Touch-packages] [Bug 1554602] Re: Click scope image are not cached at the right size triggering reloads on every page

2016-03-10 Thread Josh Arenson
Enabling caching for these images (which is disabled by default in this
instance) makes the images load faster, but doesn't solve the problem of
the images reloading on actions. Continuing to investigate.

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

Title:
  Click scope image are not cached at the right size triggering reloads
  on every page

Status in Canonical System Image:
  Triaged
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  STEPS:
  1. Install the latest rc-proposed image
  2. Move to the apps scope
  3. Open the store
  4. Search for uTorch
  5. Open the preview
  6. Go out of the preview
  7. Go into preview again

  EXPECTED:
  I expect the images to be almost instantly there cached from looking at the 
preview the first time

  ACTUAL:
  The images are downloaded from the web again.

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

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


[Touch-packages] [Bug 1542395] Re: Screen.orientation and or Screen.primaryOrientation depend on the size of the app window

2016-03-04 Thread Josh Arenson
@Florian I wrote a simple test app (link below) and I am unable to
reproduce this issue. Do you have any more information? I'm using a
Nexus 7 with r379 and a bluetooth mouse. The output of the below app is
always 0 regardless of window size.

http://pastebin.ubuntu.com/15281309/

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

Title:
  Screen.orientation and or Screen.primaryOrientation depend on the size
  of the app window

Status in Canonical System Image:
  Confirmed
Status in QtMir:
  Confirmed
Status in qtubuntu:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed
Status in qtubuntu package in Ubuntu:
  Confirmed

Bug description:
  When the user resizes an app window the value returned by
  Screen.angleBetween(Screen.primaryOrientation, Screen.orientation)
  changes depending on the aspect ratio of the window. If the window has
  a landscape aspect ratio, one value is returned, otherwise another one
  is returned.

  Screen orientation and app window size should be independent.

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

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


[Touch-packages] [Bug 1542224] Re: [regression] OSK suppressed in autopilot tests

2016-02-22 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/input-name-filter-proxy

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

Title:
  [regression] OSK suppressed in autopilot tests

Status in ubuntu-keyboard package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  I’m seeing a large number of webbrowser-app autopilot test failures lately (I 
think this started 2 or 3 days ago).
  Almost all of them expose a traceback like this:

  Traceback (most recent call last):
  File 
"/usr/lib/python3/dist-packages/webbrowser_app/tests/test_addressbar_states.py",
 line 82, in test_does_not_clear_when_typing_while_loading
  self.main_window.go_to_url(url)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 41, in go_to_url
  self.address_bar.go_to_url(url)
  File "/usr/lib/python3/dist-packages/autopilot/logging.py", line 46, in inner
  return f(instance, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 357, in go_to_url
  self.write(url)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 361, in write
  self.text_field.write(text, clear)
  File "/usr/lib/python3/dist-packages/autopilot/logging.py", line 46, in inner
  return f(instance, *args, **kwargs)
  File 
"/usr/lib/python3/dist-packages/ubuntuuitoolkit/_custom_proxy_objects/_textfield.py",
 line 49, in write
  self.keyboard.type(text)
  File "/usr/lib/python3/dist-packages/autopilot/input/_osk.py", line 105, in 
type
  self._keyboard.type(string, delay)
  File "/usr/lib/python3/dist-packages/ubuntu_keyboard/emulators/keyboard.py", 
line 211, in type
  self.press_key(char)
  File "/usr/lib/python3/dist-packages/ubuntu_keyboard/emulators/keyboard.py", 
line 165, in press_key
  raise RuntimeError("Keyboard is not on screen")
  RuntimeError: Keyboard is not on screen


  This has now been confirmed to occur in all autopilot tests that use
  the OSK (including the ubuntu-keyboard-autopilot tests)

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

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


[Touch-packages] [Bug 1543859] Re: Autopilot tests cannot launch most apps

2016-02-10 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Autopilot tests cannot launch most apps

Status in unity8 package in Ubuntu:
  New

Bug description:
  Only the dialer-app and webbrowser-app can be launched by calling the
  main_window.launch_application(appId) method. Possibly related to the
  fact that the location for .desktop files for most (all) other pre-
  installed apps has changed.

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

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


[Touch-packages] [Bug 1543859] [NEW] Autopilot tests cannot launch most apps

2016-02-09 Thread Josh Arenson
Public bug reported:

Only the dialer-app and webbrowser-app can be launched by calling the
main_window.launch_application(appId) method. Possibly related to the
fact that the location for .desktop files for most (all) other pre-
installed apps has changed.

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

Title:
  Autopilot tests cannot launch most apps

Status in unity8 package in Ubuntu:
  New

Bug description:
  Only the dialer-app and webbrowser-app can be launched by calling the
  main_window.launch_application(appId) method. Possibly related to the
  fact that the location for .desktop files for most (all) other pre-
  installed apps has changed.

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

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


[Touch-packages] [Bug 1542224] Re: [regression] OSK suppressed in autopilot tests

2016-02-08 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/fix-osk-autopilot-tests

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

Title:
  [regression] OSK suppressed in autopilot tests

Status in ubuntu-keyboard package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  I’m seeing a large number of webbrowser-app autopilot test failures lately (I 
think this started 2 or 3 days ago).
  Almost all of them expose a traceback like this:

  Traceback (most recent call last):
  File 
"/usr/lib/python3/dist-packages/webbrowser_app/tests/test_addressbar_states.py",
 line 82, in test_does_not_clear_when_typing_while_loading
  self.main_window.go_to_url(url)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 41, in go_to_url
  self.address_bar.go_to_url(url)
  File "/usr/lib/python3/dist-packages/autopilot/logging.py", line 46, in inner
  return f(instance, *args, **kwargs)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 357, in go_to_url
  self.write(url)
  File "/usr/lib/python3/dist-packages/webbrowser_app/emulators/browser.py", 
line 361, in write
  self.text_field.write(text, clear)
  File "/usr/lib/python3/dist-packages/autopilot/logging.py", line 46, in inner
  return f(instance, *args, **kwargs)
  File 
"/usr/lib/python3/dist-packages/ubuntuuitoolkit/_custom_proxy_objects/_textfield.py",
 line 49, in write
  self.keyboard.type(text)
  File "/usr/lib/python3/dist-packages/autopilot/input/_osk.py", line 105, in 
type
  self._keyboard.type(string, delay)
  File "/usr/lib/python3/dist-packages/ubuntu_keyboard/emulators/keyboard.py", 
line 211, in type
  self.press_key(char)
  File "/usr/lib/python3/dist-packages/ubuntu_keyboard/emulators/keyboard.py", 
line 165, in press_key
  raise RuntimeError("Keyboard is not on screen")
  RuntimeError: Keyboard is not on screen


  This has now been confirmed to occur in all autopilot tests that use
  the OSK (including the ubuntu-keyboard-autopilot tests)

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

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


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

2016-02-04 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

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

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Currently there is no way in an autopilot test to request to the shell
  to close an application cleanly (i.e. in the same way that the user
  would close it).

  It would be useful to add an emulator allowing to perform such an
  action that could be imported by other tests, in the same spirit as
  the emulator already existing in the UITK to do things like bringing
  up a toolbar.

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

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


[Touch-packages] [Bug 1539862] Re: Dump in click build . in Ubuntu Xenial alpha2

2016-01-31 Thread Josh Arenson
I'm receiving the same error, but adding a symlink isn't fixing it for
me.

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

Title:
  Dump in click build . in Ubuntu Xenial alpha2

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

Bug description:
  Hi! When I try to run click build ., I'm getting this dump:

  Traceback (most recent call last):
File "/usr/bin/click-review", line 138, in 
  main()
File "/usr/bin/click-review", line 132, in main
  results.run_all_checks()
File "/usr/bin/click-review", line 105, in run_all_checks
  self._run_module_checks(module)
File "/usr/bin/click-review", line 90, in _run_module_checks
  review = modules.init_main_class(module, self.click_fn)
File "/usr/lib/python3/dist-packages/clickreviews/modules.py", line 70, in 
init_main_class
  init_object = find_main_class(module_name)
File "/usr/lib/python3/dist-packages/clickreviews/modules.py", line 48, in 
find_main_class
  module_name))
File "/usr/lib/python3.4/imp.py", line 171, in load_source
  module = methods.load()
File "", line 1220, in load
File "", line 1200, in _load_unlocked
File "", line 1129, in _exec
File "", line 1471, in exec_module
File "", line 321, in _call_with_frames_removed
File "/usr/lib/python3/dist-packages/clickreviews/cr_lint.py", line 18, in 

  from apt import apt_pkg
File "/usr/lib/python3/dist-packages/apt/__init__.py", line 23, in 
  import apt_pkg
  ImportError: No module named 'apt_pkg'

  
  I think is because of python3 doesn't find the library. I fixed with this 
link:
  sudo ln -s 
/usr/lib/python3/dist-packages/apt_pkg.cpython-35m-i386-linux-gnu.so 
/usr/lib/python3/dist-packages/apt_pkg.so

  Thanks in advance!

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

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


[Touch-packages] [Bug 1539320] Re: Unity8 desktop greeter doesn't use the selected user's wallpaper

2016-01-29 Thread Josh Arenson
Humm, this doesn't seem to actually work in unity7 either.. Perhaps I
was just looking at the lock screen? I think this would end up being a
feature request if it is something we want to implement, but its not
really a bug at this time.

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

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

Title:
  Unity8 desktop greeter doesn't use the selected user's wallpaper

Status in unity8 package in Ubuntu:
  Invalid

Bug description:
  Steps to reproduce:
  1. Install unity8-greeter
  2. Change 's wallpaper
  3. Restart lightdm
  4. Select  in the greeter

  Expected behavior: wallpaper changes to match 's session wallpaper
  Actual behavior: default wallpaper is displayed

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

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


[Touch-packages] [Bug 1539320] Re: Unity8 desktop greeter doesn't use the selected user's wallpaper

2016-01-28 Thread Josh Arenson
This is only applicable when the wallpaper is located inside an
encrypted home directory. However, it seems to work fine with the
unity(7)-greeter.

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

Title:
  Unity8 desktop greeter doesn't use the selected user's wallpaper

Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce:
  1. Install unity8-greeter
  2. Change 's wallpaper
  3. Restart lightdm
  4. Select  in the greeter

  Expected behavior: wallpaper changes to match 's session wallpaper
  Actual behavior: default wallpaper is displayed

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

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


[Touch-packages] [Bug 1539320] [NEW] Unity8 desktop greeter doesn't use the selected user's wallpaper

2016-01-28 Thread Josh Arenson
Public bug reported:

Steps to reproduce:
1. Install unity8-greeter
2. Change 's wallpaper
3. Restart lightdm
4. Select  in the greeter

Expected behavior: wallpaper changes to match 's session wallpaper
Actual behavior: default wallpaper is displayed

** Affects: unity8 (Ubuntu)
 Importance: Undecided
 Assignee: Josh Arenson (josharenson)
 Status: New

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Unity8 desktop greeter doesn't use the selected user's wallpaper

Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce:
  1. Install unity8-greeter
  2. Change 's wallpaper
  3. Restart lightdm
  4. Select  in the greeter

  Expected behavior: wallpaper changes to match 's session wallpaper
  Actual behavior: default wallpaper is displayed

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

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


[Touch-packages] [Bug 1419645] Re: [Dialer] dialer screen focussed after receiving a call

2016-01-22 Thread Josh Arenson
We would need input from design, but ofono sends a signal over dbus when a call 
ends http://pastebin.ubuntu.com/14600960/ 
We could have unity8 listen for this and restore focus to the n-1 app in the 
application manager stack. Obviously there are a lot of edge cases here, but 
this wouldn't be _too_ hard in theory and any 3rd party dialer app (that uses 
ofono) would behave the same. An API would probably be required for voip apps 
though.

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

Title:
  [Dialer] dialer screen focussed after receiving a call

Status in Canonical System Image:
  Incomplete
Status in Ubuntu UX:
  Fix Committed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Using rtm 228 on krillin
  - have your phone on the dash (nothing is running) or with an application in 
use (ie. the webbrowser)
  - receive a call
  - look at your phone after the call

  The dialer-app is open and focussed, it shouldn't, answering a phone
  shouldn't return the device in a state different from the one it was
  before talking. If you were using the webbrowser you probably want to
  keep doing that rather than dial a new number

  Opening against unity8 since that's an application management issue,
  not sure if that's the correct component though

  UX comment---

  I agree, this is a bad user experience. As proposed in the bug description:
  After user hangs up an accepted call, the previously used app should be back 
in view.

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

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


[Touch-packages] [Bug 1537098] [NEW] Switching users in the greeter doesn't respect the selected user's language.

2016-01-22 Thread Josh Arenson
Public bug reported:

User A uses English as their language
User B uses Hebrew as their language

User A is initially selected in the greeter
User B selects themselves in the greeter and the greeter, indicators, and OSK 
remain in English

Not only does this make life difficult for User B, but if User B's
password is in Hebrew, the are unable to login at all.

Resolving this is a large undertaking as it requires changes to unity8,
indicators, and maliit.

** Affects: unity8 (Ubuntu)
 Importance: Undecided
 Assignee: Josh Arenson (josharenson)
 Status: New

** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Switching users in the greeter doesn't respect the selected user's
  language.

Status in unity8 package in Ubuntu:
  New

Bug description:
  User A uses English as their language
  User B uses Hebrew as their language

  User A is initially selected in the greeter
  User B selects themselves in the greeter and the greeter, indicators, and OSK 
remain in English

  Not only does this make life difficult for User B, but if User B's
  password is in Hebrew, the are unable to login at all.

  Resolving this is a large undertaking as it requires changes to
  unity8, indicators, and maliit.

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

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


[Touch-packages] [Bug 1536839] [NEW] T-Mobile status messages are received as SMS

2016-01-21 Thread Josh Arenson
Public bug reported:

T-Mobile is my carrier and I live in the US. Whenever someone leaves me a 
voicemail, I receive a text message that looks like
http://pastebin.ubuntu.com/14593529

I _do_ also receive proper voicemail notifications... Please let me know
if you need more information about this.

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

Title:
  T-Mobile status messages are received as SMS

Status in messaging-app package in Ubuntu:
  New

Bug description:
  T-Mobile is my carrier and I live in the US. Whenever someone leaves me a 
voicemail, I receive a text message that looks like
  http://pastebin.ubuntu.com/14593529

  I _do_ also receive proper voicemail notifications... Please let me
  know if you need more information about this.

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

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


[Touch-packages] [Bug 1479065] Re: Desktop greeter doesn't focus password input file when username is clicked

2016-01-20 Thread Josh Arenson
*** This bug is a duplicate of bug 1435923 ***
https://bugs.launchpad.net/bugs/1435923

While technically not a duplicate, the symptoms are very similar to
lp:1435923 and the fix is the same.

** This bug has been marked a duplicate of bug 1435923
   [greeter/desktop] the password entry is not focussed by default

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

Title:
  Desktop greeter doesn't focus password input file when username is
  clicked

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Steps to reproduce

  0. Have more than 1 user able to login
  1. Install unity8 desktop greeter
  2. Restart lightdm service to get to greeter
  3. Select any user in the greeter that isn't the default selection

  Expected behavior: Password text field should receive focus so the user can 
enter the password
  Actual behavior: user must also click password field to give it focus

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

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


[Touch-packages] [Bug 1479065] Re: Desktop greeter doesn't focus password input file when username is clicked

2016-01-20 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/fix-greeter-password-focus

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

Title:
  Desktop greeter doesn't focus password input file when username is
  clicked

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Steps to reproduce

  0. Have more than 1 user able to login
  1. Install unity8 desktop greeter
  2. Restart lightdm service to get to greeter
  3. Select any user in the greeter that isn't the default selection

  Expected behavior: Password text field should receive focus so the user can 
enter the password
  Actual behavior: user must also click password field to give it focus

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

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


[Touch-packages] [Bug 1435923] Re: [greeter/desktop] the password entry is not focussed by default

2016-01-18 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  [greeter/desktop] the password entry is not focussed by default

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  Using current vivid in desktop mode (desktop-next live session or
  installed), the greeter screen for password has an entry, but this one
  is not getting the keyboard focus by default, which is annoying since
  you can't directly type your password then

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

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


[Touch-packages] [Bug 1489323] Re: MX4 button sometimes remains active with the screen off

2015-12-14 Thread Josh Arenson
@Pat I can absolutly reproduce this using the following sequence

1. Set phone to unlock on swipe
2. Rapidly tap the "home" button
3. Simultaneously tap the power button to lock the screen
4. Stop tapping the "home" button after the screen darkens
5. Unlock the device

Expected: greeter is shown
Actual: Dash is shown

I can visibly see the "home" button blink well after I've pressed it
(and well after the screen blanks. This seems like a good place to start
looking around.

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

Title:
  MX4 button sometimes remains active with the screen off

Status in Canonical System Image:
  Confirmed
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  On last few weeks of rc-proposed and ota6 on MX4
  On occasion when the phone resumes, either through a power button press or an 
incoming event, the greeter is not shown and either the passcode entry page or 
the last running app is shown directly.

  This is intermittent but once in this state it is very consistently behaving 
this way.
  Update: while that was originally true now (build 136) it seems to clear once 
the button is pressed, the greeter is shown next resume.

  (was Greeter not always shown)

  I reproduced it a few times after an incoming text but its not
  consistent

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

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


[Touch-packages] [Bug 1497081] Re: Unity8 displays name incorrectly at login

2015-11-04 Thread Josh Arenson
And just to elaborate further, on the phone (or any form factor that
uses integratedLightDm) will show whatever $USER returns (I believe this
to be case-sensitive username). Form factors that use the fullLightDM
(desktop) will return the (unmodified) display name.

Example:
Phone-> josh
Desktop-> Josh Arenson

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

Title:
  Unity8 displays name incorrectly at login

Status in unity8 package in Ubuntu:
  New

Bug description:
  Unity8 displays name incorrectly at login.

  My username is: dan
  My name is: Daniel van Vugt

  Unity8 shows on the login screen: Dan
  It should show either "dan" or "Daniel van Vugt".

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

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


[Touch-packages] [Bug 1497081] Re: Unity8 displays name incorrectly at login

2015-11-04 Thread Josh Arenson
The  IntegratedLightDM mucks with model data when it should just respect
the result returned.  This was brought to my attention by "Gizmo
Chicken" on youtube. I had promised a fix included in the slim greeter
branch, but have written a small, separate, patch instead.

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

Title:
  Unity8 displays name incorrectly at login

Status in unity8 package in Ubuntu:
  New

Bug description:
  Unity8 displays name incorrectly at login.

  My username is: dan
  My name is: Daniel van Vugt

  Unity8 shows on the login screen: Dan
  It should show either "dan" or "Daniel van Vugt".

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

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


[Touch-packages] [Bug 1512514] [NEW] OptionSelector and OptionSelectorDelegate spell color incorrectly

2015-11-02 Thread Josh Arenson
Public bug reported:

I understand that, as an American, I spell "color" incorrectly. However,
OptionSelector and OptionSelectorDelegate are the only components that
spell it "colour". This makes for inconsistent code. This is present in
1.2 and 1.3

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

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

Title:
  OptionSelector and OptionSelectorDelegate spell color incorrectly

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

Bug description:
  I understand that, as an American, I spell "color" incorrectly.
  However, OptionSelector and OptionSelectorDelegate are the only
  components that spell it "colour". This makes for inconsistent code.
  This is present in 1.2 and 1.3

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

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


[Touch-packages] [Bug 1489323] Re: Greeter not always being shown

2015-10-30 Thread Josh Arenson
@Pat that timer is the first thing I thought of when I saw this bug. I
looked into it a bit, and found that the timer is synchronized with the
animation timer. This means it has 16 ms resolution. This shouldn't
matter as the only purpose of the timer is to ensure that the greeter is
shown after the current event is processed. That said, I think we should
log when/if the timer is triggering. Since I still can't reproduce this,
I was hoping you could run an instrumented version of Unity8. If you are
able to, would you prefer a patch (just qml/init changes, so you
shouldn't have to recompile anything) or a deb?

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

Title:
  Greeter not always being shown

Status in Canonical System Image:
  In Progress
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  On last few weeks of rc-proposed and ota6 on MX4
  On occasion when the phone resumes, either through a power button press or an 
incoming event, the greeter is not shown and either the passcode entry page or 
the last running app is shown directly.

  This is intermittent but once in this state it is very consistently behaving 
this way.
  Update: while that was originally true now (build 136) it seems to clear once 
the button is pressed, the greeter is shown next resume.

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

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


[Touch-packages] [Bug 1489323] Re: Greeter not always being shown

2015-10-26 Thread Josh Arenson
was*

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

Title:
  Greeter not always being shown

Status in Canonical System Image:
  In Progress
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  On last few weeks of rc-proposed and ota6 on MX4
  On occasion when the phone resumes, either through a power button press or an 
incoming event, the greeter is not shown and either the passcode entry page or 
the last running app is shown directly.

  This is intermittent but once in this state it is very consistently behaving 
this way.
  Update: while that was originally true now (build 136) it seems to clear once 
the button is pressed, the greeter is shown next resume.

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

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


[Touch-packages] [Bug 1489323] Re: Greeter not always being shown

2015-10-26 Thread Josh Arenson
I used my MX4 for a few days and never way able to see this... I have a
patch that would enable timestamps in the logs, but at this point, I
don't know how that would be helpful as the logs contain nothing
remarkable. I'll discuss with the team some ideas and get back.

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

Title:
  Greeter not always being shown

Status in Canonical System Image:
  In Progress
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  On last few weeks of rc-proposed and ota6 on MX4
  On occasion when the phone resumes, either through a power button press or an 
incoming event, the greeter is not shown and either the passcode entry page or 
the last running app is shown directly.

  This is intermittent but once in this state it is very consistently behaving 
this way.
  Update: while that was originally true now (build 136) it seems to clear once 
the button is pressed, the greeter is shown next resume.

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

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


[Touch-packages] [Bug 1506946] [NEW] Volume increases on its own when phone is muted.

2015-10-16 Thread Josh Arenson
Public bug reported:

I'm traveling with limited bandwidth and electricity so I lack the
resources to investigate this much further today.

Steps to reproduce:
1. Put phone in silent mode
2. Start playing "machines vs machines"
3. Sound plays at full volume (don't know if this is, itself, a bug)
4. Turn down volume and continue playing.

Expected behavior: Volume stays silent
Actual behavior:  Every 20 seconds or so, the volume will increase itself 
several levels

Running rc-proposed on arale

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

Title:
  Volume increases on its own when phone is muted.

Status in unity8 package in Ubuntu:
  New

Bug description:
  I'm traveling with limited bandwidth and electricity so I lack the
  resources to investigate this much further today.

  Steps to reproduce:
  1. Put phone in silent mode
  2. Start playing "machines vs machines"
  3. Sound plays at full volume (don't know if this is, itself, a bug)
  4. Turn down volume and continue playing.

  Expected behavior: Volume stays silent
  Actual behavior:  Every 20 seconds or so, the volume will increase itself 
several levels

  Running rc-proposed on arale

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

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


[Touch-packages] [Bug 1506946] Re: Volume increases on its own when phone is muted.

2015-10-16 Thread Josh Arenson
Also, for completeness, I was in flight mode as well.

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

Title:
  Volume increases on its own when phone is muted.

Status in unity8 package in Ubuntu:
  New

Bug description:
  I'm traveling with limited bandwidth and electricity so I lack the
  resources to investigate this much further today.

  Steps to reproduce:
  1. Put phone in silent mode
  2. Start playing "machines vs machines"
  3. Sound plays at full volume (don't know if this is, itself, a bug)
  4. Turn down volume and continue playing.

  Expected behavior: Volume stays silent
  Actual behavior:  Every 20 seconds or so, the volume will increase itself 
several levels

  Running rc-proposed on arale

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

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


[Touch-packages] [Bug 1489323] Re: Greeter not always being shown

2015-10-14 Thread Josh Arenson
I've spent about an hour on r128 and r131 with no luck reproducing. I'll
start using this as my main phone tomorrow in hopes of reproducing. Any
idea when the issue started occurring WRT to the logs? (I assume the
logs contain info before _and_ after the bug occurred).

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

Title:
  Greeter not always being shown

Status in Canonical System Image:
  In Progress
Status in unity-system-compositor package in Ubuntu:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  On last few weeks of rc-proposed and ota6 on MX4
  On occasion when the phone resumes, either through a power button press or an 
incoming event, the greeter is not shown and either the passcode entry page or 
the last running app is shown directly.
  This is intermittent but once in this state it is very consistently behaving 
this way.

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

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


[Touch-packages] [Bug 1478637] Re: X-Ubuntu-Supported-Orientations=landscape causes app to be upside down on devices with nativeOrientation=landscape

2015-09-25 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/new_fix_upsidedown

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

Title:
  X-Ubuntu-Supported-Orientations=landscape causes app to be upside down
  on devices with nativeOrientation=landscape

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  As the title says. There is probably a +/- issue with Landscape vs
  InvertedLandscape.

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

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


[Touch-packages] [Bug 1467473] Re: Nexus 7 with shellRotation sometimes ends up with broken lockscreen

2015-08-21 Thread Josh Arenson
** Branch linked: lp:~dandrader/unity8/fixOrientedShellTests

** Changed in: unity8 (Ubuntu)
   Status: Confirmed => Fix Committed

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

Title:
  Nexus 7 with shellRotation sometimes ends up with broken lockscreen

Status in unity8 package in Ubuntu:
  Fix Committed

Bug description:
  Since shellRotation the Nexus7 sometimes ends up with a lockscreen
  state where it can't be unlocked because the PinLockScreen is squeezed
  into landscape format. To reproduce open some apps that allow rotating
  and play around with rotating and locking/unlocking.

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

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


[Touch-packages] [Bug 1360307] Re: Logging in to the desktop session brings up the lock screen

2015-08-21 Thread Josh Arenson
*** This bug is a duplicate of bug 1324602 ***
https://bugs.launchpad.net/bugs/1324602

** This bug has been marked a duplicate of bug 1324602
   [split] unity8-greeter doesn't run on desktop configurations

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

Title:
  Logging in to the desktop session brings up the lock screen

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  When logging in to the desktop session from LightDM, the lock screen
  is then brought up and requires typing the password again to unlock.
  The desired behavior should be to just go to the Dash as having to
  type another password is redundant.

  This occurs with version 8.00+14.10.20140822-0ubuntu1.

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

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


[Touch-packages] [Bug 1324602] Re: [split] unity8-greeter doesn't run on desktop configurations

2015-08-21 Thread Josh Arenson
Also have a ppa that will allow easily testing this on desktop, but its
not working quite right yet.

** Branch linked: lp:~josharenson/unity8/slim_greeter_real_lightdm

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

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

Title:
  [split] unity8-greeter doesn't run on desktop configurations

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  Installing unity8-greeter, from the split greeter silo, on an
  unity8-mir desktop configuration leads to a non working lightdm

  * installing unity8-greeter leads to an empty screen with a cursor
  (looking like a Mir one), which runs for some seconds and do what
  looks like a respawn

  -> editing the unity8-greeter-wrapper to set the qpa to mirclient
  corrected the respawn issue but giving an empty screen still

  * install ubuntu-touch-session gives a working greeter but unlocking
  doesn't start the session

  * GreeterShell.qml has an issue and does unlock only in when autologin
  is enabled, editing that makes unlock dismiss the greeter

  but the session still doesn't start, unlocking the greeter gives a
  screen looking like the phone one ... that needs extra debugging

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

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


[Touch-packages] [Bug 1478637] Re: X-Ubuntu-Supported-Orientations=landscape causes app to be upside down on devices with nativeOrientation=landscape

2015-08-21 Thread Josh Arenson
** Branch unlinked: lp:~josharenson/unity8/fix_upside_down_apps

** Branch linked: lp:~josharenson/unity8/new_fix_upsidedown

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

Title:
  X-Ubuntu-Supported-Orientations=landscape causes app to be upside down
  on devices with nativeOrientation=landscape

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  As the title says. There is probably a +/- issue with Landscape vs
  InvertedLandscape.

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

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


[Touch-packages] [Bug 1483752] Re: Trusted prompts make application inactive: Qt.application.active == false

2015-08-18 Thread Josh Arenson
@John theoreticaly the camera app could handle this, but I think we have
a work-around, as well as a proper fix in the works.

This branch is a work-around. 
https://code.launchpad.net/~josharenson/unity8/fix_tps_active
I'm not quite sure what the far reaching implications of this fix are yet. 
However, I have performed some manual/automated testing, and I certainly don't 
see anything obviously wrong. I'm going to kick off a ci build for it in a bit 
as well (for even more automated testing)

This branch contains the proper fix.
https://code.launchpad.net/~dandrader/qtmir/mirSurface/+merge/264923
It removes the same code that the first branch does, but it depends on 2 other 
branches (in two different projects), so getting it landed will take some 
effort. 

I imagine that the first branch should work, in a pinch, but I'd
appreciate confirmation from dandrader.

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

Title:
  Trusted prompts make application inactive: Qt.application.active ==
  false

Status in Canonical System Image:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  When a trusted prompt shows up the application becomes "inactive",
  concretely QML applications receive a signal that
  Qt.application.active has changed to 'false'.

  This is will be an issue for example in the case of the camera-app
  trying to start recording a video, a pulseaudio trusted prompt will
  show up to ask for permission to record from the microphone but the
  camera-app believing that it's become inactive will immediately stop
  the recording.

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

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


[Touch-packages] [Bug 1483752] Re: Trusted prompts make application inactive: Qt.application.active == false

2015-08-18 Thread Josh Arenson
** Branch unlinked: lp:~josharenson/unity8/fix_tps_active

** Branch linked: lp:~dandrader/unity8/mirSurface

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

Title:
  Trusted prompts make application inactive: Qt.application.active ==
  false

Status in Canonical System Image:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  When a trusted prompt shows up the application becomes "inactive",
  concretely QML applications receive a signal that
  Qt.application.active has changed to 'false'.

  This is will be an issue for example in the case of the camera-app
  trying to start recording a video, a pulseaudio trusted prompt will
  show up to ask for permission to record from the microphone but the
  camera-app believing that it's become inactive will immediately stop
  the recording.

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

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


[Touch-packages] [Bug 1483752] Re: Trusted prompts make application inactive: Qt.application.active == false

2015-08-12 Thread Josh Arenson
If you read https://wiki.ubuntu.com/Security/TrustStoreAndSessions
"From a lifetime perspective, the TPS ends whenever the TPP or its surface is 
dismissed. Similarly, if the session is terminated for any other reason, the 
TPP and its surface are dismissed, too. The app cannot exercise any sort of 
control in this scenario and is not even guaranteed to run.

Only after the trust session has ended, control is transferred back to
the app. More to this, while a TPS is active, focus mgmt. treats the
session as atomic and prevents the app from being refocused separately."

It seems that this could be impossible by design. However, it also seems
that the application remains active while the TPS is displayed, and only
switches to inactive when the TPS is closed (the app quickly switches
back to active, but I suppose this could be enough to break certain
things).

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

Title:
  Trusted prompts make application inactive: Qt.application.active ==
  false

Status in Canonical System Image:
  New
Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  When a trusted prompt shows up the application becomes "inactive",
  concretely QML applications receive a signal that
  Qt.application.active has changed to 'false'.

  This is will be an issue for example in the case of the camera-app
  trying to start recording a video, a pulseaudio trusted prompt will
  show up to ask for permission to record from the microphone but the
  camera-app believing that it's become inactive will immediately stop
  the recording.

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

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


[Touch-packages] [Bug 1482613] Re: Apps with forced landscape orientation display the "wrong" way on the phone

2015-08-11 Thread Josh Arenson
*** This bug is a duplicate of bug 1478637 ***
https://bugs.launchpad.net/bugs/1478637

** This bug has been marked a duplicate of bug 1478637
   X-Ubuntu-Supported-Orientations=landscape causes app to be upside down on 
devices with nativeOrientation=landscape

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

Title:
  Apps with forced landscape orientation display the "wrong" way on the
  phone

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  See also https://bugs.launchpad.net/ubuntu/+source/unity8/+bug/1478637
  which is probably the same issue, but for natively landscape
  orientated devices.

  When an app sets a forced-landscape mode, the phone must be rotated
  clockwise from portrait mode to display it properly. This is a more
  difficult movement than rotating anti-clockwise for people holding the
  phone in their left hand (e.g. most right-handed people).

  When an app forces landscape mode, the "top" of the landscape screen
  should be the right of the portait-orientated screen.

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

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


[Touch-packages] [Bug 1478853] Re: OOM scoring kills the browser's render process while the browser is running

2015-08-03 Thread Josh Arenson
@greyback, it seems that upstart-app-launch just sets the score for
paused apps at 900, and changes them back to 100 after being resumed. I
wonder where these numbers came from, and how OOM Killer further
prioritizes processes with the same score. 900 seems pretty high, but I
really don't have much experience with this so I'm not sure. As a hack,
would reducing the score of Oxide (or whatever is actually affected by
this) by 30, or so, points have an impact?

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

Title:
  OOM scoring kills the browser's render process while the browser is
  running

Status in Canonical System Image:
  Confirmed
Status in qtmir package in Ubuntu:
  Confirmed
Status in ubuntu-app-launch package in Ubuntu:
  Confirmed
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  According to people's reports, the OOM killer kills the browser's
  renderer process while the browser is being focused.

  https://plus.google.com/u/1/106915287544632473346/posts/CoA8mLLvsJk?cfem=1

  Also the OOM scoring mechanism really should take more things into
  accounts. To me it happens frequently that an app is hanging unused in
  the right edge spread for days without getting killed, but the 2 most
  recent apps I switch between get killed all the time.

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

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


[Touch-packages] [Bug 1478637] Re: X-Ubuntu-Supported-Orientations=landscape causes app to be upside down on devices with nativeOrientation=landscape

2015-07-29 Thread Josh Arenson
Interesting note, locking/unlocking the device restores the app to the
correct orientation.

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

Title:
  X-Ubuntu-Supported-Orientations=landscape causes app to be upside down
  on devices with nativeOrientation=landscape

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  As the title says. There is probably a +/- issue with Landscape vs
  InvertedLandscape.

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

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


[Touch-packages] [Bug 1479065] [NEW] Desktop greeter doesn't focus password input file when username is clicked

2015-07-28 Thread Josh Arenson
Public bug reported:

Steps to reproduce

0. Have more than 1 user able to login
1. Install unity8 desktop greeter
2. Restart lightdm service to get to greeter
3. Select any user in the greeter that isn't the default selection

Expected behavior: Password text field should receive focus so the user can 
enter the password
Actual behavior: user must also click password field to give it focus

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

Title:
  Desktop greeter doesn't focus password input file when username is
  clicked

Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce

  0. Have more than 1 user able to login
  1. Install unity8 desktop greeter
  2. Restart lightdm service to get to greeter
  3. Select any user in the greeter that isn't the default selection

  Expected behavior: Password text field should receive focus so the user can 
enter the password
  Actual behavior: user must also click password field to give it focus

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

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


[Touch-packages] [Bug 1478637] Re: X-Ubuntu-Supported-Orientations=landscape causes app to be upside down on devices with nativeOrientation=landscape

2015-07-27 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: Daniel d'Andrada (dandrader) => Josh Arenson (josharenson)

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

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

Title:
  X-Ubuntu-Supported-Orientations=landscape causes app to be upside down
  on devices with nativeOrientation=landscape

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  As the title says. There is probably a +/- issue with Landscape vs
  InvertedLandscape.

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

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


[Touch-packages] [Bug 1322116] Re: Keyboard input focus sometimes wrong in unity8-desktop-session-mir

2015-07-13 Thread Josh Arenson
I realized that this is desktop session, and since I can't actually get
these apps to download at the moment, I'll keep investigating.

** Changed in: qtmir
   Status: Invalid => In Progress

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

Title:
  Keyboard input focus sometimes wrong in unity8-desktop-session-mir

Status in QtMir:
  In Progress
Status in unity8 package in Ubuntu:
  Opinion
Status in unity8-desktop-session package in Ubuntu:
  Confirmed

Bug description:
  I use the unity8-desktop-session-mir with my regular desktop and
  noticed that for some apps the keyboard input focus is wrong.

  I can reproduce this with the following steps:
  - use click to install "Uberbag" and "Light Off"
  - start "Light Off" first, it goes into the right side corner of the screen 
as a "side app" (sorry, don't know the correct term)
  - start "Uberbag" it has a (web?) based input to login
  - click on the "Username or email" field of the app and start typing
  - watch that no input arrives in the "uberbag" window
  - move the "side-panel" away (to the right corner so that it vanishes)
  - now the keyboard input enters the "uberbag" application

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

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


[Touch-packages] [Bug 1322116] Re: Keyboard input focus sometimes wrong in unity8-desktop-session-mir

2015-07-13 Thread Josh Arenson
With latest devel-propsed branch (with shell rotation enabled on a nex7)
I can't reproduce this. An unrelated issue is that the keyboard is so
large in landscape mode, that I can't see what I'm typing into the
Uberbag app until I close it though.

** Changed in: qtmir
   Status: In Progress => Invalid

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

Title:
  Keyboard input focus sometimes wrong in unity8-desktop-session-mir

Status in QtMir:
  Invalid
Status in unity8 package in Ubuntu:
  Opinion
Status in unity8-desktop-session package in Ubuntu:
  Confirmed

Bug description:
  I use the unity8-desktop-session-mir with my regular desktop and
  noticed that for some apps the keyboard input focus is wrong.

  I can reproduce this with the following steps:
  - use click to install "Uberbag" and "Light Off"
  - start "Light Off" first, it goes into the right side corner of the screen 
as a "side app" (sorry, don't know the correct term)
  - start "Uberbag" it has a (web?) based input to login
  - click on the "Username or email" field of the app and start typing
  - watch that no input arrives in the "uberbag" window
  - move the "side-panel" away (to the right corner so that it vanishes)
  - now the keyboard input enters the "uberbag" application

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

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


[Touch-packages] [Bug 1467473] Re: Nexus 7 with shellRotation sometimes ends up with broken lockscreen

2015-07-09 Thread Josh Arenson
I think this was fixed with the landing of
lp:~dandrader/unity8/fixOrientedShellTests as this fixes a bug where
only the NarrowView of the greeter was being shown. Now, WideView is
shown on tablets and which doesn't load a Lockscreen component (the one
containing the pin entry screen). At this point, the bug no longer
exists, or there is a design issue.

Note: The issue _does_ still exist in the Tutorial. I'm assuming we'd
need input from design for a proper landscape pin entry screen...

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

Title:
  Nexus 7 with shellRotation sometimes ends up with broken lockscreen

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Since shellRotation the Nexus7 sometimes ends up with a lockscreen
  state where it can't be unlocked because the PinLockScreen is squeezed
  into landscape format. To reproduce open some apps that allow rotating
  and play around with rotating and locking/unlocking.

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

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


[Touch-packages] [Bug 1467473] Re: Nexus 7 with shellRotation sometimes ends up with broken lockscreen

2015-07-09 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Nexus 7 with shellRotation sometimes ends up with broken lockscreen

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Since shellRotation the Nexus7 sometimes ends up with a lockscreen
  state where it can't be unlocked because the PinLockScreen is squeezed
  into landscape format. To reproduce open some apps that allow rotating
  and play around with rotating and locking/unlocking.

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

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


[Touch-packages] [Bug 1469761] Re: Recent landing made desktop load the phone greeter/lock screen

2015-06-30 Thread Josh Arenson
** Branch linked: lp:~dandrader/unity8/fixOrientedShellTests

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

Title:
  Recent landing made desktop load the phone greeter/lock screen

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Using wily desktop, unity8 used to show a desktop greeter with a
  password entry, since 8.10+15.10.20150616.1-0ubuntu1 it's showing the
  phone greeter instead

  Corresponding upload
  https://launchpad.net/ubuntu/+source/unity8/8.10+15.10.20150616.1-0ubuntu1

  Seems like due to this change
  https://code.launchpad.net/~josharenson/unity8/greeter_mode/+merge/256385

  WORKAROUND:
  1. Swipe from the edge like the phone or move mouse to the left to reveal 
Launcher and click the Ubuntu logo.
  2. Just type your user password and you will see dots appear in place of your 
password and hit 'Enter'.

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

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


[Touch-packages] [Bug 1466947] Re: Shell rotation breaks Greeter's wide view

2015-06-30 Thread Josh Arenson
*** This bug is a duplicate of bug 1469761 ***
https://bugs.launchpad.net/bugs/1469761

** This bug has been marked a duplicate of bug 1469761
   Recent landing made desktop load the phone greeter/lock screen

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

Title:
  Shell rotation breaks Greeter's wide view

Status in unity8 package in Ubuntu:
  New
Status in unity8-desktop-session package in Ubuntu:
  New

Bug description:
  The shell rotation branch removed properties that the greeter relies
  on to determine if it should load wide/narrow view. Since the property
  was removed, the conditions always evaluate to false and only the
  NarrowView greeter can be loaded.

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

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


[Touch-packages] [Bug 1466947] Re: Shell rotation breaks Greeter's wide view

2015-06-24 Thread Josh Arenson
** Branch linked: lp:~dandrader/unity8/fixOrientedShellTests

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

Title:
  Shell rotation breaks Greeter's wide view

Status in unity8 package in Ubuntu:
  New
Status in unity8-desktop-session package in Ubuntu:
  New

Bug description:
  The shell rotation branch removed properties that the greeter relies
  on to determine if it should load wide/narrow view. Since the property
  was removed, the conditions always evaluate to false and only the
  NarrowView greeter can be loaded.

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

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


[Touch-packages] [Bug 1466947] Re: Shell rotation breaks Greeter's wide view

2015-06-23 Thread Josh Arenson
@mzanetti I'm not sure what I was using when I reported this (thought it
was trunk). While I see that WideView should load, it _does_ check for
tabletMode || multiUser when determining which view to load. Currently,
nobody is setting the tabletMode property. Perhaps this is still a bug,
just a very small one that currently doesn't show any symptoms? If
https://code.launchpad.net/~dandrader/unity8/fixOrientedShellTests/+merge/262490
gets merged, it should resolve this issue and make things more clear as
well.

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

Title:
  Shell rotation breaks Greeter's wide view

Status in unity8 package in Ubuntu:
  New
Status in unity8-desktop-session package in Ubuntu:
  New

Bug description:
  The shell rotation branch removed properties that the greeter relies
  on to determine if it should load wide/narrow view. Since the property
  was removed, the conditions always evaluate to false and only the
  NarrowView greeter can be loaded.

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

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


[Touch-packages] [Bug 1456711] Re: crash on incoming sms

2015-05-19 Thread Josh Arenson
In Notification.qml
If I check the availability of the audio hardware around the time of this bug, 
it is reported as busy. Perhaps media-hub crashes and then never releases the 
hardware

http://doc.qt.io/qt-5/qml-qtmultimedia-audio.html#availability-prop

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

Title:
  crash on incoming sms

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Mako running latest rtm v226

  Sent an sms
  Screen off
  Received an incoming sms 
  - the screen woke up
  - unity8 crashed and saw the ubuntu logo
  - unity8 back up and message in the indicator

  The attached crash file is from last week when I think the same thing
  occurred, unfortunately didnt get the crash file for this event.

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

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


[Touch-packages] [Bug 1456711] Re: crash on incoming sms

2015-05-19 Thread Josh Arenson
In further support of @aacit  http://pastebin.ubuntu.com/11231000/

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

Title:
  crash on incoming sms

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Mako running latest rtm v226

  Sent an sms
  Screen off
  Received an incoming sms 
  - the screen woke up
  - unity8 crashed and saw the ubuntu logo
  - unity8 back up and message in the indicator

  The attached crash file is from last week when I think the same thing
  occurred, unfortunately didnt get the crash file for this event.

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

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


[Touch-packages] [Bug 1456711] Re: crash on incoming sms

2015-05-19 Thread Josh Arenson
It took a long time, but I successfully reproduced this once.

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

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

Title:
  crash on incoming sms

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  Mako running latest rtm v226

  Sent an sms
  Screen off
  Received an incoming sms 
  - the screen woke up
  - unity8 crashed and saw the ubuntu logo
  - unity8 back up and message in the indicator

  The attached crash file is from last week when I think the same thing
  occurred, unfortunately didnt get the crash file for this event.

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

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


[Touch-packages] [Bug 1456711] Re: crash on incoming sms

2015-05-19 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  crash on incoming sms

Status in unity8 package in Ubuntu:
  New

Bug description:
  Mako running latest rtm v226

  Sent an sms
  Screen off
  Received an incoming sms 
  - the screen woke up
  - unity8 crashed and saw the ubuntu logo
  - unity8 back up and message in the indicator

  The attached crash file is from last week when I think the same thing
  occurred, unfortunately didnt get the crash file for this event.

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

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


[Touch-packages] [Bug 1437702] Re: Unity8 fails to cross compile due to extra pkgConfig include

2015-03-30 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  Unity8 fails to cross compile due to extra pkgConfig include

Status in unity8 package in Ubuntu:
  In Progress

Bug description:
  When trying to cross compile unity8, the build fails with

  -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) (found version 
"0.28")
  CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:323 (message):
pkg-config tool not found

  If I remove "include(FindPkgConfig)" from 
plugins/Greeter/Unity/Launcher/CMakeLists.txt,
  the build is successful.

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

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


[Touch-packages] [Bug 1437702] Re: Unity8 fails to cross compile due to extra pkgConfig include

2015-03-30 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Unity8 fails to cross compile due to extra pkgConfig include

Status in unity8 package in Ubuntu:
  Triaged

Bug description:
  When trying to cross compile unity8, the build fails with

  -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) (found version 
"0.28")
  CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:323 (message):
pkg-config tool not found

  If I remove "include(FindPkgConfig)" from 
plugins/Greeter/Unity/Launcher/CMakeLists.txt,
  the build is successful.

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

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


[Touch-packages] [Bug 1437702] [NEW] Unity8 fails to cross compile due to extra pkgConfig include

2015-03-28 Thread Josh Arenson
Public bug reported:

When trying to cross compile unity8, the build fails with

-- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) (found version 
"0.28")
CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:323 (message):
  pkg-config tool not found

If I remove "include(FindPkgConfig)" from 
plugins/Greeter/Unity/Launcher/CMakeLists.txt,
the build is successful.

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

Title:
  Unity8 fails to cross compile due to extra pkgConfig include

Status in unity8 package in Ubuntu:
  New

Bug description:
  When trying to cross compile unity8, the build fails with

  -- Could NOT find PkgConfig (missing: PKG_CONFIG_EXECUTABLE) (found version 
"0.28")
  CMake Error at /usr/share/cmake-2.8/Modules/FindPkgConfig.cmake:323 (message):
pkg-config tool not found

  If I remove "include(FindPkgConfig)" from 
plugins/Greeter/Unity/Launcher/CMakeLists.txt,
  the build is successful.

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

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


[Touch-packages] [Bug 1395724] Re: Cannot type into account login input boxes

2015-02-27 Thread Josh Arenson
@pat I am unable to reproduce this any longer. Locking/unlocking the
device, and exposing notifications both correctly hide/show the
keyboard. Do you still see it? Should mention that I'm on devel-
proposed/mako.

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

Title:
  Cannot type into account login input boxes

Status in the base for Ubuntu mobile products:
  Confirmed
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Invalid
Status in unity8 package in Ubuntu:
  Triaged
Status in ubuntu-system-settings-online-accounts package in Ubuntu RTM:
  Confirmed

Bug description:
  1. Open system settings and go to accounts.
  2. tap on 'Google' to add a google account
  3. When the login page opens drag down the indicator bar from the top
  4. Now try to type into the username/password boxes.

  What happens:
  OSK does not appear to type in there.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: ubuntu-system-settings-online-accounts 
0.5+14.10.20141029~rtm-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: armhf
  Date: Mon Nov 24 13:29:58 2014
  InstallationDate: Installed on 2014-11-21 (2 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20141121-220606)
  SourcePackage: ubuntu-system-settings-online-accounts
  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/1395724/+subscriptions

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


[Touch-packages] [Bug 1421396] Re: Volume notification does not show if phone is muted

2015-02-17 Thread Josh Arenson
** Changed in: indicator-sound (Ubuntu)
 Assignee: (unassigned) => Josh Arenson (josharenson)

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

Title:
  Volume notification does not show if phone is muted

Status in indicator-sound package in Ubuntu:
  New

Bug description:
  Steps to reproduce

  1. Turn the volume all the way down (to mute)
  2. Wait for the volume notification to disappear
  3. Press volume decrease key again

  Expected behavior: volume notification appears, and gives user feedback that 
phone is muted
  Actual behavior: volume notification does not appear

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

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


[Touch-packages] [Bug 1421396] [NEW] Volume notification does not show if phone is muted

2015-02-12 Thread Josh Arenson
Public bug reported:

Steps to reproduce

1. Turn the volume all the way down (to mute)
2. Wait for the volume notification to disappear
3. Press volume decrease key again

Expected behavior: volume notification appears, and gives user feedback that 
phone is muted
Actual behavior: volume notification does not appear

** Affects: unity8 (Ubuntu)
 Importance: Undecided
 Assignee: Josh Arenson (josharenson)
 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/1421396

Title:
  Volume notification does not show if phone is muted

Status in unity8 package in Ubuntu:
  New

Bug description:
  Steps to reproduce

  1. Turn the volume all the way down (to mute)
  2. Wait for the volume notification to disappear
  3. Press volume decrease key again

  Expected behavior: volume notification appears, and gives user feedback that 
phone is muted
  Actual behavior: volume notification does not appear

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

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


[Touch-packages] [Bug 1395724] Re: Cannot type into account login input boxes

2015-02-03 Thread Josh Arenson
This seems to be a regression in online account services. When I use the
rtm branch, this issue doesn't exist. Investigating anyway, as the root
cause could easily end up being unity8.

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

Title:
  Cannot type into account login input boxes

Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  Triaged
Status in ubuntu-system-settings-online-accounts package in Ubuntu RTM:
  Confirmed

Bug description:
  1. Open system settings and go to accounts.
  2. tap on 'Google' to add a google account
  3. When the login page opens drag down the indicator bar from the top
  4. Now try to type into the username/password boxes.

  What happens:
  OSK does not appear to type in there.

  ProblemType: Bug
  DistroRelease: Ubuntu RTM 14.09
  Package: ubuntu-system-settings-online-accounts 
0.5+14.10.20141029~rtm-0ubuntu1
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.14.7-0ubuntu8
  Architecture: armhf
  Date: Mon Nov 24 13:29:58 2014
  InstallationDate: Installed on 2014-11-21 (2 days ago)
  InstallationMedia: Ubuntu Utopic Unicorn (development branch) - armhf 
(20141121-220606)
  SourcePackage: ubuntu-system-settings-online-accounts
  UpgradeStatus: No upgrade log present (probably fresh install)

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

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


[Touch-packages] [Bug 1412373] Re: Trusted sessions don't receive focus after switching apps

2015-01-21 Thread Josh Arenson
*** This bug is a duplicate of bug 1395724 ***
https://bugs.launchpad.net/bugs/1395724

** This bug has been marked a duplicate of bug 1395724
   Cannot type into account login input boxes

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

Title:
  Trusted sessions don't receive focus after switching apps

Status in unity8 package in Ubuntu:
  Confirmed

Bug description:
  While trying to create an account from the Youtube scope, I was not
  able to enter my Google account confirmation code, as the keyboard
  would not display.

  To reproduce:
  - navigate to the Youtbe scope, or activate it from the scope catalog
  - scroll down to find the "Log-in to Youtube" button
  - let the trust prompt slide up, where you will be able to login to you 
Google account
  - Switch to another app and then switch back
  - Tap a text field in the login prompt

  What should happen: the OSK appears
  What happens instead: the OSK does not pop up

  This happens because focus is being given to unity8-dash, instead of
  the trusted session. This can also be reproduced using the Gmail app
  by following similar steps (without having a Google account already
  setup).

  Tested on vivid mako/r67.

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

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


[Touch-packages] [Bug 1390393] Re: It's too easy to trigger a volume notification when taking a screenshot

2014-12-09 Thread Josh Arenson
** Branch linked: lp:~josharenson/unity8/physical_keys_filter

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

Title:
  It's too easy to trigger a volume notification when taking a
  screenshot

Status in the base for Ubuntu mobile products:
  Confirmed
Status in unity8 package in Ubuntu:
  In Progress
Status in unity8 package in Ubuntu RTM:
  Triaged

Bug description:
  On Mako, I'm unable to take a screenshot (Vol up + Vol down) without
  changing the volume, which would be fine if there wasn't a
  notification appearing on the screenshot.

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

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


[Touch-packages] [Bug 1396208] [NEW] Pressing volume key doesn't restore full screen brightness

2014-11-25 Thread Josh Arenson
Public bug reported:

Steps to reproduce

1. Let device sit idle until the screen dims (not off, just dim)
2. Press a volume up/down button

Expected behavior: Screen returns to full brightness
Actual Behavior: No change in brightness

Reproduced on Nex4

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

Title:
  Pressing volume key doesn't restore full screen brightness

Status in “unity8” package in Ubuntu:
  New

Bug description:
  Steps to reproduce

  1. Let device sit idle until the screen dims (not off, just dim)
  2. Press a volume up/down button

  Expected behavior: Screen returns to full brightness
  Actual Behavior: No change in brightness

  Reproduced on Nex4

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

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


[Touch-packages] [Bug 1390393] Re: It's too easy to trigger a volume notification when taking a screenshot

2014-11-24 Thread Josh Arenson
** Changed in: unity8 (Ubuntu)
   Status: Triaged => In Progress

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

Title:
  It's too easy to trigger a volume notification when taking a
  screenshot

Status in “unity8” package in Ubuntu:
  In Progress
Status in “unity8” package in Ubuntu RTM:
  Triaged

Bug description:
  On Mako, I'm unable to take a screenshot (Vol up + Vol down) without
  changing the volume, which would be fine if there wasn't a
  notification appearing on the screenshot.

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

-- 
Mailing list: https://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   >