2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-15 18:12:54 +00:00
Commit Graph

3464 Commits

Author SHA1 Message Date
Grisha Kruglov
12e3619a2e [fenix] Make sure reconnect item is displayed in HomeMenu in case of account problems
AccountObserver listeners were being triggered correctly, however, during every time
we open HomeFragment, home menu gets re-created, which causes us to re-run the initialization
block. Before this patch, the init block would never touch the account manager.
After this patch, it will query it if account manager has already been initialized.
2020-03-31 16:07:35 -07:00
Grisha Kruglov
8d1befd34c [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9561: Fix initialization order in HomeMenu
`init` blocks are executed before `val` initialization which is declared afterwards
in the class. In this case, we had `quitItem` and `reconnectToSyncItem` as lazy,
but declared after the `init` block which may need them. And so, while this compiles
just fine, in practice we run into an NPE as the `init` block tries to get the lazy's value.

Simply re-ordering initialization fixes the problem.
2020-03-31 16:07:35 -07:00
Arturo Mejia
12237fdca1 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8520: Polish Add-on manager UIs 2020-03-31 17:20:20 -04:00
Sawyer Blatz
72e91ad94a [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9472: ForceExpand browser toolbar when navigating (https://github.com/mozilla-mobile/fenix/pull/9552) 2020-03-31 11:16:40 -07:00
Oana Horvath
8dbcd4ed35 [fenix] Updated the method to verify system notifications and added new tests for media notifications (https://github.com/mozilla-mobile/fenix/pull/9330) 2020-03-31 21:11:41 +03:00
ValentinTimisica
7d57c791f0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8412: Passes error handling function to 'CustomTabWindowFeature' (https://github.com/mozilla-mobile/fenix/pull/8903)
* For https://github.com/mozilla-mobile/fenix/issues/8412: Passes error handling function to 'CustomTabWindowFeature'

Change required for showing error message when the app can't handle a specific
scheme. Implemented in AC:
https://github.com/mozilla-mobile/android-components/pull/6122

* Upgrade AC version

Co-authored-by: Sawyer Blatz <sdblatz@gmail.com>
2020-03-31 10:17:29 -07:00
Grisha Kruglov
3d7f7cbe5d [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9530: Don't crash on failed avatar fetches 2020-03-31 09:17:17 -07:00
Mozilla L10n Automation Bot
59910e8d82 [fenix] Import l10n. 2020-03-30 22:00:19 -07:00
Grisha Kruglov
423d7cfdda [fenix] Part 6: Kick-off account manager initialization after visual completeness
In order to hide the time it takes for the account manager to be initialized
(which always involves disk IO, and often network IO), let's kick it off
after "visual completeness".
This makes sure that for most users, by the time they interact with the account
manager-related functionality (e.g. in Settings), it's ready to go.

Also, for signed-in users, this will establish background sync workers.
2020-03-30 21:43:38 -07:00
Grisha Kruglov
1a25bc758e [fenix] Part 5: Refactor HomeMenu<->HomeFragment interaction
This refactor "reverses" relationship between these two classes, allowing
HomeMenu to inform its parent, HomeFragment, of any changes to the menu.

Once that's in place, we start observing account manager changes (once its ready)
for account problems.

This solves two problems:
- initialization of the account manager is no longer necessary to build a home menu
- home menu now starts observing changes to the account manager's state (before it was static)
2020-03-30 21:43:38 -07:00
Grisha Kruglov
13deec03a1 [fenix] Part 4: Make sure 'sync is on' snackbar does not initialize account manager 2020-03-30 21:43:38 -07:00
Grisha Kruglov
71564af97d [fenix] Part 3: Mark accountManager as 'lazy' in Mode.kt
This is enough to cause it to be initialized only if we're going through onboarding.
2020-03-30 21:43:38 -07:00
Grisha Kruglov
1a6e1c0b7f [fenix] Part 2: Do not eagerly initilize account manager within HomeActivity
Instead of always kicking off accountManager's init and telling it to sync right away in
'onResume', we move these tasks to some abstract point later on, whenever account manager
is available.
2020-03-30 21:43:38 -07:00
Grisha Kruglov
4e308faf35 [fenix] Part 1: Add 'accountManagerReady' queue to BackgroundServices
This gives us an ability to perform tasks against 'accountManager' without
causing its immediate initialization.
2020-03-30 21:43:38 -07:00
Grisha Kruglov
ccb08070a7 [fenix] Pre: introduce a RunWhenReadyQueue
This replaces the StartupTaskManager we had with a more general class.
New implementation is a thread-safe "gated task executor", which either
runs the task right away if it's marked as 'ready', or queries it to be
executed later on.

This ability to either execute or queue a task will be useful later on in the
commit series.
2020-03-30 21:43:38 -07:00
Aaron Train
e8cfeeb0a1 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9189: Fixes "static asset not found" error in doNotSaveLoginFromPromptTest, saveLoginFromPromptTest UI tests (https://github.com/mozilla-mobile/fenix/pull/9439)
AndroidAssetDispatcher class dispatcher was attempting to open a local asset with a query suffix from the request. If query suffix is found, remove it. Re-enable saveLoginFromPromptTest() and doNotSaveLoginFromPromptTest()
2020-03-30 18:01:58 -04:00
David Walsh
207fa5752a [fenix] For https://github.com/mozilla-mobile/fenix/issues/9525 - Add bottom margin to top sites header 2020-03-30 14:48:45 -07:00
Sawyer Blatz
e488ed1773 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/9132: Update to search animation for top toolbar (https://github.com/mozilla-mobile/fenix/pull/9524)
* let animation in top toolbar mode play nicely.

* remove duplicate methods, make code readable.

* migrate getToolbarNavOptions method to BrowserAnimator, one method to rule them all.

* Update linting

Co-authored-by: ahmedmamdouh13 <ahmedmamdouh13196@gmail.com>
2020-03-30 12:07:00 -07:00
ekager
23656b2f53 [fenix] Use existing strings for announcement 2020-03-30 11:10:40 -07:00
asavill
e3427ab39f [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/7720:
- Increased atp switch size to be consistent with `dimen/tracking_protection_item_height`(48dp).
- Cut out redundant traversal of TextViews in SwitchWithTraversal as per https://github.com/mozilla-mobile/shared-docs/blob/master/android/accessibility_guide.md
- Reuse `QuickSettingsText.Icon` style on the switch component to be consistent with other items in the component_tracking_protection_panel.xml
- Added new string resources for textOff and textOn state to get appropriate screen reader description (unsure of the translation/localisation process here!)
2020-03-30 11:10:40 -07:00
David Walsh
af892ba291 [fenix] For https://github.com/mozilla-mobile/fenix/issues/7059 - Allow search engines to scroll 2020-03-30 10:31:39 -07:00
David Walsh
8b88382e82 [fenix] Add top sites heading to home screen 2020-03-30 10:29:40 -07:00
mcarare
3fa441bedb [fenix] For https://github.com/mozilla-mobile/fenix/issues/9498: Update unit tests with new constructor argument 2020-03-30 09:56:51 -07:00
mcarare
ceec72715d [fenix] For https://github.com/mozilla-mobile/fenix/issues/9498: Replace navargs with viewModel to remember if scroll to tab 2020-03-30 09:56:51 -07:00
mcarare
f75a0e4347 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9496: Vertically align collection name and icons to collection icon 2020-03-30 08:30:06 -07:00
Simon Chae
f3e86f841d [fenix] Update NotYetSupported add-ons copy 2020-03-30 10:36:49 -04:00
codrut.topliceanu
df49c9dd94 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9500 - Revert patch for 8568
The patch for 8568 introduced this regression.
Let's just revert it until we can come up with a better solution.
2020-03-30 07:20:13 -07:00
MickeyMoz
1e13abed10 [fenix] Update Android Components version to 38.0.20200329190103. 2020-03-30 11:49:30 +02:00
Sebastian Kaspari
de3dda8af1 [fenix] Update to new feature-media API. 2020-03-29 23:13:13 -07:00
Mozilla L10n Automation Bot
1030317365 [fenix] Import l10n. 2020-03-29 12:32:40 -07:00
Edouard Oger
24b2efdc89 [fenix] Add secret debug menu to override FxA servers 2020-03-27 22:59:14 -07:00
Richard Pappalardo
23e57053da [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9469 - Change UI test failure output 2020-03-27 22:43:57 -07:00
mcarare
d2c048aa23 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8764: Use list component for items in collections 2020-03-27 22:14:59 -07:00
mcarare
003fb31dfb [fenix] For https://github.com/mozilla-mobile/fenix/issues/8764: Update collection design, including list elements 2020-03-27 22:14:59 -07:00
mcarare
8a92e18ff8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9252: Add progress bar to saved logins view 2020-03-27 22:13:58 -07:00
mcarare
d27f0cf313 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9252: Update views visibility ony when list has finished loading 2020-03-27 22:13:58 -07:00
Arturo Mejia
23c3c286de [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/8017 enable SitePermissionsWifiIntegration 2020-03-27 20:44:16 -04:00
Mozilla L10n Automation Bot
14de8badde [fenix] Import l10n. 2020-03-27 17:33:26 -07:00
codrut.topliceanu
7ea1b1ec35 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8568 - Refocus URL editText in SearchFragment onResume 2020-03-27 17:24:14 -07:00
Amaan Marfatia
15a8de6f27 [fenix] AboutPageAdapter doesn't use notifyDataSetChanged()
We make the AboutPageAdapter inherit from a ListAdapter so that we don't use notifyDataSetChanged().
2020-03-27 17:23:27 -07:00
David Walsh
608a6531a5 [fenix] No issue - Make fill link from clipboard divider stretch full screen 2020-03-28 02:10:18 +02:00
mcarare
b52f5a3829 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8485 Update UI tests after settings reorg 2020-03-27 17:05:49 -07:00
mcarare
e7d435420f [fenix] For https://github.com/mozilla-mobile/fenix/issues/8485 Move Remote debugging and LeakCanary to Advanced section 2020-03-27 17:05:49 -07:00
mcarare
46e353fd73 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8968: Hide keyboard when navigating away from browser 2020-03-27 16:44:11 -07:00
ValentinTimisica
47fd3e26fc [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/9280: Remove tabs fade in animation when pressing on Add new collection 2020-03-27 15:54:24 -07:00
Mugurell
a09fad7f74 [fenix] For https://github.com/mozilla-mobile/fenix/issues/8651 - Add HistoryInteractor/Controller unit/ui tests 2020-03-27 15:53:31 -07:00
Mugurell
76642b79ff [fenix] For https://github.com/mozilla-mobile/fenix/issues/8651 - Ensure FenixSnackbar has a proper root for inflating into
FenixSnackbar, as the platform Snackbar can only be inflated in either a
`CoordinatorLayout` or a `FrameLayout`.
Ensure our HistoryFragment's layout uses one of these as it's root.
2020-03-27 15:53:31 -07:00
Mugurell
2bd3a7d137 [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/8651 - Add new menu actions for a history item
We'll now also support:
- Copy url
- Share to another FXA device
- Open in new tab
- Open in private tab
2020-03-27 15:53:31 -07:00
mcarare
15d82b8535 [fenix] For https://github.com/mozilla-mobile/fenix/issues/9435: Adjust margins and paddings to mirror correctly in RTL 2020-03-27 14:45:47 -07:00
Mihai Branescu
7c4db6a8af [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/9352 - changed capitalisation of 'Open in app' 2020-03-27 14:43:32 -07:00