Commit Graph

3345 Commits (fennec/beta)
 

Author SHA1 Message Date
Sebastian Kaspari a5bf6545ce Use Mozilla Android Components 37.0.5. 4 years ago
Sebastian Kaspari cdf536739c Use Mozilla Android Components 37.0.4. 4 years ago
Sebastian Kaspari edbfb878f6 Update Mozilla Android Components to 37.0.3. 4 years ago
Sebastian Kaspari c7e392a17d Fix placeholder in Romanian string (browser_menu_powered_by). 4 years ago
Sebastian Kaspari 5b73cc593b Use Mozilla Android Components 37.0.2. 4 years ago
Grisha Kruglov 12f4071e33 Closes #9530: Don't crash on failed avatar fetches 4 years ago
Arturo Mejia eb5cdcd7ec For issue #9364 Crash when blocking app permissions and returning to
the app
4 years ago
ekager f0bce014ab Add toolbar padding for bookmark snackbar 4 years ago
ekager 83fe989822 For #9351 - Show snackbars with toolbar padding to work with dynamic toolbar 4 years ago
Chenxia Liu 9261edb855 Issue #9343 - Pin AC to 37.0.0 for 4.2 release 4 years ago
Arturo Mejia 301f56d144 For issue #9334 Fix Remove of one exception is deleting all 4 years ago
exobyte101 dee1d92293 Remove extra transparent space from widget preview image 4 years ago
exobyte101 746a11c30f Closes #4766: Adjust search widget min height and width according to guildelines 4 years ago
Sawyer Blatz 9feb44852b
For #9256: Attempts to fix installation ping not being sent (#9331) 4 years ago
Kate Glazko 47b2f6a070 For 7077 Simplify Display Url 4 years ago
codrut.topliceanu 9059a6b465 For #6317 - Applies 3dot menuItem look to quickSettings and tracking panel 4 years ago
Aaron Train f8048462b5
Closes 9291: Fix shortcutSearchEngineSettingsTest (#9292) 4 years ago
MickeyMoz eaa69cf72b Update Android Components version to 37.0.20200322190046. 4 years ago
MickeyMoz a9ad65e63c Update Android Components version to 37.0.20200322130043. 4 years ago
Mozilla L10n Automation Bot db1a093661 Import l10n. 4 years ago
Amaan Marfatia 7236913d94 Closes #7761: Makes the Parent Folder Selector height 48dp for touch accessibility 4 years ago
Mihai Branescu ab04155222 For #8653 - changed menu strings 4 years ago
mcarare 14338a3b13 For #8899: Set viable anchor for snackbars in both custom and normal tab 4 years ago
ValentinTimisica 8871c05c9d Fixes #9243: Remove tabs fade in animation when pressing on Save to Collection 4 years ago
David Walsh 681d6cf8a1 For #8652 - Allow sharing multiple bookmarks 4 years ago
Michael Comella 862be3e95f No issue: add related Matrix channels to README. 4 years ago
David Walsh 27502bdd34 For #9177, #8248 - Hide empty verified by block when no cert 4 years ago
Mozilla L10n Automation Bot 930c74a42a Import l10n. 4 years ago
Severin Rudie 35a132d7ff
8017 advanced autoplay controls. (#8978)
* For #8017: add advanced autoplay controls
4 years ago
Elise Richards 5d8a9bb4be
For #8592: Relocate device name in account preferences. Deactivate device name field while syncing. (#9255) 4 years ago
Sawyer Blatz a356b4b2c4
For #9136: Send all adjust properties to glean (#9253) 4 years ago
Mugurell 21606bf94f For #8693 - Add rtl onboarding toolbar position picker images 4 years ago
Mugurell 1dca146e4f For #8693 - Add rtl onboarding theme picker images 4 years ago
Aaron Train 8f37977e79
Closes #9262: Add additional waits to LibraryMenuTest (#9263) 4 years ago
ValentinTimisica fbeff33ef5 Fixes #8491: Changed toolbar background for PBM when is set to top
This change was required so that the background of the toolbar match the
homeFragment gradient
4 years ago
MickeyMoz fdbf1d197b Update Android Components version to 37.0.20200319190049. 4 years ago
Johan Lorenzo 699d5b7b15
Bug 1620190 - Run android-components bumps once a day (#9251) 4 years ago
Mozilla L10n Automation Bot e97387257b Import l10n. 4 years ago
Michael Comella c0d7a1f759 No issue: pre-push: assemble everything before testing.
It's better to fail fast on pre-push hooks so devs can get feedback as
fast as possible. Assembling is faster than unit testing so we assemble
everything first before unit testing.
4 years ago
Mozilla L10n Automation Bot 310b3caf70 Import l10n. 4 years ago
Sawyer Blatz b9059c8208
For #9256: Attempts to fix installation ping not being sent (#9254) 4 years ago
Sebastian Kaspari 0198305bfb MigrationPushRenewer: Remove ExperimentalCoroutinesApi. 4 years ago
Grisha Kruglov e541e10427 Initialize storage after visual completeness
In order to eat the perceived performance costs, we initialize storage
once we're visually complete. This way, we're reducing chances of user performing
a UI action which will trigger storage init and delay said action.
4 years ago
Grisha Kruglov eb14532c3c Closes #7450: Lazy storage initialization
Make sure that we actually lazily initialize our storage layers.

With this patch applied, storage layers (history, logins, bookmarks) will be initialized when first
accessed. We will no longer block GeckoEngine init, for example, on waiting for the logins storage
to initialize (which needs to access the costly securePrefStorage).
Similarly, BackgroundServices init will no longer require initialized instances of the storage
components - references to their "lazy wrappers" will suffice.

In practice, this change changes when our storage layers are initialized in the following ways.
Currently, we will initialize everything on startup. This includes loading our megazord, as well.

With this change, init path depends on if the user is signed-into FxA or not.

If user is not an FxA user:
- on startup, none of the storage layers are initialized
- history storage will be initialized once, whenever:
  - first non-customTab page is loaded (access to the HistoryDelegate)
  - first interaction with the awesomebar
  - history UI is accessed
- bookmarks storage will be initialized once, whenever:
  - something is bookmarked, or we need to figure out if something's bookmarked
  - bookmarks UI is accessed
- logins storage will be initialized once, whenever:
  - first page is loaded with a login/password fields that can be autofilled
  - (or some other interaction by GV with the autofill/loginStorage delegates)
  - logins UI is accessed
- all of these storages will be initialized if the user logs into FxA and starts syncing data
  - except, if a storage is not chosen to be synced, it will not be initialized

If user is an FxA user:
- on startup, none of the storage layers are initialized
- sometime shortly after startup is complete, when a sync worker runs in the background, all storage
layers that are enabled to sync will be initialized.

This change also means that we delay loading the megazord until first access (as described above).
4 years ago
Aaron Train 3ea8023a27
No issue: Swap AVD (x86) Nexus 6 (API 25) with a Nexus6P (API 27) (#9259)
The Nexus 6 (x86 AVD) on API 25 is causing too many instablility issues. Let’s see what happens with a Nexus 6P on API 27.
4 years ago
Gregory Mierzwinski 8d2e594542
Bug 1623601 - Add visual metrics tasks to nightly browsertime tests. (#9248) 4 years ago
mcarare e4acabb329 For #8600:Increase space below left checkbox preference 4 years ago
mcarare a098b66d26 For #8591: Allow items in quick_action_sheet to be read by a11y services 4 years ago
mcarare 756b1fbadd For #9140: Remove drawable from title in empty state panes 4 years ago
MickeyMoz 5ed131969a Update Android Components version to 37.0.20200318190037. 4 years ago