[Touch-packages] [Bug 1508363] Re: Coordinated migration to UITK 1.3

2015-11-01 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:music-app at revision 932, scheduled for release
in music-app, milestone 3.0

** Changed in: music-app
   Status: In Progress => Fix Committed

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

Title:
  Coordinated migration to UITK 1.3

Status in Canonical System Image:
  In Progress
Status in Ubuntu Music App:
  Fix Committed
Status in Ubuntu Notes app:
  New
Status in Ubuntu Calculator App:
  In Progress
Status in Ubuntu Calendar App:
  In Progress
Status in Ubuntu Clock App:
  In Progress
Status in Ubuntu Document Viewer App:
  In Progress
Status in Ubuntu Shorts App:
  Fix Committed
Status in Ubuntu Weather App:
  Triaged
Status in Weather:
  New
Status in address-book-app package in Ubuntu:
  In Progress
Status in calendar-app package in Ubuntu:
  Confirmed
Status in camera-app package in Ubuntu:
  Fix Released
Status in dialer-app package in Ubuntu:
  In Progress
Status in gallery-app package in Ubuntu:
  In Progress
Status in messaging-app package in Ubuntu:
  In Progress
Status in music-app package in Ubuntu:
  Confirmed
Status in reminders-app package in Ubuntu:
  Fix Committed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in ubuntu-system-settings-online-accounts package in Ubuntu:
  Fix Released
Status in ubuntu-weather-app package in Ubuntu:
  Confirmed
Status in unity8 package in Ubuntu:
  In Progress
Status in webbrowser-app package in Ubuntu:
  Fix Released

Bug description:
  The migration to 1.3 needs to happen in a coordinated way, so that
  shell and all apps we care of migrate within the same OTA window to
  reduce visual inconsistencies to a minimum.

  This bug is a means to collect all the projects affected and keep tabs
  on what's happening.

  NOTES:
  - The toolkit has the following modules:
 Ubuntu.Components 1.3
 Ubuntu.Components.ListItems 1.3
 Ubuntu.Components.Pickers 1.3
 Ubuntu.Components.Popups 1.3
 Ubuntu.Components.Styles 1.3
 Ubuntu.Components.Themes 1.3
 Ubuntu.Components.Themes.Ambiance 1.3
 Ubuntu.Components.Themes.SuruDark 1.3

  - The following modules were not altered recently:
 Ubuntu.Layouts 1.0
 Ubuntu.PerformanceMetrics 1.0

  - Theme is now theme (lowercase)
  - PageHeadStyle now has a "config" property

  In manifest.json file use:
     "framework": "ubuntu-sdk-15.04.1-qml"

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

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


[Touch-packages] [Bug 1493466] Re: [reboot][weather app] Hard to translate sentence in Ubuntu Weather App

2015-10-25 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-weather-app/reboot at revision 154,
scheduled for release in ubuntu-weather-app, milestone 2.0

** Changed in: ubuntu-weather-app
   Status: In Progress => Fix Committed

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

Title:
  [reboot][weather app] Hard to translate sentence in Ubuntu Weather App

Status in Canonical System Image:
  In Progress
Status in Ubuntu UX:
  Fix Committed
Status in Ubuntu Weather App:
  Fix Committed
Status in webbrowser-app package in Ubuntu:
  In Progress

Bug description:
  In location ../app/components/NetworkErrorStateComponent.qml:57

  there is a line:
  "Network Error"
  "Ubuntu suggests you check your network settings and try again."

  It is hard to translate such string, where Ubuntu is talking with user, and 
give him advice.
  It is very confusing, as for other core application, Ubuntu is not talking 
with user.

  I would propose some simple sentence:
  "Network Error"
  "Check your network settings and try again."

  --- --- --- --- --- ---

  UX Comment:
  Agree that the message suggested by Bartosz & Victor is more appropriate/ 
would be more easily localised.

  Message should read
  "Please check your network settings and try again"

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

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


[Touch-packages] [Bug 1395118] Re: ActionSelectionPopover does not handle the 'visible' property of actions properly

2015-08-28 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-filemanager-app at revision 458, scheduled
for release in ubuntu-filemanager-app, milestone alpha-1

** Changed in: ubuntu-filemanager-app
   Status: In Progress = Fix Committed

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

Title:
  ActionSelectionPopover does not handle the 'visible' property of
  actions properly

Status in Canonical System Image:
  Fix Released
Status in Ubuntu File Manager App:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released
Status in ubuntu-ui-toolkit source package in Vivid:
  New
Status in ubuntu-ui-toolkit package in Ubuntu RTM:
  Fix Released

Bug description:
  When setting the 'visible' property of an action in an ActionList of
  an ActionSelectionPopover to false, the delegate will not be hidden
  but instead be shown at the top of the list behind the first visible
  delegate. (Check out the screenshot.)

  Demo code (containing an outcommented workaround):

  import QtQuick 2.3
  import Ubuntu.Components 1.1
  import Ubuntu.Components.Popups 1.0
  import Ubuntu.Components.ListItems 1.0

  MainView {
  width: units.gu(50)
  height: units.gu(75)

  Page {
  title: i18n.tr(ActionSelectionPopover Fix)

  Button {
  id: button
  width: parent.width

  text: i18n.tr(Show popover)

  onClicked: {
  PopupUtils.open(actionSelectionPopoverComponent, button)
  }
  }

  Component {
  id: actionSelectionPopoverComponent

  ActionSelectionPopover {
  actions: ActionList {
  Action {
  text: Action one
  }
  Action {
  text: Action two
  }
  Action {
  text: Hidden action
  visible: false
  }
  }

  // Uncomment the following for a temporary workaround:

  //delegate: Empty {
  //id: listItem
  //Label {
  //text: listItem.text
  //anchors {
  //verticalCenter: parent.verticalCenter
  //horizontalCenter: parent.horizontalCenter
  //}
  //wrapMode: Text.Wrap
  //color: Theme.palette.normal.overlayText
  //}
  ///*! \internal */
  //onTriggered: popover.hide()
  //visible: enabled  ((action === undefined) || 
action.visible)
  //height: visible ? implicitHeight : 0
  //}
  }
  }
  }
  }

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

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


