========
https://hg.mozilla.org/integration/gaia-central/rev/fe9fdd5d8bb5
Author: John Ford <john@johnford.info>
Desc: Revert "Merge pull request #12892 from comoyo/value_selector_inputcontext"
This reverts commit 4fb5a545dc2dc6d89e6f912f787e019a770d907c, reversing
changes made to fa366f051e657d49406dfebc433ccd69ea62353d.
========
https://hg.mozilla.org/integration/gaia-central/rev/f938b8542d09
Author: lissyx <lissyx+github@lissyx.dyndns.org>
Desc: Merge pull request #13088 from lissyx/bug923577
Bug 923577 - Ensure that we remove icons of hidden roles r=crdlc
========
https://hg.mozilla.org/integration/gaia-central/rev/778c88285c4a
Author: Alexandre Lissy <lissyx+github@lissyx.dyndns.org>
Desc: Bug 923577 - Ensure that we remove icons of hidden roles r=crdlc
When installing an application that is hidden, we have to make sure,
when updating the icon, that we remove it. This case happens especially
with packaged role system app, like, in this bug, a ringtones app. We
end up creating a temp icon (because we only have a updateManifest at
that time and cannot decide the role of the app) while downloading,
which is not removed once the app is finally installed.
========
https://hg.mozilla.org/integration/gaia-central/rev/a1f4dbe091d7
Author: Ian Liu <iliu@mozilla.com>
Desc: Merge pull request #12971 from ian-liu/bluetooth/Bug915584_revise_flow_for_receiving_file_without_SDCard
Bug 915584 - [Bluetooth][Contacts] Receiving a contact via bluetooth when the device does not have SD Card flow differs from the expected, r=@alivedise
========
https://hg.mozilla.org/integration/gaia-central/rev/170ec7f9d9a9
Author: ian-liu <iliu@mozilla.com>
Desc: Bug 915584 - [Bluetooth][Contacts] Receiving a contact via bluetooth when the device does not have SD Card flow differs from the expected
========
https://hg.mozilla.org/integration/gaia-central/rev/d3308d368858
Author: Julien Wajsberg <felash@gmail.com>
Desc: Revert "Merge pull request #12802 from caiolima/bug-815093"
This reverts commit 47b3bdf7a6e9396db6e09ac0453f782953ceda7a, reversing
changes made to 1d832634550de25526eaf93137940f9fd73a4c7f.
========
https://hg.mozilla.org/integration/gaia-central/rev/33b06ed662ee
Author: Arthur Chen <crh0716@gmail.com>
Desc: Revert "Bug 909689 - Set data connection text based on the network mode and the existence of calls"
This reverts commit d505b37f2e856d0cf7c7cd5b37c02eec44f06b7d.
========
https://hg.mozilla.org/integration/gaia-central/rev/8e5ab4582834
Author: evelynhung <jj.evelyn@gmail.com>
Desc: Merge pull request #13024 from MBRSL/eng-mode
Bug 913385 - Add Hardware tests mode r=evelyn,zac
========
https://hg.mozilla.org/integration/gaia-central/rev/7c55c55ae7f6
Author: Tom Jao <tjao@mozilla.com>
Desc: Bug 913385 - Add Hardware tests mode r=evelyn
This patch organize old tests into API and UI parts, and add new Hardware tests.
Also, there are some minor fixes on existing tests.
HW tests mode provide the following tests:
Audio loop
Battery
Bluetooth
Camera
Headphone
LCD
Physical keys
Ringer
SDCard
Sensors
Touch screen
Vibrator
Truncated some number of revisions since the previous bump.
========
https://hg.mozilla.org/integration/gaia-central/rev/373644db99ce
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 920546 - [Messages] Short-term fixes for the recipient panel r=julienw
https://bugzilla.mozilla.org/show_bug.cgi?id=920546
- Apply new "invalid recipient" indicator style
- Decouple searchContact from list display
- Create ThreadUI.listContact(...)
- Create ThreadUI.validateContact(...)
- Adds two level validation:
- Is the entry questionable?
- This kicks off a silent search for matching contacts
- If there are one or more matches, use the first to create a Recipient
- Is the entry invalid?
- This state is reached if no contacts could be found
for the typed value.
- Prevents enableSend
- Prevents "export" of recipient entry at Send
(when mixed with multiple valid recipients)
- Refactor Utils.getContactDisplayInfo logic
- Adds tests for enableSend
- Adds tests for questionable Recipient detection.
Changes, post review:
> Bug 1:
> - enter a bogus recipient, press enter to "accept" it
> - press backspace => the cursor is correctly inside the contenteditable element, but it's still "red" and the keyboard is hiding
Fixed by adding CSS rules:
[contenteditable=false].attention
[contenteditable=true].attention
---
> Bug 2:
> - with the recipient light workload, that has a "Adam L. Card" contact
> - typing exactly "Adam L. Card" => no match
> - typing "Adam Card" => match
Yep, this has always been true. See also: https://bugzilla.mozilla.org/show_bug.cgi?id=860804
---
> Bug 3:
> - add text in the composer
> - add a bogus contact => the send button is enabled, should be disabled
Fixed by being more explicit in enableSend:
Set hasRecipients to true based on the following conditions:
1. There is a valid recipients object
2. One of the following is true:
- The recipients object contains at least 1 valid recipient
- OR -
- There is >1 character typed and the value will not
evaluate to a NaN
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
========
https://hg.mozilla.org/integration/gaia-central/rev/dfae5ff6b7c4
Author: Corey Frang <gnarf37@gmail.com>
Desc: Bug 912010 - [Keyboard][V1.2] Default Keyboard when all keyboards are de-selected - r=rlu r=garychen r=arthurcc
- Refactors `KeyboardHelper`
- Renames the application method to `getApps`, which now caches response until the apps change
- Adds a new API `getLayouts` to get a callback with an array of layouts.
- Adds a new API `watchLayouts` to get a callback whenever layout settings or apps change
- No longer calls `saveToSettings` itself when changing layout parameters. This allows a consumer to batch operations before saving.
- New method `checkDefaults` will make sure there is at least one `text` `url` and `number` keyboard enabled, calling the callback with anything it enabled.
- +unit test suite.
- ManifestHelper now automatically returns a ManifestHelper for each object it contains
- +unit test suite
- now waits until access time to handle the language selection instead of creation time
- this allows holding the one manifest helper and having its "name" property change with the language
- Settings Changes
- Now uses `watchLayouts` from keyboard_helper
- Now calls `checkDefaults` when disabling a keyboard
- If a default is enabled opens a DefaultKeyboardEnabledDialog
- Removed a bunch of commented out code for dealing with the old layout settings
- System Changes
- Now uses `watchLayouts` from keyboard_helper
- Will call `checkDefaults` whenever it can't find a keyboard to show, showing the default from `text` if it still can't find one
- Test suite
- Moved some mocks to shared and updated require statements
- Mock Settings now allows a "sync mode" that can call the callbacks for observers on demand.
Closes gh-12866
========
https://hg.mozilla.org/integration/gaia-central/rev/8f782376375b
Author: Rick Waldron <waldron.rick@gmail.com>
Desc: Bug 877718 - [Messages] Contact's correct phone number and type is displayed r=julienw
https://bugzilla.mozilla.org/show_bug.cgi?id=877718
- Rename Utils.compareDialables => Utils.probablyMatches
- normalizes with navigator.mozPhoneNumberService.normalize if possible
- otherwise fallback to previous matching strategy (no non-digit => digit replacement)
- Update navigator.mozContacts.find desktop "mock" to also normalize when searching numbers
Signed-off-by: Rick Waldron <waldron.rick@gmail.com>
========
https://hg.mozilla.org/integration/gaia-central/rev/59abff9c1005
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #13036 from gitmai/bug-926582-search-bar-not-working
Bug 926582 - [B2G][Contacts] The search bar will stop functioning when searching contacts in Gmail or Outlook
========
https://hg.mozilla.org/integration/gaia-central/rev/976f8748c472
Author: mai <mri@tid.es>
Desc: Bug 926582 - [B2G][Contacts] The search bar will stop functioning when searching contacts in Gmail or Outlook
========
https://hg.mozilla.org/integration/gaia-central/rev/8974a0511dc3
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #13069 from gtorodelvalle/contacts-bug-925307-intro-exits-search-mode-reloaded
Bug 925307 - [Contacts] In search mode, clicking ENTER on the keyboard exits the search mode (follow-up)
========
https://hg.mozilla.org/integration/gaia-central/rev/605838645515
Author: Germán Toro del Valle <gtorodelvalle@gmail.com>
Desc: Bug 925307 - [Contacts] In search mode, clicking ENTER on the keyboard exits the search mode (follow-up)
========
https://hg.mozilla.org/integration/gaia-central/rev/7012b7d31b28
Author: Julien Wajsberg <felash@gmail.com>
Desc: Merge pull request #12802 from caiolima/bug-815093
Bug 815093 - Compose/share activities returning to caller app
r=julien
========
https://hg.mozilla.org/integration/gaia-central/rev/35ee9ca6baea
Author: Caio Lima <ticaiolima@gmail.com>
Desc: Bug 815093 - Compose activities returning to caller app r=julien
========
https://hg.mozilla.org/integration/gaia-central/rev/640ae4833ecb
Author: Jose M. Cantera <jmcanterafonseca@gmail.com>
Desc: Merge pull request #12967 from arcturus/bug-925184
Bug 925184 - [B2G][Settings] The user cannot export contacts to the memory card when USB Storage is enabled
========
https://hg.mozilla.org/integration/gaia-central/rev/c644d645fa11
Author: Francisco Jordano <arcturus@ardeenelinfierno.com>
Desc: Bug 925184 - [B2G][Settings] The user cannot export contacts to the memory card when USB Storage is enabled
Changed the approach to not to use UMS and settings, but just the sdcard state.
For that added the state 'SHARED' as not available to use for the import/export, since we could have
inconsistencies while using.
Now our utility for sdcard has an extra option to subscribe to changes in the sdcard.