2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00
Commit Graph

7793 Commits

Author SHA1 Message Date
Alexandru2909
40155f3557 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26115 - Change homescreen Show all button color according to wallpaper 2022-08-12 00:55:43 +00:00
Charlie Humphreys
367678cad4 [fenix] change name for isFirstRun to isFirstNimbusRun and move setter to after experiments are set 2022-08-12 00:24:28 +00:00
Charlie Humphreys
028c519532 [fenix] update isFirstRun to be manually set and set experiments locally on first run 2022-08-12 00:24:28 +00:00
isabelrios
4c04956c5b [fenix] use python 3.10 2022-08-11 15:31:37 +00:00
isabelrios
d7a448da29 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26390 Upgrade to Python3 2022-08-11 15:31:37 +00:00
MatthewTighe
346427f73a [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/26245: refactor the WallpaperManager as several WallpaperUseCases 2022-08-11 14:56:49 +00:00
Jonathan Almeida
4ee1f0ea64 [fenix] Close https://github.com/mozilla-mobile/fenix/issues/26041: Remove un-needed Nimbus workaround
This workaround was temporary and is not needed with the Nimbus groovy
plugin updates in Android Components.
2022-08-11 10:13:19 -04:00
Roger Yang
40509a528e [fenix] Close https://github.com/mozilla-mobile/fenix/issues/26198: Add debounce to account manager syncs 2022-08-10 21:06:29 +00:00
Mozilla L10n Automation Bot
ac86fcc99b [fenix] Import l10n. 2022-08-10 07:26:01 +00:00
rxu
6e6d1a658b [fenix] Add "manage account and devices" button to home menu in mozillaonline builds 2022-08-10 06:50:08 +00:00
Noah Bond
33b3f324ac [fenix] For https://github.com/mozilla-mobile/fenix/issues/22558 - Fix private theme bug in Tabs Tray 2022-08-09 21:08:38 +00:00
Jonathan Almeida
85578e498c [fenix] Close https://github.com/mozilla-mobile/fenix/issues/26041: Re-set TrackingProtectionPolicy after Nimbus SDK is initialized
There are three issues here that we have uncovered while investigating
this bug:

 1. Settings.kt has a lazy block around `enabledTotalCookieProtection`
    which ends up caching the first result it evaluates.
 3. The `FeatureHolder` within FxNimbus caches the incorrectly
    evaluated value and returns this value hence forth.
 4. Nimbus is not ready to return a result for an engine experiment
    when we need it early on in the dependency tree initialization.

There are multiple systems that require engine to be initialized for
 them to work (e.g. Glean, Profiler, concept-fetch). In our TCP,
 experiment, we need to apply these engine settings during the engine
 initialization. So when we try and evaluate Nimbus that early on, it
 has not had time to initialize itself correctly or even use the
 engine's concept-fetch client to return the correct experiment result.
 This bug is made worse because of the first two caching bugs where we
 are always holding onto a cached value of the wrong result.

Our temporary solution is to:

 1. Remove the `lazy` around `Settings.enabledTotalCookieProtection`.
 2. Set the `FxNimbus.api` value right after we are done initializing
    `FxNimbus` and `NimbusApi` so that all future queries to FxNimbus
    will be made against a real instance of `NimbusApi`. This is a
    short-term fix for the `FeatureHolder` caching bug.
 3. Set a new TrackingProtectionPolicy that will evaluate Nimbus now
    that it is in the correct state when receive the
    `NimbusInterface.Observer.onUpdatesApplied`.

Co-authored-by: jhugman <jhugman@users.noreply.github.com>
Co-authored-by: Christian Sadilek <christian.sadilek@gmail.com>
2022-08-09 19:33:00 +00:00
MatthewTighe
4bc96a5e10 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/26377: re-open already opened recent synced tabs 2022-08-09 19:00:40 +00:00
Mozilla L10n Automation Bot
96294c1448 [fenix] Import l10n. 2022-08-09 10:12:58 +00:00
Noah Bond
9968708352 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26289 - Remove search term tab groups metrics and setting 2022-08-08 18:16:33 +00:00
rudmannn
22faa40f9e [fenix] Fix https://github.com/mozilla-mobile/fenix/issues/26362: Use app:lineHeight to support API Level <= 27 (https://github.com/mozilla-mobile/fenix/pull/26364)
* Fix android:lineHeight

Change android:lineHeight to app:lineHeight for incompatibilities at API Level <= 27

* Fix android:lineHeight (Part 2)

Change android:lineHeight to app:lineHeight for fixing incompatibilities in custom_search_engine

* Change android:lineHeight (Part 3)

Change android:lineHeight to app:lineHeight in settings_https_only for incompatibilities at API Level <= 27

* cleanup lint-baseline.xml

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2022-08-08 12:12:18 -04:00
Jan-Erik Rediger
b03ec61ff5 [fenix] Move startup perf measurements to a background thread
This is required to avoid loading the Glean core library (provided by libxul) early on.
Fenix needs to do the time measurement itself for now.
2022-08-08 14:10:36 +00:00
Alexandru2909
c089186e14 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26302 - Change header text height to wrap_content for autofill add/edit screens 2022-08-08 05:37:09 +00:00
Mozilla L10n Automation Bot
cd069fc5d1 [fenix] Import l10n. 2022-08-08 00:39:10 +00:00
Mozilla L10n Automation Bot
a33e886637 [fenix] Import l10n. 2022-08-07 00:43:28 +00:00
Mozilla L10n Automation Bot
3c9ab295e4 [fenix] Import l10n. 2022-08-06 00:39:20 +00:00
indu
26a8f7a155 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26236: Fix breaking change from AC regarding exitImmersiveModeIfNeeded
This will allow Fenix to use the refactored method name 'exitImmersiveMode' in Activity from Android Components library

Co-Authored-By: Mugurell <Mugurell@users.noreply.github.com>
2022-08-05 15:25:39 +00:00
Mozilla L10n Automation Bot
f033fe75b4 [fenix] Import l10n. 2022-08-05 00:40:01 +00:00
AndiAJ
14580e22ad [fenix] For https://github.com/mozilla-mobile/fenix/issues/26144 new App-like experience in PWAs UI test 2022-08-04 19:28:09 +00:00
AndiAJ
354d88c22c [fenix] For https://github.com/mozilla-mobile/fenix/issues/26286 new verifyRemoveTopSiteFromMainMenu UI test 2022-08-04 14:35:34 +00:00
AndiAJ
528e7298a7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25926 disable failing mainMenuOpenInAppTest UI test 2022-08-04 11:54:48 +00:00
Mozilla L10n Automation Bot
ed56bd2308 [fenix] Import l10n. 2022-08-04 01:10:03 +00:00
Noah Bond
f55ce61747 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26227 - Remove search term tab groups from Jump Back In 2022-08-04 00:10:47 +00:00
Mugurell
848b8b583d [fenix] For https://github.com/mozilla-mobile/fenix/issues/26172 - New CFR popup composable
This will allow for pinpoint accuracy when anchoring and resolve any color
disparities between the popup body and the indicator arrow by having everything
drawn programmatically as one shape.

Because of the async nature of the values for insets and screen rotation
immediately after an orientation change the popup will automatically get
dismissed to prevent any anchoring issues.
While not ideal the effect of this is better than accepting layout issues after
orientation changes and is the same approach used for other of our popups.
2022-08-03 19:04:31 +00:00
Alexandru2909
c763a8a42e [fenix] For https://github.com/mozilla-mobile/fenix/issues/26239 - Avoid displaying multiple download items for the same file 2022-08-03 11:49:42 +00:00
AndiAJ
c741f9fb2c [fenix] For https://github.com/mozilla-mobile/fenix/issues/26286 new undoDeleteHistoryItemTest UI test 2022-08-03 05:51:31 +00:00
Christian Sadilek
82e302717e [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/26227 - Remove search term tab groups from Jump Back In"
This reverts commit f4e09ba3f2d6a530e8a39a0e18d15fefceb6ee6a.
2022-08-03 02:39:42 +00:00
Christian Sadilek
aed096a6a0 [fenix] Revert "For https://github.com/mozilla-mobile/fenix/issues/26227 - Remove search term tab groups from Recently Visited"
This reverts commit e0617080ec0e28b74a2cd8ca1f9b94a521ba17ac.
2022-08-03 02:39:42 +00:00
Arturo Mejia
17d8116525 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26283: Use message buttonLabel in MessageCard. 2022-08-03 01:54:13 +00:00
Mozilla L10n Automation Bot
8e22e7e682 [fenix] Import l10n. 2022-08-03 00:36:46 +00:00
Noah Bond
35b2c39f0e [fenix] For https://github.com/mozilla-mobile/fenix/issues/26227 - Remove search term tab groups from Recently Visited 2022-08-02 22:46:10 +00:00
Noah Bond
c98cdcf0b3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26227 - Remove search term tab groups from Jump Back In 2022-08-02 22:46:10 +00:00
MatthewTighe
35093573e5 [fenix] Fixes: https://github.com/mozilla-mobile/fenix/issues/26052 remove WallpaperManager::updateWallpaper 2022-08-02 21:33:54 +00:00
Alexandru2909
a3008766c0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25837 - Invalidate cached nimbusValidation values when changing locale settings 2022-08-02 07:45:13 +00:00
Mozilla L10n Automation Bot
6c8eff4767 [fenix] Import l10n. 2022-08-02 01:35:29 +00:00
AndiAJ
279782aa40 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25926 disable failing testDownloadPrompt UI test 2022-08-01 10:07:14 +00:00
Mozilla L10n Automation Bot
21ede9d93d [fenix] Import l10n. 2022-08-01 00:39:20 +00:00
Mozilla L10n Automation Bot
97e43e1460 [fenix] Import l10n. 2022-07-31 00:45:15 +00:00
Mozilla L10n Automation Bot
15cef94448 [fenix] Import l10n. 2022-07-30 00:42:27 +00:00
MatthewTighe
c854e54f03 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/26029: Add wallpaper state to AppStore 2022-07-29 22:18:19 +00:00
Alexandru2909
d2ac452fa4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26221 - Use favicon instead of ic_globe for composed tab grid item 2022-07-29 13:06:48 +00:00
Mozilla L10n Automation Bot
9e1c5eb832 [fenix] Import l10n. 2022-07-29 00:42:02 +00:00
mike a
6b6223fbd7 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/25942: use HistoryFragment to show synced history 2022-07-28 20:53:36 +00:00
Mozilla L10n Automation Bot
dab8e5155c [fenix] Import l10n. 2022-07-28 00:38:34 +00:00
Roger Yang
fe505d58ad [fenix] For https://github.com/mozilla-mobile/fenix/issues/26061: Make sure favicons are cropped correctly 2022-07-27 22:11:13 +00:00
mcarare
faef97dad4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26197: Cancel history list update on fragment destroyed. 2022-07-27 18:06:56 +00:00
Mozilla L10n Automation Bot
1457773d69 [fenix] Import l10n. 2022-07-27 00:48:42 +00:00
mike a
739a23b889 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/26101: add telementry for deleting history time range 2022-07-26 20:59:16 +00:00
mcarare
122fdb6118 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22692: Remove Metropolis font file issues from baseline lint. 2022-07-26 16:39:29 +00:00
mcarare
34b70ffc9a [fenix] For https://github.com/mozilla-mobile/fenix/issues/22692: Remove Metropolis font. 2022-07-26 16:39:29 +00:00
Gabriel Luong
cd6c8d69cd [fenix] For https://github.com/mozilla-mobile/fenix/issues/26180 - Renew telemetry expiring in 106 2022-07-26 15:58:27 +00:00
Alexandru2909
76fe8e2d4f [fenix] For https://github.com/mozilla-mobile/fenix/issues/25891 - Move GridViewHolder to compose 2022-07-26 09:17:09 +00:00
sv-ohorvath
d1d14d5966 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/25970: wait for homescreen to exist before scrolling 2022-07-26 08:28:08 +00:00
Gabriel Luong
21f190b965 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26026 - Refactor the FenixTabCounterMenu creation from HomeFragment to TabCounterBuilder 2022-07-26 05:41:42 +00:00
Gabriel Luong
632d77f499 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26182 - Remove all unused strings marked moz:removedIn <= 102 2022-07-26 02:29:54 +00:00
Mozilla L10n Automation Bot
7fb8280aa5 [fenix] Import l10n. 2022-07-26 01:52:49 +00:00
mike a
24ce18998e [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/26174: remove escapes from the typographic quotes 2022-07-25 19:30:19 +00:00
mike a
09568d737f [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/26174: fix delete time range prompt text punctuation 2022-07-25 19:30:19 +00:00
Mozilla L10n Automation Bot
b89d399680 [fenix] Import l10n. 2022-07-25 00:43:30 +00:00
Mozilla L10n Automation Bot
aa6a830253 [fenix] Import l10n. 2022-07-24 00:39:21 +00:00
Mozilla L10n Automation Bot
3d5c2c61cb [fenix] Import l10n. 2022-07-23 00:41:38 +00:00
Gabriel Luong
94711d54c0 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26146 - Use the correct moz:removedIn version in @string/delete_browsing_data_prompt_message 2022-07-22 16:28:53 +00:00
Gabriel Luong
ba5a970f87 [fenix] Update app/metrics.yaml 2022-07-22 14:54:02 +00:00
Alexandru2909
458537c50e [fenix] For https://github.com/mozilla-mobile/fenix/issues/26089 - Record metrics for save credit card prompt shown 2022-07-22 14:54:02 +00:00
Mozilla L10n Automation Bot
c7f97c18ba [fenix] Import l10n. 2022-07-22 00:48:41 +00:00
Gabriel Luong
f0ddeb0342 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26134 - Add parameter description for @string/delete_all_history_group_prompt_message 2022-07-21 15:58:22 +00:00
Gabriel Luong
1a2f557006 [fenix] For https://github.com/mozilla-mobile/fenix/issues/26121 - Renew telemetry expiring in 105 2022-07-21 05:05:19 +00:00
Mozilla L10n Automation Bot
d388d2a32f [fenix] Import l10n. 2022-07-21 00:43:17 +00:00
mike a
08a57223b6 [fenix] Close https://github.com/mozilla-mobile/fenix/issues/25954: add a new delete time range confirmation dialog for history screen 2022-07-20 21:01:14 +00:00
Gabriel Luong
f6499a9a2f [fenix] For https://github.com/mozilla-mobile/fenix/issues/26113 ⁃ Enable address autofill in all channels 2022-07-20 20:31:51 +00:00
sv-ohorvath
c993d3de51 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/26097: use mock location in UI tests 2022-07-20 09:39:16 +00:00
sv-ohorvath
7d442af6d6 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/25972, https://github.com/mozilla-mobile/fenix/issues/25971: reduce test failures with more retries on legacy-api-tests 2022-07-20 07:27:48 +00:00
Mozilla L10n Automation Bot
a96b908702 [fenix] Import l10n. 2022-07-20 00:42:36 +00:00
MatthewTighe
205f6cea89 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/26050: show jump back in when only synced tab available 2022-07-19 18:40:34 +00:00
Noah Bond
4f3fe06977 [fenix] For https://github.com/mozilla-mobile/fenix/issues/21898 - Remove search term tab groups from the Tabs Tray 2022-07-19 16:59:57 +00:00
sarah541
6fb4fc6c8d [fenix] For https://github.com/mozilla-mobile/fenix/issues/22186 - Scroll to collection after creating one 2022-07-19 16:07:18 +00:00
Mozilla L10n Automation Bot
1e012eead9 [fenix] Import l10n. 2022-07-19 00:44:36 +00:00
sarah541
8a24872992 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25894 - Add firefox suggest header for lib suggestions 2022-07-18 18:47:10 +00:00
Mozilla L10n Automation Bot
945c3f55a1 [fenix] Import l10n. 2022-07-18 00:42:19 +00:00
Mozilla L10n Automation Bot
53b9d7de26 [fenix] Import l10n. 2022-07-17 00:46:06 +00:00
Mozilla L10n Automation Bot
9a94564c15 [fenix] Import l10n. 2022-07-16 01:46:12 +00:00
mike a
c12b34a5e6 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/25967: add classes to support multiple viewHolders 2022-07-16 01:03:53 +00:00
MatthewTighe
0d61a44d87 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/25955: refactor RecentSyncedTabsFeature to use SyncStore 2022-07-16 00:29:16 +00:00
mike a
fac9878548 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/25952: update close icon, start using close_20 on smaller ui elements 2022-07-15 23:24:27 +00:00
Roger Yang
4a2fa6be25 [fenix] No issue: remove unused inactive tab auto close dialog controller 2022-07-15 19:07:25 +00:00
Mozilla L10n Automation Bot
38096a487e [fenix] Import l10n. 2022-07-15 00:46:50 +00:00
MatthewTighe
7660235e97 [fenix] Fixes 24823: remove recent synced tab when logged out 2022-07-14 21:46:05 +00:00
Mozilla L10n Automation Bot
77bda3f7a5 [fenix] Import l10n. 2022-07-14 00:53:09 +00:00
AndiAJ
6a4b4b9344 [fenix] For https://github.com/mozilla-mobile/fenix/issues/24457 re-enable selectAndSearchTextTest UI test 2022-07-13 14:48:33 +00:00
mcarare
fb4f6729b7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25994: Make installToHomescreen item a collapsing menu limit.
The item is visible instead of addToHomeScreenItem when
current session can be installed as a PWA.
2022-07-13 13:14:04 +00:00
Mozilla L10n Automation Bot
24ff97e098 [fenix] Import l10n. 2022-07-13 00:48:30 +00:00
AndiAJ
209b4b4cf6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25992 https://github.com/mozilla-mobile/fenix/issues/25832 and https://github.com/mozilla-mobile/fenix/issues/25710 fix flaky PWA UI tests 2022-07-12 20:08:17 +00:00
AndiAJ
d00671f58f [fenix] For https://github.com/mozilla-mobile/fenix/issues/25796 fix flaky allowNotificationsPermissionPromptTest UI test 2022-07-12 14:05:59 +00:00
Mozilla L10n Automation Bot
6957043686 [fenix] Import l10n. 2022-07-12 01:01:52 +00:00
mike a
b59bddfa62 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/25937: update library item text size, change text size in synced and recently closed nav items, change remove icon size to wrap content 2022-07-11 22:58:26 +00:00
mike a
b473a562d3 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/25937: update history list element design 2022-07-11 22:58:26 +00:00
Mozilla L10n Automation Bot
f1fc74f179 [fenix] Import l10n. 2022-07-11 22:25:14 +00:00
Jonathan Almeida
c1a3625559 [fenix] Close https://github.com/mozilla-mobile/fenix/issues/25982: Fix check between current and new when adding a bookmark 2022-07-11 21:41:40 +00:00
AndiAJ
0ca21a0af5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/17485 fix disabled manageDownloadsInDownloadsMenuTest UI test 2022-07-11 16:15:54 +00:00
Alexandru2909
09349c9496 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25829 - String updates for Sync 2022-07-11 13:58:15 +00:00
Mozilla L10n Automation Bot
6edf71b4ac [fenix] Import l10n. 2022-07-10 00:46:30 +00:00
Mozilla L10n Automation Bot
c7b56d7044 [fenix] Import l10n. 2022-07-09 00:52:48 +00:00
Arturo Mejia
9c921c5eb8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25938: Address MessageCard text not adapting to the dark theme 2022-07-08 14:17:57 +00:00
Arturo Mejia
597aac0c72 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25915: Remove the hard coded default browser message 2022-07-07 22:16:25 +00:00
Gabriel Luong
6f074ed4b8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25935 - Catch NimbusFeatureException from calling FxNimbus value getter 2022-07-07 21:14:07 +00:00
Gabriel Luong
e0864dda85 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25933 - Ensure sponsored tiles are enable if enrolled in active experiment 2022-07-07 19:28:33 +00:00
sv-ohorvath
bbb46c8142 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25852: Fixes visibility issue of private tabs notification in UI tests 2022-07-07 14:50:23 +00:00
AndiAJ
3bea2862be [fenix] For https://github.com/mozilla-mobile/fenix/issues/25034 fix disabled redirectToAppPermissionsSystemSettingsTest UI test 2022-07-07 09:11:08 +00:00
Mozilla L10n Automation Bot
819ea3bf82 [fenix] Import l10n. 2022-07-06 00:57:46 +00:00
Arturo Mejia
3c58b8e405 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25736: Add experiment for Total cookie protection. 2022-07-05 19:07:05 +00:00
Aaron Train
e176468d38 [fenix] No issue: Refactor UIDevice calls in UIAutomator code 2022-07-05 18:20:56 +00:00
AndiAJ
dd62d85d42 [fenix] Fix and re-enable findInPageTest UI test 2022-07-05 15:06:05 +00:00
sv-ohorvath
2a6354ab8c [fenix] No issue: Tag problematic UI tests to run on API 28 only 2022-07-05 14:23:53 +00:00
AndiAJ
7bfb88b498 [fenix] For https://github.com/mozilla-mobile/fenix/issues/24573 fix disabled openExternalLinksInPrivateTest UI test 2022-07-05 13:45:28 +00:00
rxu
84ddaab605 [fenix] Disable marketing telemetry until privacy pop window approved in Mozillaonline builds 2022-07-05 08:04:47 +00:00
mcarare
6260f3fc24 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25846: Save the City field in addresses. 2022-07-04 13:58:25 +00:00
Alexandru2909
ae62eb26cb [fenix] For https://github.com/mozilla-mobile/fenix/issues/24528 - Remove isPrivate conditional in getTheme in favor of inComposePreview 2022-07-04 06:18:38 +00:00
AndiAJ
98814e83d4 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25551 fix disabled openLinkInAppTest 2022-07-01 06:48:08 +00:00
Roger Yang
f00965969a [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/25805: Always anchored unified search menu to the toolbar icon 2022-06-30 16:53:13 +00:00
AndiAJ
e18e3c9929 [fenix] For https://github.com/mozilla-mobile/fenix/issues/23237 minor refactoring work for privateTabsTrayWithOpenedTabTest UI test 2022-06-30 15:19:57 +00:00
Aaron Train
524034f141 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25061: Update debug maxSdkVersion for screenshots
For https://github.com/mozilla-mobile/fenix/issues/25061 - update debug maxSdkVersion to 30, and override instead of merge on main manifest
2022-06-30 04:54:56 +00:00
mcarare
751f097c0a [fenix] For https://github.com/mozilla-mobile/fenix/issues/25815: Fix interactor calls for address management. 2022-06-29 22:30:03 +00:00
Alexandru2909
9e08ecfb89 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25764 - Prevent sponsored shortcut URLs from appearing as frecent shortcuts 2022-06-29 20:14:35 +00:00
mcarare
1e62fa558b [fenix] For https://github.com/mozilla-mobile/fenix/issues/25401: Update data review link. 2022-06-29 18:30:54 +00:00
Mugurell
a1dc04f22b [fenix] For https://github.com/mozilla-mobile/fenix/issues/25401 - Add the PocketIntegration Glean annotation tag to all Pocket telemetry 2022-06-29 18:30:54 +00:00
Mugurell
0c972d3ae9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25401 - Record Pocket sponsored stories telemetry 2022-06-29 18:30:54 +00:00
Mugurell
82003c9071 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25401 - Improve how sponsored stories impressions are reported
While testing I observed that the Rect returned from `boundsInWindow()`
- will have the full height and width of the composable even if scrolled
offscreen vertically
- will only have the height and width of what part of the composable is shown
pn the screen.
Possibly because of the interactions of a vertically scrollable RecyclerView
and the LazyRow the composable is shown in.

To account for this the method calculating how much of the composable is shown
on screen will also now receive the real composable size as an argument.
2022-06-29 18:30:54 +00:00
mcarare
29747b2095 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25658: Update metrics test. 2022-06-29 17:52:51 +00:00
mcarare
6d88fc1391 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25538: Update data review link. 2022-06-29 17:52:51 +00:00
Mugurell
961e6ad5d8 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25538 - Add the "Wallpapers" tag to the new telemetry
By using a feature tag we can avoid having to define new tags in the Glean
annotations repository.

The list of available tags needed to be regenerated to be able to reference the
new "Wallpapers" tag.
Because the tags regeneration also brought a change in tags from "TopSites" to
"Shortcuts" all previous telemetry using "TopSites" had to be migrated to use
the new "Shortcuts" tag.
2022-06-29 17:52:51 +00:00
Mugurell
5edcbb7f73 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25538 - Add "metrics" telemetry for if default wallpaper is shown 2022-06-29 17:52:51 +00:00
Mugurell
8c48cca825 [fenix] For https://github.com/mozilla-mobile/fenix/issues/25538 - Add a simple way to check if the default wallpaper is to be shown
A previous check for whether the persisted name of the current wallpaper is
empty made checking whether the default wallpaper is to be shown brittle.
Instead of duplicating such a check in multiple places it is now extracted in
one method that can be used in multiple places including the new telemetry.
2022-06-29 17:52:51 +00:00
Arturo Mejia
9b6fd9047d [fenix] For https://github.com/mozilla-mobile/fenix/issues/25213: Add tabs prioritization experiment 2022-06-29 17:11:54 +00:00
Arturo Mejia
e05daef826 [fenix] No issue: Add number_of_app_launches custom attribute to nimbus messages. 2022-06-29 12:13:24 -04:00
Mozilla L10n Automation Bot
1d0c864b25 [fenix] Import l10n. 2022-06-29 01:30:27 +00:00
Marc Leclair
4fe2ec1188 [fenix] Fixed PR review 2022-06-29 00:54:30 +00:00
Marc Leclair
6294425de6 [fenix] Lint fixes 2022-06-29 00:54:30 +00:00
Marc Leclair
57b2f43a55 [fenix] Added strings and keys to XML 2022-06-29 00:54:30 +00:00
Marc Leclair
6126e10dd5 [fenix] Added start and stop dialog fo navigation xml 2022-06-29 00:54:30 +00:00
Marc Leclair
5e2ee0ae2e [fenix] Added profiler option to SettingsFragment 2022-06-29 00:54:30 +00:00
Marc Leclair
48d2188d8c [fenix] Added ProfilerUtils 2022-06-29 00:54:30 +00:00
Marc Leclair
e6fa624820 [fenix] Added ProfilerReusableComposable 2022-06-29 00:54:30 +00:00
Marc Leclair
3d528fa2dd [fenix] Added ProfilerStopDialogFragment 2022-06-29 00:54:30 +00:00
Michael Comella
bc4f52ed63 [fenix] Added ProfilerStartDialogFragment. 2022-06-29 00:54:30 +00:00
Marc Leclair
27fbf6437c [fenix] For https://github.com/mozilla-mobile/fenix/issues/14854: Added ProfilerViewModel 2022-06-29 00:54:30 +00:00