[Touch-packages] [Bug 1408015] Re: [sdk][UX] Confirmation in the header bar confusing

2015-08-12 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 329, scheduled for
release in ubuntu-clock-app, milestone 3.5

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  [sdk][UX] Confirmation in the header bar confusing

Status in Quick Memo:
  New
Status in Ubuntu Calendar App:
  New
Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu UX:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  Imagine a form of some sort, you fill a few fields of data top-down,
  and at the end of it you need to tap in the header at the top to
  save/confirm.

  Pair that with the header going off-screen to leave more screen for
  the content, you have to pull the header in first (and you need to
  know that's where the button will be).

  An example of this behaviour is the calendar app when adding/editing
  an event. One other example (although that could be improved easily by
  auto-saving the new note as soon as it's edited) is the Quick Memo
  app, where when you create a note in the first place you need to tap
  the ✓ icon, but when you're editing, it's all auto-saved and you need
  to tap 〈 to go back to the list of notes.

  I feel like we need to at least come up with clear guidance on what
  belongs in the header, and where a footer with buttons should be used
  (we have a way to stick something on top of the keyboard after all¹).

  http://developer.ubuntu.com/api/qml/sdk-1.0/Ubuntu.Components.MainView
  /#anchorToKeyboard-prop

  ProblemType: Bug
  DistroRelease: Ubuntu 15.04
  Package: qtdeclarative5-ubuntu-ui-toolkit-plugin 
1.1.1364+15.04.20141209-0ubuntu2
  Uname: Linux 3.4.67 armv7l
  ApportVersion: 2.15-0ubuntu3
  Architecture: armhf
  Date: Tue Jan  6 17:03:54 2015
  InstallationDate: Installed on 2014-12-17 (20 days ago)
  InstallationMedia: Ubuntu Vivid Vervet (development branch) - armhf 
(20141217-020204)
  SourcePackage: ubuntu-ui-toolkit
  UpgradeStatus: No upgrade log present (probably fresh install)

  --- UX comment  resolution --

  The back button in the header should never be used as a confirmation but can 
mean CANCEL and not just BACK. 
  If an action or any alterations within the content/screen have to be 
confirmed/saved then it requires a visible call to action. This call to action 
sits by default in the header unless differently specified by 
designer/developer.

  In all here described cases the UX can be improved easily by adding
  clarity to the UI and sometimes just adding a call to action.

  The header can be fixed or can go off-screen the specification for
  that lies with the designer/developer. This means if I have an
  important action in the header which I want to present to the user all
  the time, then the header stays fixed, even if the content is
  scrolled.

  Calendar app: 
  When creating a new alarm by swiping from the bottom of the screen, the tick 
(confirmation) icon should be disabled. Only after interacting with the screen, 
by changing one of the parameters for example, the tick should be enabled. This 
will signal to user that there was a change and this needs to be confirmed. 
Even more informative is a simple word instead of the tick: SAVE. The SAVE 
option is a new addition to the header and wasn't available so far. 
  This concept is already documented in the UI - Toolkit spec which is at the 
bottom of this post. If user taps back before saving then the alarm won't be 
created. Additionally there can be visual feedback by adding the feedback 
bubble to the UI.
  If the user taps back before saving the feedback bubble states, e.g. Alarm 
not saved. If the tick icon is tapped, it can state Alarm saved (see 
Notification spec).
  In the Repeat section the select all icon has to move one to the left and a 
tick or save added. The behaviour will then follow as described above.

  Note app:
  There is nothing wrong with the note app approach but it is a custom made 
behaviour which is up to the developer. This person decided not to use our 
pattern and include a tick or SAVE into the header. There are many note taking 
apps on iOS which are not using their patterns either. This doesn't mean they 
are bad, they just work differently. 

  While it is ok to use a Send Order or a NEXT at the end of a form,
  for some instances and apps it won't be efficient. This means 
  CANCEL/BACK and CONFIRM (tick/save/done) can sit in the header but it
  is not possible to control apps which don't want to user out UI-
  Toolkit, hence the other solutions will exist too.

  We are constantly improving the UI-Toolit and I will add the
  footer/toolbar idea to potential new projects for design.

  Please see for reference the notification spec:
  

[Touch-packages] [Bug 1392276] Re: TextArea does not export TextEdit's textDocument property

2015-08-11 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:reminders-app at revision 476, scheduled for
release in reminders-app, milestone 2014-11-27

** Changed in: reminders-app
   Status: In Progress = Fix Committed

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

Title:
  TextArea does not export TextEdit's textDocument property

Status in Ubuntu Notes app:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released
Status in ubuntu-ui-toolkit source package in Vivid:
  New

Bug description:
  This would be needed for advanced RTF formatting like this:
  http://i.imgur.com/dejnDU7.png

  Right now, falling back to plain TextEdit is required.

  This is a feature to improve the UX of the Reminders core app, so that
  it can use the Ubuntu text selection and cursor to be better
  integrated.

  In terms of reusing the code that the Reminders app provides to have a
  full QML API, while technically possible, would require a non-trivial
  amount of work to make it generic enough for use for other apps. The
  features of the Reminders text editor are tightly coupled with the
  Evernote API.

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

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


[Touch-packages] [Bug 1440583] Re: calendar-app is generating invalid RECUR values in RRULE property

2015-08-07 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 707, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  calendar-app is generating invalid RECUR values in RRULE property

Status in Ubuntu Calendar App:
  Fix Committed
Status in qtorganizer5-eds package in Ubuntu:
  Confirmed

Bug description:
  I created a calendar event for April 24 at 1:35 PM, with a reminder
  the day before. This is the
  ~/.local/share/evolution/calendar/system/calendar.ics file that was
  created, note the X-LIC-ERROR.

  Tested with calendar-app 0.4.600 on krillin rtm r263.

  BEGIN:VCALENDAR
  CALSCALE:GREGORIAN
  PRODID:-//Ximian//NONSGML Evolution Calendar//EN
  VERSION:2.0
  X-EVOLUTION-DATA-REVISION:2015-04-05T19:06:51.703615Z(2)
  BEGIN:VEVENT
  UID:20150405T190651Z-4388-32011-1709-1@ubuntu-phablet
  DTSTAMP:20150405T190651Z
  DTSTART:20150424T183500Z
  DTEND:20150424T193500Z
  X-LIC-ERROR;X-LIC-ERRORTYPE=VALUE-PARSE-ERROR:Can't parse as RECUR value
   in RRULE property. Removing entire property: ERROR: No Value
  SUMMARY:London Sprint Flight
  DESCRIPTION:Time to pack!
  CREATED:20150405T190651Z
  LAST-MODIFIED:20150405T190651Z
  BEGIN:VALARM
  X-EVOLUTION-ALARM-UID:20150405T190651Z-4388-32011-1709-2@ubuntu-phablet
  ACTION:AUDIO
  TRIGGER;VALUE=DURATION;RELATED=START:-P1D
  REPEAT:3
  DURATION:PT2M
  END:VALARM
  BEGIN:VALARM
  X-EVOLUTION-ALARM-UID:20150405T190651Z-4388-32011-1709-3@ubuntu-phablet
  ACTION:DISPLAY
  DESCRIPTION:London Sprint Flight
  TRIGGER;VALUE=DURATION;RELATED=START:-P1D
  REPEAT:3
  DURATION:PT2M
  END:VALARM
  END:VEVENT
  END:VCALENDAR

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

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


[Touch-packages] [Bug 1347836] Re: Events saved to birthdays calendar don't appear in timeline

2015-07-24 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 700, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  Events saved to birthdays calendar don't appear in timeline

Status in Ubuntu Calendar App:
  Fix Committed
Status in qtorganizer5-eds package in Ubuntu:
  Fix Released
Status in qtorganizer5-eds source package in Vivid:
  Confirmed

Bug description:
  If I create a new event and select the birthday and anniversaries
  calendar, I cannot see the event in the timeline. This is without
  syncing any google calendars; merely the default 2 calendars.

  The log displays this error when attempting to save:

  Fail to create items: Cannot create calendar object: Permission denied

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

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


[Touch-packages] [Bug 1426519] Re: Need a mechanism for specifying what happens when an ical menuitem is clicked

2015-07-23 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 697, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  Need a mechanism for specifying what happens when an ical menuitem is
  clicked

Status in Ubuntu Calendar App:
  Fix Committed
Status in Ubuntu Clock App:
  Triaged
Status in indicator-datetime package in Ubuntu:
  Confirmed
Status in qtorganizer5-eds package in Ubuntu:
  Fix Released
Status in reminders-app package in Ubuntu:
  Confirmed
Status in indicator-datetime source package in Vivid:
  New
Status in qtorganizer5-eds source package in Vivid:
  New

Bug description:
  indicator-datetime needs a way to dispatch an arbitrary URL when a
  user clicks on an ical event menuitem.

  In practice, datetime currently has clock-app hardwired for
  dispatching alarms (dispatch_url('appid://com.ubuntu.clock/clock
  /current-user-version')) and calendar-app for everything else
  (dispatch_url('appid://com.ubuntu.calendar/calendar/current-user-
  version')).

  There are two use cases that can be supported by datetime handling the
  URL property http://www.kanzaki.com/docs/ical/url.html:

  (1) Clicking on an alarm menuitem opens up clock-app to that specific
  alarm, rather than to clock-app's main page. Clock-app could specify
  the information it needs in the URL, then open the right page when
  passed that information later. indicator-datetime would act as a
  simple pass-through.

  (2) non-calendar, non-alarm items such as from the reminders app as
  requested by mzanetti. The pattern would be the same as clock-app:
  Reminders would add whatever URL it wants, then datetime would act as
  a simple pass-through. This is preferable to adding more special cases
  to indicator-datetime.

  See also related bug https://bugs.launchpad.net/ubuntu/+source
  /indicator-datetime/+bug/1431384 which discusses abstracting out the
  icon shown in ical events' menuitems

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

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


[Touch-packages] [Bug 1447995] Re: [Document-Viewer] Re-enable swipe gestures of list items

2015-07-19 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-docviewer-app at revision 174, scheduled
for release in ubuntu-docviewer-app, milestone 2014-10-30

** Changed in: ubuntu-docviewer-app
   Status: In Progress = Fix Committed

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

Title:
  [Document-Viewer] Re-enable swipe gestures of list items

Status in Ubuntu Document Viewer App:
  Fix Committed
Status in Ubuntu UX:
  Fix Committed
Status in ubuntu-ui-toolkit package in Ubuntu:
  New

Bug description:
  STEP TO REPRODUCE THIS ISSUE:
  1. Open Document Viewer. The list of documents in $HOME/Documents will be 
shown.
  2. Delete an entry in the list (N.B. not the grid), by swiping to right the 
corrisponding list item.

  WHAT HAPPENS:
  The list item can not be swipped

  WHAT SHOULD HAPPENS:
  The list item can be swipped to right, and a red-coloured action is shown.
  Currently, to delete an item we need to switch to the multi-selection mode.

  DESIRED SOLUTION:
  See Option A in the comment #4.

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

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


[Touch-packages] [Bug 1450767] Re: [clock] Snooze time more than 10 minutes

2015-07-10 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 293, scheduled for
release in ubuntu-clock-app, milestone 3.4

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  [clock] Snooze time more than 10 minutes

Status in Ubuntu Clock App:
  Fix Committed
Status in Ubuntu UX:
  Fix Committed
Status in indicator-datetime package in Ubuntu:
  Invalid

Bug description:
  Can we have snooze times that are more than 10 minutes? Perhaps full
  flexibility in specifying a duration (some times I like to use 15m,
  but I guess more than 30 or 60 minutes would be too much).

  
https://docs.google.com/presentation/d/1JvDyhsW17d1-Mz8OY1YMBKwfRI2z9qgyRjbujEsxEMk/edit?pli=1#slide=id.g18895458d_024

  [UX Comment]
  As it seems unlikely that we will be able to implement snooze on/off  snooze 
duration for individual alarms, but do have an application-wide setting that 
allows snooze duration to be set (but not disabled), I'd recommend the options 
relating to snooze in application settings be changed to the following:

  - No snooze
  - 5 minutes
  - 10 minutes
  - 15 minutes

  This way the list is still short (four options, as it is currently)
  but the options provided are likely to be more useful (current 2
  minute snooze doesn't seem very useful, nor does the difference
  between 4 mins and 5 min snooze periods).

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

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


[Touch-packages] [Bug 1437305] Re: Wrong date day icon display and one day before events day in month view

2015-06-19 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 671, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  Wrong date day icon display and one day before events day in month
  view

Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in qtorganizer5-eds package in Ubuntu:
  Confirmed

Bug description:
  All day events display one day too early in month view.

  Create an all day event on 27th March 2015, move month view and the
  dot is against 26th March.  Can be corrected by changing all day event
  to span 27th to 28th March but now event displays over two days on day
  view. Icon displays wrong date: next day date

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

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


[Touch-packages] [Bug 1457424] Re: Please update icon (May 2015)

2015-06-01 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 655, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  Please update icon (May 2015)

Status in Camera App:
  New
Status in the base for Ubuntu mobile products:
  New
Status in Dekko:
  Fix Committed
Status in Gallery App:
  New
Status in Media Player App:
  New
Status in Music application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Notes app:
  Fix Committed
Status in Default calculator application for Ubuntu devices:
  Fix Committed
Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  Fix Committed
Status in Themes for Ubuntu:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  In Progress
Status in address-book-app package in Ubuntu:
  Confirmed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in qtcreator-plugin-ubuntu package in Ubuntu:
  Confirmed
Status in ubuntu-system-settings package in Ubuntu:
  Fix Released
Status in webbrowser-app package in Ubuntu:
  Confirmed

Bug description:
  New icons are available. Please update app to new icon. Note the icon
  inside the app will need updating as well as the icon in the store
  (when uploaded).

  256x256 and 512x512 Icons attached in zip file.

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

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


[Touch-packages] [Bug 1457424] Re: Please update icon (May 2015)

2015-05-26 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-rssreader-app at revision 388, scheduled
for release in ubuntu-rssreader-app, milestone alpha-1

** Changed in: ubuntu-rssreader-app
   Status: In Progress = Fix Committed

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

Title:
  Please update icon (May 2015)

Status in Camera App:
  New
Status in the base for Ubuntu mobile products:
  New
Status in Dekko:
  Fix Committed
Status in Gallery App:
  New
Status in Media Player App:
  New
Status in Music application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Notes app:
  Fix Committed
Status in Default calculator application for Ubuntu devices:
  Fix Committed
Status in Calendar application for Ubuntu devices:
  In Progress
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  Fix Committed
Status in Themes for Ubuntu:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  In Progress
Status in address-book-app package in Ubuntu:
  New
Status in dialer-app package in Ubuntu:
  New
Status in qtcreator-plugin-ubuntu package in Ubuntu:
  New

Bug description:
  New icons are available. Please update app to new icon. Note the icon
  inside the app will need updating as well as the icon in the store
  (when uploaded).

  256x256 and 512x512 Icons attached in zip file.

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

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


[Touch-packages] [Bug 1419001] Re: Reminders trigger at the time of the event and not before by default

2015-05-22 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-calendar-app at revision 650, scheduled for
release in ubuntu-calendar-app, milestone rtm14

** Changed in: ubuntu-calendar-app
   Status: In Progress = Fix Committed

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

Title:
  Reminders trigger at the time of the event and not before by default

Status in the base for Ubuntu mobile products:
  Confirmed
Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in indicator-datetime package in Ubuntu:
  Fix Released
Status in qtorganizer5-eds package in Ubuntu:
  Invalid

Bug description:
  Sync of google calendar. The Google calendar setting is set by default
  to notify 10 min prior to all meetings.

  Is it possible to get this default notification time from google with the 
sync?
  or can we add a setting for a default notification time in the calendar app?

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

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


[Touch-packages] [Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-04-14 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 251, scheduled for
release in ubuntu-clock-app, milestone 3.3

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  [SDK] Bottom edge header improvement

Status in Dekko:
  Fix Released
Status in Calendar application for Ubuntu devices:
  New
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Document Viewer application for Ubuntu devices:
  Fix Released
Status in Ubuntu UX bugs:
  Fix Committed
Status in address-book-app package in Ubuntu:
  Confirmed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in messaging-app package in Ubuntu:
  Confirmed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  When user does a bottom edge gesture to show a new view (Address Book,
  Dialer, Clock, etc) the new header should never have a chevron
  pointing left, as it seems to suggest the wrong direction for the
  movement.

  The header of the new View should always have a chevron pointing down.
  Also, it should allow people using a gesture and dismiss the new
  screen by dragging or swiping the [chevron  title area of the header]
  downward

  UX here:
  
https://www.dropbox.com/s/ypmhej7ie2hrc9a/down_chevron_for_manage_dash_01%28wireframe%29.tiff?dl=0

  VD:
  https://www.dropbox.com/s/1wuihy8tf7no7iw/Music_Down_Chevron.jpg?dl=0

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

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


[Touch-packages] [Bug 1432696] Re: [SDK] Bottom edge header improvement

2015-04-12 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-docviewer-app at revision 117, scheduled
for release in ubuntu-docviewer-app, milestone 2014-10-30

** Changed in: ubuntu-docviewer-app
   Status: In Progress = Fix Committed

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

Title:
  [SDK] Bottom edge header improvement

Status in Dekko:
  Fix Released
Status in Calendar application for Ubuntu devices:
  New
Status in Clock application for Ubuntu devices:
  Triaged
Status in Document Viewer application for Ubuntu devices:
  Fix Committed
Status in Ubuntu UX bugs:
  Fix Committed
Status in address-book-app package in Ubuntu:
  Confirmed
Status in dialer-app package in Ubuntu:
  Confirmed
Status in messaging-app package in Ubuntu:
  Confirmed
Status in ubuntu-clock-app package in Ubuntu:
  Confirmed
Status in ubuntu-ui-toolkit package in Ubuntu:
  Confirmed

Bug description:
  When user does a bottom edge gesture to show a new view (Address Book,
  Dialer, Clock, etc) the new header should never have a chevron
  pointing left, as it seems to suggest the wrong direction for the
  movement.

  The header of the new View should always have a chevron pointing down.
  Also, it should allow people using a gesture and dismiss the new
  screen by dragging or swiping the [chevron  title area of the header]
  downward

  UX here:
  
https://www.dropbox.com/s/ypmhej7ie2hrc9a/down_chevron_for_manage_dash_01%28wireframe%29.tiff?dl=0

  VD:
  https://www.dropbox.com/s/1wuihy8tf7no7iw/Music_Down_Chevron.jpg?dl=0

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

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


[Touch-packages] [Bug 1362341] Re: OneTime alarms are not automatically dismissed or delete after they are triggered

2015-01-21 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 188, scheduled for
release in ubuntu-clock-app, milestone ota-1

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  OneTime alarms are not automatically dismissed or delete after they
  are triggered

Status in the base for Ubuntu mobile products:
  Fix Released
Status in The Date and Time Indicator:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in indicator-datetime package in Ubuntu:
  Fix Released
Status in ubuntu-clock-app package in Ubuntu:
  New
Status in indicator-datetime package in Ubuntu RTM:
  Fix Released

Bug description:
  Steps to reproduce:
  1. Create a one time alarm to ring in a few minutes
  2. Let the alarm ring
  3. Dismiss the alarm

  What happens:
  The OneTime alarm is still shown as enabled and as a result shows the wrong 
status in the clock app. The alarm is no longer shown in the indicator-datetime.

  What should happen:
  The OneTime alarm is either disabled or deleted from the alarm model.

  The clock app cannot disable the alarm since most likely the clock app
  is not even open at the time the alarm is triggered. Since the alarm
  is no longer shown in the indicator-datetime, my intuition tells me
  that indicator-datetime and EDS did its job. Its now up to the SDK
  Alarms API to update the alarm model correctly.

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

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


[Touch-packages] [Bug 1383870] Re: [phone-app] + [messaging-app] + [address-book-app] list tug actions should collapse after user moves view

2015-01-09 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:music-app at revision 773, scheduled for release
in music-app, milestone music-app-14.10-week-40

** Changed in: music-app
   Status: In Progress = Fix Committed

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

Title:
  [phone-app] + [messaging-app] + [address-book-app] list tug actions
  should collapse after user moves view

Status in Address Book App:
  New
Status in Dialer app for Ubuntu Touch:
  New
Status in Messaging App:
  New
Status in Music application for Ubuntu devices:
  Fix Committed
Status in Ubuntu UX bugs:
  Fix Committed
Status in address-book-app package in Ubuntu:
  New
Status in dialer-app package in Ubuntu:
  New
Status in messaging-app package in Ubuntu:
  New
Status in ubuntu-ui-toolkit package in Ubuntu:
  Fix Released

Bug description:
  build r120

  Steps to reproduce:
  1. open phone app
  2. carry out a bottom edge swipe to access your RECENT
  3. swipe any list item to the left or right
  4. now scroll your list view a little bit down or up, make sure the list item 
actions stay in view

  Actual Result: the actions remain on the screen, they only collapse if
  it hides behind the header or bottom of the view

  Expected result: if user starts to scroll the list view while a list item 
shows additional actions, the list item should collapse.
  Users are carrying out a different actions in that case and are likely not 
being interested anymore in the revealed list item actions.

  Same behaviour applies for the messaging app and the address-book-app.

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

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


[Touch-packages] [Bug 1383042] Re: Newly added locations display strange text rather than city name

2014-11-10 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-weather-app at revision 387, scheduled for
release in ubuntu-weather-app, milestone alpha-1

** Changed in: ubuntu-weather-app
   Status: In Progress = Fix Committed

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

Title:
  Newly added locations display strange text rather than city name

Status in Weather application for Ubuntu devices:
  Fix Committed
Status in “ubuntu-ui-toolkit” package in Ubuntu:
  New

Bug description:
  Started the weather app, it had two previously defined locations.
  I added two new locations, the first displayed a file:// url in the header, 
the second display context something
  After restarting the app the strings were correct. Deleting a city and 
re-adding worked correctly.

  I deleted one city then added it back, and the two new cities are reversed, 
the show each others weather data rather than their own.
  Not sure if this is related or needs a separate bug.
  Restarting the app again fixed this issue as well.

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

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


[Touch-packages] [Bug 1357945] Re: [bottom edge] Current bottom edge hint timeout makes it difficult to read the bottom edge action

2014-10-09 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 131, scheduled for
release in ubuntu-clock-app, milestone rtm

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  [bottom edge] Current bottom edge hint timeout makes it difficult to
  read the bottom edge action

Status in Address Book App:
  Fix Released
Status in Dialer app for Ubuntu Touch:
  Fix Released
Status in Quick Memo:
  In Progress
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Ubuntu UX bugs:
  Fix Committed
Status in “address-book-app” package in Ubuntu:
  Fix Released
Status in “dialer-app” package in Ubuntu:
  Fix Released

Bug description:
  Currently when you open the address book, dialer app, clock app etc,
  the bottom edge hint is visible and shows what the action is. This
  hint is hidden after a few seconds. This makes it difficult for the
  user to understand what the bottom edge does if he didn't read the
  bottom edge text in time.

  In the clock app design at
  
https://docs.google.com/presentation/d/1Kkl7xT8BYo9mT8i3IXh6rPrDlNg6cBxTajahlRYIGlI/edit#slide=id.g18587dd40_029
  (Slide 4), the bottom edge text is supposed to show the time to the
  next alarm. By hiding this hint, it renders that text useless since it
  is hidden.

  -- Solution --
  - Hint tab is always displayed by default
  - When interacting with the content on screen it collapses (e.g. dialler - 
typing numbers, address book, clock - scrolling)
  - When user stops interacting, it reappears after 5 seconds

  https://docs.google.com/a/canonical.com/presentation/d
  /1YuB3SW5UKI5t9ox4Gc9snsOnFAr1j0PTFjbtK-
  eLO8w/edit#slide=id.g386935507_0225

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

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


[Touch-packages] [Bug 1318008] Re: Core apps .desktop files do not include translated strings

2014-09-19 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 106, scheduled for
release in ubuntu-clock-app, milestone rtm

** Changed in: ubuntu-clock-app
   Status: Fix Released = Fix Committed

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

Title:
  Core apps .desktop files do not include translated strings

Status in Address Book App:
  Fix Released
Status in Camera App:
  Fix Released
Status in Dialer app for Ubuntu Touch:
  Fix Released
Status in Dropping Letters:
  Invalid
Status in Gallery App:
  In Progress
Status in Media Player App:
  Fix Released
Status in Messaging App:
  Fix Released
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  In Progress
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Clock App reboot series:
  Fix Committed
Status in File Manager application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  Fix Committed
Status in Terminal application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Translations:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Released
Status in Web Browser App:
  Fix Released
Status in “camera-app” package in Ubuntu:
  Fix Released
Status in “dialer-app” package in Ubuntu:
  Fix Released
Status in “messaging-app” package in Ubuntu:
  Fix Released
Status in “ubuntu-system-settings” package in Ubuntu:
  Fix Released
Status in “webbrowser-app” package in Ubuntu:
  Fix Released

Bug description:
  As other apps cannot know where .mo files might be located for click
  packages, and unity8 apparently does not know about X-Ubuntu-Gettext-
  Domain for deb packages, the .desktop files for any applications will
  need to have their translations merged back into the .desktop file
  itself. This at a minimum should include the following .desktop
  fields:

  Name
  Comment
  Keywords (semicolon-separated list of strings)

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

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


[Touch-packages] [Bug 1370146] Re: Adjust header behaviour UI in multi select mode

2014-09-19 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app at revision 108, scheduled for
release in ubuntu-clock-app, milestone rtm

** Changed in: ubuntu-clock-app
   Status: In Progress = Fix Committed

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

Title:
  Adjust header behaviour  UI in multi select mode

Status in Address Book App:
  New
Status in Dialer app for Ubuntu Touch:
  New
Status in Messaging App:
  New
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Ubuntu UI Toolkit:
  Confirmed
Status in Ubuntu UX bugs:
  Fix Released
Status in “address-book-app” package in Ubuntu:
  New
Status in “dialer-app” package in Ubuntu:
  New
Status in “messaging-app” package in Ubuntu:
  New
Status in “ubuntu-ui-toolkit” package in Ubuntu:
  New

Bug description:
  Steps to reproduce:

  1. Open Messaging app (or Address Book app, Phone app), make sure you have a 
list in your messages view
  2. Long press on any of the list items

  Actual Result:
  3. Header is changing and shows an X button on the left hand side and two 
action buttons on the right hand side. Selection checkboxes appear from the 
left hand side.

  Expected result - desired solution:
  - The header should display a BACK button instead of the X on the left hand 
side, same as we have in all other headers
  - Remove the change in the background colour when a list item is selected, 
change in the colour of the checkbox is enough
  - Add labels for all visible actions in this mode in the header, including 
BACK for the back button
  - Tapping on the BACK in this mode, cancels the multi-select mode and does 
NOT navigate back to the previous view
  - There is no title in this header

  Please see attached wireframe for reference. This change applies
  across all apps which use a multi select in their list views.

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

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


[Touch-packages] [Bug 1318008] Re: Core apps .desktop files do not include translated strings

2014-09-18 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-rssreader-app at revision 313, scheduled
for release in ubuntu-rssreader-app, milestone alpha-1

** Changed in: ubuntu-rssreader-app
   Status: In Progress = Fix Committed

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

Title:
  Core apps .desktop files do not include translated strings

Status in Address Book App:
  Fix Released
Status in Camera App:
  Fix Released
Status in Dialer app for Ubuntu Touch:
  Fix Released
Status in Dropping Letters:
  Invalid
Status in Gallery App:
  In Progress
Status in Media Player App:
  Fix Released
Status in Messaging App:
  Fix Released
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  In Progress
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Released
Status in Ubuntu Clock App reboot series:
  In Progress
Status in File Manager application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  Fix Committed
Status in Terminal application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Translations:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Released
Status in Web Browser App:
  Fix Released
Status in “camera-app” package in Ubuntu:
  Fix Released
Status in “dialer-app” package in Ubuntu:
  Fix Released
Status in “messaging-app” package in Ubuntu:
  Fix Released
Status in “ubuntu-system-settings” package in Ubuntu:
  Fix Released
Status in “webbrowser-app” package in Ubuntu:
  Fix Released

Bug description:
  As other apps cannot know where .mo files might be located for click
  packages, and unity8 apparently does not know about X-Ubuntu-Gettext-
  Domain for deb packages, the .desktop files for any applications will
  need to have their translations merged back into the .desktop file
  itself. This at a minimum should include the following .desktop
  fields:

  Name
  Comment
  Keywords (semicolon-separated list of strings)

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

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


[Touch-packages] [Bug 1366586] Re: Music app stops playing when an app plays a sound

2014-09-13 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:dropping-letters at revision 61, scheduled for
release in dropping-letters, milestone Unknown

** Changed in: dropping-letters
   Status: In Progress = Fix Committed

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

Title:
  Music app stops playing when an app plays a sound

Status in Camera App:
  Invalid
Status in Dropping Letters:
  Fix Committed
Status in Media Hub:
  Invalid
Status in Music application for Ubuntu devices:
  Invalid
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in “qtubuntu-camera” package in Ubuntu:
  Fix Released

Bug description:
  on rtm rev 27 music is paused when taking a photo

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

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


[Touch-packages] [Bug 1341681] Re: Autopilot tests should stop using deprecated emulators module

2014-09-03 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-terminal-app at revision 133, scheduled for
release in ubuntu-terminal-app, milestone alpha-1

** Changed in: ubuntu-terminal-app
   Status: In Progress = Fix Committed

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

Title:
  Autopilot tests should stop using deprecated emulators module

Status in Dialer app for Ubuntu Touch:
  In Progress
Status in Dropping Letters:
  New
Status in Music application for Ubuntu devices:
  Fix Committed
Status in Notes App:
  New
Status in Ubuntu Reminders app:
  Fix Released
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  In Progress
Status in Calendar application for Ubuntu devices:
  Fix Committed
Status in Clock application for Ubuntu devices:
  Fix Released
Status in File Manager application for Ubuntu devices:
  New
Status in RSS Feed Reader application for Ubuntu devices:
  New
Status in Terminal application for Ubuntu devices:
  Fix Committed
Status in Weather application for Ubuntu devices:
  New
Status in “dialer-app” package in Ubuntu:
  New

Bug description:
  Autopilot tests should stop using deprecated emulators module. Instead
  the new custom_proxy_objects modules should be used and called
  directly.

  Please note until https://bugs.launchpad.net/ubuntu-ui-
  toolkit/+bug/1341679 is fixed, the deprecation warning will still
  appear.

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

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


[Touch-packages] [Bug 1318008] Re: Core apps .desktop files do not include translated strings

2014-09-03 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-filemanager-app at revision 269, scheduled
for release in ubuntu-filemanager-app, milestone alpha-1

** Changed in: ubuntu-filemanager-app
   Status: In Progress = Fix Committed

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

Title:
  Core apps .desktop files do not include translated strings

Status in Address Book App:
  Fix Released
Status in Camera App:
  In Progress
Status in Dialer app for Ubuntu Touch:
  Confirmed
Status in Dropping Letters:
  Invalid
Status in Gallery App:
  In Progress
Status in Media Player App:
  In Progress
Status in Messaging App:
  Triaged
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  In Progress
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Released
Status in Ubuntu Clock App reboot series:
  In Progress
Status in File Manager application for Ubuntu devices:
  Fix Committed
Status in RSS Feed Reader application for Ubuntu devices:
  New
Status in Terminal application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Translations:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  Fix Released
Status in “camera-app” package in Ubuntu:
  New
Status in “dialer-app” package in Ubuntu:
  Triaged
Status in “messaging-app” package in Ubuntu:
  Triaged
Status in “ubuntu-system-settings” package in Ubuntu:
  Triaged
Status in “webbrowser-app” package in Ubuntu:
  Fix Released

Bug description:
  As other apps cannot know where .mo files might be located for click
  packages, and unity8 apparently does not know about X-Ubuntu-Gettext-
  Domain for deb packages, the .desktop files for any applications will
  need to have their translations merged back into the .desktop file
  itself. This at a minimum should include the following .desktop
  fields:

  Name
  Comment
  Keywords (semicolon-separated list of strings)

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

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


[Touch-packages] [Bug 1272337] Re: EDS reverts alarm status immediately

2014-08-20 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app/reboot at revision 62, scheduled
for release in ubuntu-clock-app, milestone rtm

** Changed in: ubuntu-clock-app
   Status: Won't Fix = Fix Committed

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

Title:
  EDS reverts alarm status immediately

Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Clock App reboot series:
  In Progress
Status in Ubuntu UI Toolkit:
  New
Status in “qtorganizer5-eds” package in Ubuntu:
  Invalid

Bug description:
  The clock app provides switches to enable/disable individual alarms.
  However sometimes, I have noticed that on disabling an alarm, it
  immediately enables it again. Multiple tries to disable the alarm does
  not help. Again the key thing to remember here is that this does not
  happen everytime but only sometime. I have not found a reliable way to
  reproduce the issue. So you may have to do a bit of trial and error to
  confirm this bug.

  Steps to reproduce:
  1. Open clock app and navigate to alarm tab
  2. Open toolbar and select Add alarm
  3. Set any alarm (single or recurring)
  4. Save the alarm
  5. Attempt to set the alarm to disable by clicking the switch next to the new 
alarm

  What happens sometimes:
  The alarm is enabled again immediately by the system

  What should happen
  Since the user can toggle the alarm in the app, it is expected that the alarm 
can be turned off (so it is seen as disabled in the Upcoming settings menu tab)

  Video showing the issue
  http://www.youtube.com/watch?v=Z5pkTq6V2vsfeature=youtu.be

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

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


[Touch-packages] [Bug 1318997] Re: [clock] Provide a way to change alarm sound

2014-08-18 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-clock-app/reboot at revision 56, scheduled
for release in ubuntu-clock-app, milestone rtm

** Changed in: ubuntu-clock-app
   Status: Won't Fix = Fix Committed

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

Title:
  [clock] Provide a way to change alarm sound

Status in The Date and Time Indicator:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Clock App reboot series:
  In Progress
Status in Ubuntu UX bugs:
  Fix Released
Status in “indicator-datetime” package in Ubuntu:
  Fix Released

Bug description:
  The alarms API provides to way to set different alarm sounds for every
  alarm. Let's provide that feature to the users so that they can change
  the alarm sound while creating an alarm.

To manage notifications about this bug go to:
https://bugs.launchpad.net/indicator-datetime/+bug/1318997/+subscriptions

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


[Touch-packages] [Bug 1325626] Re: Inline translations from .desktop files are not loaded

2014-08-16 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-weather-app at revision 335, scheduled for
release in ubuntu-weather-app, milestone alpha-1

** Changed in: ubuntu-weather-app
   Status: In Progress = Fix Committed

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

Title:
  Inline translations from .desktop files are not loaded

Status in Camera App:
  Confirmed
Status in Gallery App:
  New
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  New
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Released
Status in File Manager application for Ubuntu devices:
  New
Status in RSS Feed Reader application for Ubuntu devices:
  New
Status in Terminal application for Ubuntu devices:
  New
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in “unity-scope-click” package in Ubuntu:
  Invalid

Bug description:
  Using image #60, and the Calculator app as an example, the inline
  translations of its desktop files are not loaded.

  Steps to reproduce:

  1. Set the system locale (System Settings  Language  Text) to Spanish or 
Simplified Chinese
  2. Reboot the phone
  Go to My Apps on the click scope

  Actual:
  - Calculator appears untranslated beneath the Calculator icon

  Expected:
  - Calculator appears translated beneath the Calculator icon (if inline 
translations are available in its .desktop file)

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

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


[Touch-packages] [Bug 1318008] Re: Core apps .desktop files do not include translated strings

2014-08-16 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-weather-app at revision 335, scheduled for
release in ubuntu-weather-app, milestone alpha-1

** Changed in: ubuntu-weather-app
   Status: In Progress = Fix Committed

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

Title:
  Core apps .desktop files do not include translated strings

Status in Address Book App:
  Fix Released
Status in Camera App:
  In Progress
Status in Dialer app for Ubuntu Touch:
  Fix Released
Status in Dropping Letters:
  Invalid
Status in Gallery App:
  In Progress
Status in Media Player App:
  In Progress
Status in Messaging App:
  Fix Released
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  In Progress
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Released
Status in File Manager application for Ubuntu devices:
  In Progress
Status in RSS Feed Reader application for Ubuntu devices:
  New
Status in Terminal application for Ubuntu devices:
  In Progress
Status in Ubuntu Translations:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  In Progress
Status in “dialer-app” package in Ubuntu:
  Fix Released
Status in “messaging-app” package in Ubuntu:
  Fix Released

Bug description:
  As other apps cannot know where .mo files might be located for click
  packages, the .desktop files for any applications packaged as clicks
  will need to have their translations merged back into the .desktop
  file itself. This at a minimum should include the following .desktop
  fields:

  Name
  Comment
  Keywords (semicolon-separated list of strings)

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

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


[Touch-packages] [Bug 1318008] Re: Core apps .desktop files do not include translated strings

2014-08-16 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:ubuntu-terminal-app at revision 115, scheduled for
release in ubuntu-terminal-app, milestone alpha-1

** Changed in: ubuntu-terminal-app
   Status: In Progress = Fix Committed

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

Title:
  Core apps .desktop files do not include translated strings

Status in Address Book App:
  Fix Released
Status in Camera App:
  In Progress
Status in Dialer app for Ubuntu Touch:
  Fix Released
Status in Dropping Letters:
  Invalid
Status in Gallery App:
  In Progress
Status in Media Player App:
  In Progress
Status in Messaging App:
  Fix Released
Status in Music application for Ubuntu devices:
  Fix Released
Status in Notes App:
  In Progress
Status in Sudoku game for Ubuntu Touch:
  New
Status in Calculator application for Ubuntu devices:
  Fix Released
Status in Calendar application for Ubuntu devices:
  Fix Released
Status in Clock application for Ubuntu devices:
  Fix Released
Status in Ubuntu Clock App reboot series:
  In Progress
Status in File Manager application for Ubuntu devices:
  In Progress
Status in RSS Feed Reader application for Ubuntu devices:
  New
Status in Terminal application for Ubuntu devices:
  Fix Committed
Status in Ubuntu Translations:
  Triaged
Status in Weather application for Ubuntu devices:
  Fix Committed
Status in Web Browser App:
  In Progress
Status in “dialer-app” package in Ubuntu:
  Fix Released
Status in “messaging-app” package in Ubuntu:
  Fix Released

Bug description:
  As other apps cannot know where .mo files might be located for click
  packages, the .desktop files for any applications packaged as clicks
  will need to have their translations merged back into the .desktop
  file itself. This at a minimum should include the following .desktop
  fields:

  Name
  Comment
  Keywords (semicolon-separated list of strings)

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

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


[Touch-packages] [Bug 1351041] Re: App is unable to retrieve notes

2014-08-06 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:reminders-app at revision 211, scheduled for
release in reminders-app, milestone 0.4

** Changed in: reminders-app
   Status: Triaged = Fix Committed

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

Title:
  App is unable to retrieve notes

Status in Accounts QML Module:
  New
Status in Ubuntu Reminders app:
  Fix Committed
Status in “accounts-qml-module” package in Ubuntu:
  New

Bug description:
  If you have notes online you can now no longer retrieve them.

  STEP:
  1 Open settings app
  2 enable accounts
  3 add evernote account
  4 open reminders

  Note the No notes page is displayed.

  # Notes

  - Something changed between images 157 and 158 [1] that caused this bug to 
surface. If I downgrade to image 157, notes are still retrieved as expected. 
Using Reminders 0.5.203 in both cases.
  - The AppArmor denials pointed out in the comments are a red herring: when 
the app is functioning normally, we get these denials too
  - Some debugging with mardy and this log [2] indicate that it's due to the 
authentication params not being returned in the onAuthenticated handler
  - This needs to be fixed in Online Accounts, but as a workaround, we can get 
the required params from the app just before calling the authenticate() 
function in reminders.qml

  [1] http://people.canonical.com/~lzemczak/landing-team/158.commitlog
  [2] http://pastebin.ubuntu.com/7968853/

To manage notifications about this bug go to:
https://bugs.launchpad.net/accounts-qml-module/+bug/1351041/+subscriptions

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


[Touch-packages] [Bug 1350529] Re: [music-app] Trunk fails autopilot tests on jenkins

2014-08-06 Thread Ubuntu Phone Apps Jenkins Bot
Fix committed into lp:music-app at revision 554, scheduled for release
in music-app, milestone 1.0

** Changed in: music-app
   Status: In Progress = Fix Committed

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

Title:
  [music-app] Trunk fails autopilot tests on jenkins

Status in Media Scanner v2:
  New
Status in Music application for Ubuntu devices:
  Fix Committed
Status in “mediascanner2” package in Ubuntu:
  Fix Released

Bug description:
  Trunk is failing autopilot tests on jenkins [0]

  If you watch the failure videos you can see a blank album/artist/genre
  in the models which is causing the tests to fail. This is likely due
  to a change mediascanner2.

  0 - http://91.189.93.70:8080/job/music-app-ci/965/console

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

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