Commit Graph

4876 Commits (ba611e848ec0ddbdcbab07b662b940e07cd87c5a)

Author SHA1 Message Date
indu ac31a1ace4 For #25455 : Let A-C handle toolbar expanding when URL changes
This fix allows the toolbar to be visible after the user clicks on a link and scrolls

Co-Authored-By: Mugurell <Mugurell@users.noreply.github.com>
2 years ago
Arturo Mejia 6a33f29a91 Revert "For #24455 - Migrate NoCollectionsMessageViewHolder to Compose"
This reverts commit 7b895aba
2 years ago
Noah Bond 08a84f8353 For #21897 - Convert inactive tabs to compose 2 years ago
mcarare 48cb5ec268 For #25505: Clear the stored result in case there is no listener with the same key set.
This is the case when the sharing happens outside the tabs tray.
2 years ago
sunil9211 f89e2f4aca For #20848 - Hide Download List delete icon in multiselect mode 2 years ago
Noah Bond 9520b8c1f3 For #25379 - Plug FenixTypography into ListItem, Button, TextButton, and ExpandableListHeader 2 years ago
Noah Bond 4c118f4816 For #25379 - Create a Compose Typography system 2 years ago
Roger Yang 519f3f96fc No issue: Cleanup default toolbar menu 2 years ago
Mugurell 392f585ba0 For #25459 - Show Pocket sponsored stories irrespective of topics selections 2 years ago
mcarare d20ba1d0fe For #25437: Fix label values for labeled counters. 2 years ago
Roger Yang ff683c67e0 Close #25449: Use "Enter search terms" as hint when using application search engine 2 years ago
Arturo Mejia c9240e20ed No issue: Renew/Remove metrics set to expire in v104 2 years ago
MatthewTighe 3fab791980 fixes #24918: add subregion dropdown to address editor 2 years ago
MatthewTighe 07d4a8599d fixes #25386: turn task continuity on by default for nightly 2 years ago
Gabriel Luong 72a2ee688f For #24300 - Add Tabs to the search engine menu 2 years ago
Alexandru Putanu b9b1124b66
For #25397 - Telemetry for credit card save and update (#25411)
* For #25397 - Telemetry for credit card save and update

* Use Fenix Issue fro Bugs

Co-authored-by: Gabriel Luong <gabriel.luong@gmail.com>
Co-authored-by: Roger Yang <royang@mozilla.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2 years ago
Mugurell 849d922038 For #25352 - Add a new FML feature to gate Pocket sponsored stories 2 years ago
Roger Yang 229b949650 Issue #24301: Add Bookmarks to the search engine menu 2 years ago
Mugurell 666c839eb7
For #24040: App should not crash when the search widget is clicked while PIP mode is active (#25410)
When the search event is from the search widget while PIP is active, the search fragment opens after the screen is unlocked. This avoids the issue of the search page opening in landscape mode and also the app doesn't crash.

Co-Authored-By: Mugurell <Mugurell@users.noreply.github.com>

Co-authored-by: indu <indu@ramkystech.com>
2 years ago
Arturo Mejia d2c1893cf9 For #25212: Add tabs prioritization 2 years ago
Mugurell 12070cb7b8 For #25281 - Improve stories impressions recording.
This fixes the following two scenarios resulting in improper recordings:
- sponsored stories were recorded as shown as part of the impressions recording
for all the stories (both recommended and sponsored). Separated the two.
- sponsored stories were not recorded as shown if the user doesn't scroll.
This could happen if just toggling categories which would result in a new list
of stories to show. Will recheck after the time to settle if the composable is
shown.
2 years ago
Mugurell 41a1f31a84 For #25281 - Consider the toolbar when reporting stories visibility
The toolbar may appear over the Pocket stories causing our functionality for
reporting when a specific story is visible to misreport.
At the moment hardcoding the toolbar height in the visibility checks seems like
the best solution to ensure reliable data.
2 years ago
Mugurell 0b972660ca For #25281 - Allow the Pocket section to settle before reporting impressions
Currently just a hack that will ensure more reliable data.
This will have to be re-evaluated after the homescreen is migrated to compose.
2 years ago
Mugurell dfa5281b23 For #25281 - Pace and rotate sponsored stories
A new way to be able to reliably record actual impressions of sponsored stories
was needed and based on this data we can ensure we are promoting fresh stories
(with fewer impressions) or the ones with a higher priority.
2 years ago
Roger Yang 2b777c3428 Issue #24299: Do not show history search engine in the search settings 2 years ago
Arturo Mejia b7c1f8ef6b Revert "For #23966 - Migrate MessageCardViewHolder to Compose"
This reverts commit aea6124851.
2 years ago
Noah Bond ebd97f5a34 For #25291 - Swap the new TextButton composable into WallpaperSettings 2 years ago
Noah Bond 2165ae501a For #25291 - Create a TextButton composable component 2 years ago
Roger Yang 3de38984fd Issue #24299: Sort unified search selector menu items based on user settings 2 years ago
mcarare 0127b39fad For #25313: Handle exceptions when getting ClipData.Item. 2 years ago
Mugurell 2343b7534c For #25311 - Set tokens used when communicating with Pocket 2 years ago
Arturo Mejia 98e3b8bf52 For #25374: Skip action validation for control messages 2 years ago
Mugurell 75a2ed8c30 For #25025 - Old imports cleanup.
Importing `R.string` does allow to avoid the `R` when using a String from
Resources but seems like a small gain to break app consistency.
2 years ago
Mugurell 2074131a58 For #25025 - Show sponsored stories on debug only
The design asks for a new row in between the primary and the secondary text so
I went with making "ListItemTabSurface" public allowing for customizing the
content it will show but keeping the same layout and general UX.
2 years ago
Mugurell 06d4384c11 For #25025 - Rename PocketStoriesChange to PocketStoriesClean
PocketStoriesChange was called only once - to clean the shown stories when the
user gets to the homescreen and the Pocket feature is disabled - useful for the
situations in which the user returns after disabling the feature in settings.

Populating the store with recommended stories to show was already happening
based on 'PocketStoriesCategoriesChange' and sponsored stories will be added by
using 'PocketSponsoredStoriesChange' so renaming 'PocketStoriesChange' will
help on reducing any confusion in the future.

Also added documentation for all Pocket related actions from AppStore and
removed the 'UndocumentedPublicClass' detekt suppressions.
2 years ago
Mugurell bd1feeaac9 For #25025 - Download sponsored stories on debug only 2 years ago
Mugurell 1c7e788bae For #25025 - Use the `PocketStory` supertype
This prepares extending support from just `PocketRecommendedStory` to
`PocketSponsoredStory` also.
2 years ago
Mugurell abff68a31b For #25025 - Hardcode showing at max 8 Pocket stories
The default was already 8. This is now being moved closer to the source from
where the stories to be shown are emitted.
With the addition of sponsored stories at fixed positions having to support a
variable number of stories being returned from AppState#getFilteredStories
means increased complexity with no benefit.
2 years ago
sarah541 aea6124851 For #23966 - Migrate MessageCardViewHolder to Compose 2 years ago
mike a 3904cb9340 Closes #25368: duplicate items in history
Change pagination to be based on loadSize of DataSource
2 years ago
mcarare a0a02e5627 For #25360: Selectively update addresses preference only when needed. 2 years ago
Alexandru2909 73dcc0c6d6 For #23173 - CheckChanged use a single variable instead of two for checked status 2 years ago
Alexandru2909 bea17a4ab8 For #23670 - Update collection on tab removal 2 years ago
mcarare cb4f8ed0c0 For #24968: Add preference for enabling/disabling addresses autofill.
For #24968: Add preference for enabling/disabling addresses autofill.
2 years ago
Robert-Aron293 76ea2fa3e4 For #22310 - Change tab holder's checkbox state when pressing "Select All"/"Deselect All" 2 years ago
Roger Yang 5bb9e50e96 Close #25288: Disable autocomplete for unified history search 2 years ago
JLRoberts 479e44b0a1 For #23700 - HistoryFragment: Exit edit mode when multi-selection is opened in tabs or shared.
This mirrors behavior currently in Bookmarks library with the same actions.
2 years ago
Gabriel Luong f25129c8ac For #24991 - Refactor the HomeMenu creation from HomeFragment to HomeMenuBuilder 2 years ago
MatthewTighe 676d7090f0 Fixes #24917: add country dropdown to address editor 2 years ago
Gabriel Luong 9a965e420d For #25119 - Add Secondary, Tertiary and Destructive Button composable components 2 years ago
James Hugman 165ce0151e Filter messaging experiments from the Studies screen 2 years ago
Gabriel Luong 0001f00f40 For #24936 - Replace ListItemIcon with IconButton and Icon 2 years ago
Roger Yang 7f29461c75 Issue #24299: Add history to the search engine menu 2 years ago
Gabriel Luong 9e8ee28e40 For #25264 - Refactor toShortUrl extension function from TabSessionState to String 2 years ago
Mugurell a93e434f0d For #24316 - Migrate TabInCollectionViewHolder to Compose 2 years ago
jhugman 30fa80151d
Change FxNimbus/Nimbus startup sequence (#25266)
* Change FxNimbus initialization sequence

Add cache invalidation

* Change ordering of message restoration and Nimbus initialization

* Address reviewer comments
2 years ago
Arturo Mejia 9a27030f87 For #25209: Avoid trying to download wallpapers without a server URL. 2 years ago
Arturo Mejia d16d61c055 No issue: Add extension function to TabSessionState for shortening urls safely. 2 years ago
sarah541 c09f899da4 For #25176 - Refactor TabTitle and TabSubtitle 2 years ago
dlp 4c223aa540 For #24660 - Overrided contentsSameAs inside TabInCollectionItem class. 2 years ago
Arturo Mejia 073f3ecc30 For #25145: Unify behavior for opening systems setting for updating the default browser preference 2 years ago
Arturo Mejia 1384414327 Revert "Change FxNimbus initialization sequence (#25089)"
This reverts commit 51ba7ab463.
2 years ago
jhugman 51ba7ab463
Change FxNimbus initialization sequence (#25089)
* Change FxNimbus initialization sequence

* Add cache invalidation
2 years ago
Gabriel Luong 63ca6791c1 For #25179 - Display a save or update credit card prompt 2 years ago
Mugurell 1e3319f0e8 For #24333 - Replace the xml based CollectionViewHolder with a composable 2 years ago
Mugurell 2126c7eeb4 For #24333 - Move CollectionViewHolder to home/collections
Doing just a file move in a separate commit will ensure git history of the file
is kept when this will be later updated.
2 years ago
sarah541 7b895abab1 For #24455 - Migrate NoCollectionsMessageViewHolder to Compose 2 years ago
MatthewTighe 483f5a9f12 for #24931: create address label and description based on available data 2 years ago
mcarare 59c5033529 For #24966: Navigate back to previous screen when the last address is deleted. 2 years ago
mcarare a4a78717af For #24919: Add option menu in the address editor. 2 years ago
mcarare 2192d55da3 For #24854: Add ability to delete an existing address. 2 years ago
mcarare 4369c0b920 For #24855: Allow updating info for an existing address. 2 years ago
bendk e5b0069791
Application services 93.0.1 (#24904)
* Fixup breaking changes from AppServices upgrade to 93.0.0

* android-components RemoteTabsStorage now requires a Context param

* Update Android Components version to 102.0.20220509214046

Co-authored-by: James Hugman <james@hugman.tv>
Co-authored-by: Mark Hammond <mhammond@skippinet.com.au>
Co-authored-by: Jonathan Almeida <jalmeida@mozilla.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2 years ago
Roger Yang 72b9e7e174 Issue #24738: hide the QR code button when switching to none default search engine 2 years ago
Gabriel Luong d6996b56a0 For #25113 - Remove showClearSiteData feature flag 2 years ago
Arturo Mejia b22a34db2e For #25110: Enable the messaging framework feature 2 years ago
Noah Bond 3e9dbaca35 For #25135 - Replace Button in SyncedTabs with PrimaryButton 2 years ago
Alexandru2909 89a1e6367f For #24262 - Filter Amazon/eBay sponsored tiles when the respective search engine is set 2 years ago
sarah541 2c50a229cc For #25015 - Add a compose version of PrimaryButton
bleh
2 years ago
Gabriel Luong 251acf8db4 For #25117 - Move HomeSectionHeader into its proper package 2 years ago
Gabriel Luong da1c5b9bf7 For #25115 - Remove showWallpapers feature flag 2 years ago
Gabriel Luong 957d9c487c For #25111 - Remove contileFeature feature flag 2 years ago
Alexandru2909 e0a6a9498d For #24971 - Split full name from Address editor into first, middle and last name 2 years ago
Jonathan Almeida 6752a6ba22 Close #25091: Remove deprecated TrustedWebActivityIntentProcessor 2 years ago
MatthewTighe 2b1606cf34 for #24665: show recent synced tab faster 2 years ago
Arturo Mejia 3a7299d301 For #25091: Deprecate TrustedWebActivityIntentProcessor 2 years ago
mcarare ffa1ecd300 For #21292: Remove unused MetricController parameters. 2 years ago
Mugurell 8b56a2ebc7 For #25044 - Remove the broken code for focusing the newly created collection
This functionality seems broken for a long time now.
It's importance and whether to reimplement it is to be re-assessed in
https://github.com/mozilla-mobile/fenix/issues/24389
2 years ago
Alexandru2909 56c31cd675 For #24514 - Remove Fact.toEvent from MetricController 2 years ago
Arturo Mejia d74b4b02df For #25017: Remove promotional wallpapers 2 years ago
mcarare f028dbc03b For #25003: Pop back stack on main thread. 2 years ago
sarah541 538e06d73c No issue: Renew/Remove metrics set to expire in v102
No issue: Renew/Remove metrics set to expire in v102
2 years ago
mcarare d0548ebab5 For #24849: Fix saving phone and email values to an address. 2 years ago
mcarare 24acedf406 For #24707: Remove unused metrics parameter. 2 years ago
MatthewTighe 30666f7c94 Revert #24894: settings should not be used to cache previous auth state 2 years ago
mike a 8e9464fee3 Closes #24307: add synced history empty fragment, feature flag and history screen showing only local files 2 years ago
mcarare d9b14cfe07 For #24935: Dismiss keyboard on add address fragment stop. 2 years ago
mike a a066dddce9 Closes #24513: add undo snackbar to history group screen 2 years ago
Arturo Mejia 916c931346 For #24949: Remove malformed message when evaluating it. 2 years ago
Roger Yang 4a69f4ecf9 Issue #24739: Set QR code button to autohide 2 years ago
Gabriel Luong a5f5d5fb2d For #24850 - Display an address list for managing existing addresses 2 years ago
MatthewTighe 0f952284e6 for #24929: remove locale restriction for remote firefox wallpapers 2 years ago
Noah Bond cc771df50f For #24524 - Refactor FaviconListItem into SyncedTabs 2 years ago
Gabriel Luong 25ffce77c0 For #24849 - Add an address editor screen 2 years ago
Mugurell 5e7e83b20f For #24908 - Reverse the chevrons direction in ExpandableListHeader 2 years ago
MatthewTighe ccb3d33e8b for #24665: cache previous auth status and display placeholders accordingly 2 years ago
MatthewTighe b746295da1 for #24665: remove unused fxaHasSyncedItems setting 2 years ago
mavduevskiy 602f55b5d2
For #23665 - Make the undo snackbar for the library screens work globally (#24398)
* Closes #23665: make snackbar work after leaving the fragment it was initiated from

* Closes #23665: bring back the removed bookmark navigation test, sort imports alphabetically

Co-authored-by: mike a <mavduevskiy@gmail.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2 years ago
mcarare 927ab1ccae For #24758: Remove wrapper from browser search metrics. 2 years ago
Arturo Mejia 5982990e17 For #20872: Prevent crash when updating pending Bookmarks to be deleted without a selected folder. 2 years ago
Mugurell 307e6b961b For #24897 - Move clickable handling to the parent in ExpandableListHeader
ExpandableListHeader provides a consistent UX for similar usecases.

Needed to update it to allow clicks to be handled by a parent and it not
stealing the click or shown an improper Indication.
2 years ago
Noah Bond 945dd0d029 For #24873 - Update ListItem with the Favicon Modifier and fix previews 2 years ago
Noah Bond 07a444c5a0 For #24873 - Add a modifier parameter to the Favicon Composable 2 years ago
tristan-jea f1070e05c2 For #23813 - Clear error message for nameOnCardLayout when valid name is submitted 2 years ago
Noah Bond 6df5bd7d74 For #24338 - Make a reusable list item Composable 2 years ago
Gabriel Luong aff4c03d53 For #24856 - Toggle the "Manage addresses" and "Add address" preference label depending on whether there are saved addresses 2 years ago
Alexandru2909 6a7f335107 For #24836 - Remove Event.wrapper for RecentlyVisitedHomepage telemetry 2 years ago
Alexandru2909 45d965c5e8 For #24811 - Remove Event.wrapper for Messaging telemetry 2 years ago
Roger Yang 2b8cf67a97 Issue #24733: Create nimbus feature for Unified Search experimentation 2 years ago
Mugurell a6871f9b7e For #11753 - Update compose to 1.1.1 and Kotlin to 1.6.10
The needed changes are around supporting exhaustive whens for sealed classes
as a new kotlin feature - https://kotlinlang.org/docs/whatsnew1530.html#exhaustive-when-statements-for-sealed-and-boolean-subjects

androidx_activity_compose was removed as a dependency since it isn't used.

Used 1.6.10 for Kotlin although 1.6.20 is available to prevent any issues with
Compose 1.1.1 reported as an error at compile time:
"e: This version (1.1.1) of the Compose Compiler requires Kotlin version 1.6.10
but you appear to be using Kotlin version 1.6.20 which is not known to be
compatible. Please fix your configuration (or
`suppressKotlinVersionCompatibilityCheck` but don't say I didn't warn you!)."
2 years ago
Gabriel Luong a8a3231a50 For #24847 - Part 2: Refactor AutofillFragmentStore into the autofill package 2 years ago
Gabriel Luong 22056752e4 For #24847 - Part 1: Refactor CreditCardsFragmentStore to AutofillFragmentStore 2 years ago
mcarare 3057ae7fd7 For #24841: Remove unused events. 2 years ago
Gabriel Luong 11448ddd88 For #24845 - Add Address preference category to Autofill settings 2 years ago
Alexandru2909 5a21e75267 For #24760 - Remove Event.wrapper for suggestions telemetry 2 years ago
Alexandru2909 09c93f0fce For #24838 - Remove Event.wrapper for Tabs telemetry 2 years ago
Noah Bond 774b63f9e8 For #20811 - Fix synced tabs error button width 2 years ago
Gabriel Luong 6b0c8233de For #24780 - Part 4: Refactor AutofillSettingFragment to its own package 2 years ago
Gabriel Luong ed07b8cb61 For #24780 - Part 3: Show the correct toolbar title if address autofill is enabled 2 years ago
Gabriel Luong 61bc862657 For #24780 - Part 2: RenameCreditCardsSettingFragment to AutofillSettingFragment in nav_graph.xml 2 years ago
Gabriel Luong 2b86e25a4a For #24780 - Part 1: Rename CreditCardsSettingFragment to AutofillSettingFragment 2 years ago
mcarare c28476c9cb For #24206: Fix extra key values for context menu metrics. 2 years ago
Alexandru2909 3678b124e0 For #24790 - Remove Event.wrapper for home screen related telemetry 2 years ago
mcarare 14082b117c For #24789: Remove wrapper from PWA metrics. 2 years ago
Alexandru2909 62b89da057 For #24809 - Remove Event.wrapper for RecentSearches telemetry 2 years ago
Alexandru2909 bdac21e54d For #24786 - Remove Event.wrapper for SearchTerms telemetry 2 years ago
mcarare 68f71c6f1d For #24761: Remove wrapper from autoplay settings metrics. 2 years ago
Alexandru2909 dea01450e5 For #24759 - Remove Event.wrapper for text selection context menu telemetry 2 years ago
Alexandru2909 1051a98c02 For #24710 - Remove Event.wrapper for RecentBookmarks telemetry 2 years ago
Alexandru2909 9ff4f373ec For #24707 - Remove Event.wrapper for CreditCards telemetry 2 years ago
mcarare b8a59b2602 For #24711: Remove wrapper from recent tabs metrics. 2 years ago
Gabriel Luong cf53a84278 For #24747 - Remove unused store property in SessionControlAdapter and SessionControlView 3 years ago
Alexandru2909 cc893aa641 For #24706 - Remove Event.wrapper for Autofill related telemetry 3 years ago
mcarare eb82cfef78 For #24206: Remove wrapper from context menu metrics. 3 years ago
Arturo Mejia 120113abff Enable messaging framework in nightly 3 years ago
Roger Yang bf7b8f97c4 Issue #24733: Setup search for Unified Search experimentation 3 years ago
Gabriel Luong 8fe9c5bdd1 For #24297 - Add a search engine menu that shows the search engine and search settings 3 years ago
mcarare dfe23e8b77 For #24211: Remove wrapper from search related metrics.
Removes wrapper from search labeled counter and performed search event.
3 years ago
mcarare 00156907c0 For #24211: Remove wrapper from "has open tabs" boolean metric. 3 years ago
MatthewTighe eca84dfa3d for #24718: add two remote firefox wallpapers 3 years ago
Alexandru2909 e558ec279a For #24701 - Remove Event.wrapper for Pocket related telemetry 3 years ago
Alexandru2909 06fba96dfb For #24709 - Remove Event.wrapper for Wallpapers telemetry 3 years ago
mcarare bd599caa83 For #24205: Remove wrapper from set default browser toolbar menu.
This metric is recorded in the context of the default browser experiment.
3 years ago
mcarare 3c8e539366 For #24715: Remove obsolete addon installed metric. 3 years ago
mcarare b0c5148de9 For #24715: Remove wrapper from addons metrics. 3 years ago
Mugurell 13e1a22a8d For #24596 - Only restore Pocket categories selections once
This fixes a regression from migrating from HomeStore to Appstore but
indirectly by ensuring that previous categories selections are only restored
once, not everytime user selects a new category and that change is persisted.
3 years ago
Alexandru2909 120176f3b4 For #24605 - Remove Event.wrapper for MediaState telemetry 3 years ago
Alexandru2909 fd021b2819 For #24642 - Remove Event.wrapper for TopSites metrics 3 years ago
Alexandru2909 b57219b190 For #24708 - Remove Event.wrapper for DarkThemeSelected telemetry 3 years ago
MatthewTighe 414a54ed02 for #24549: add telemetry for recent synced tab 3 years ago
Mugurell e006538c63 For #24618 - Add WebNotificationIntentProcessor to IntentReceiverActivity
The processor from Android-Components will know how to handle the intent
specific to web notifications clicks.
3 years ago
Mugurell 5383d3ed63 For #24618 - Add Fenix own ServiceWorkerSupport
This replaces the default implementation from Android-Components to add the
functionality to first navigate to the browser fragment before responding to
service workers' requests of opening new tabs.

This will register itself when the main activity is created and unregister
itself when that activity is destroyed to support requests even when the
activity is in background but prevent any leaks.
3 years ago
Alexandru2909 4d0b79192d For #24638 - Remove Event.wrapper for Logins telemetry 3 years ago
Alexandru2909 f170772f0c For #24599 - Remove Event.wrapper for Tab telemetry 3 years ago
Alexandru2909 8c617b7c07 For #24640 - Remove Event.wrapper for VoiceSearch telemetry 3 years ago
Alexandru2909 3c78b14321 For #24215 - Remove Event.wrapper for CustomTab metrics 3 years ago
Alexandru2909 43bed6e765 For #24591 - Remove Event.wrapper for ReaderMode telemetry 3 years ago
Alexandru2909 eaaa5ddcdb For #24603 - Remove Event.wrapper for MediaNotification telemetry 3 years ago
Alexandru2909 e571f0bb3a For #24498 - Remove Event.wrapper for History metrics 3 years ago
MatthewTighe dbfd5ffca0 for #24177: sync tabs when home is shown 3 years ago
Gabriel Luong 38bde17fc4 For #24653 - Fix Text Action Secondary color in FirefoxTheme 3 years ago
Mugurell e485cf508e For #24648 - Add a Modifier extension method to draw a dashed border
Co-authored-by: Gabriel Luong <gabriel.luong@gmail.com>
3 years ago
Gabriel Luong 6564c510e1 For #24645 - Update dark theme Action Secondary to LightGrey30 3 years ago
mcarare 49f352d52d For #24210: Remove wrapper from preference toggled events. 3 years ago
mcarare ac1eeec57a For #24210: Remove wrapper from opened link event. 3 years ago
mcarare 09e5394af6 For #24210: Remove wrapper from opened synced tab event. 3 years ago
mcarare a9c41774ea For #24210: Remove wrapper from recently closed tabs opened event. 3 years ago
mcarare dbc329f8b6 For #24210: Remove wrapper from copy url event. 3 years ago
mcarare cbcf2d12dd For #24210: Remove wrapper from home button clicked event. 3 years ago
mcarare 496b42db0a For #24210: Remove wrapper from tab list view setting changed event. 3 years ago
mcarare 319d3846c2 For #24210: Remove wrapper from whats new tapped event. 3 years ago
mcarare 668008c341 For #24210: Remove wrapper from uri opened count. 3 years ago
mcarare 6f2de0e2bd For #24210: Remove wrapper from displaying toolbar menu event. 3 years ago
mcarare 1d457a8f2f For #24210: Remove wrapper from "default browser" events. 3 years ago
mcarare 3947a613f4 For #24210: Remove wrapper from "browser menu item tapped" event. 3 years ago
mcarare 3931cd5c1e For #24210: Remove wrapper from "url entered" event. 3 years ago
mcarare 51df82acb1 For #24210: Remove wrapper from "search bar tapped" event. 3 years ago
mcarare 4c738cbf10 For #24210: Remove wrapper from "app opened" event. 3 years ago
Gabriel Luong 8b01528f5b For #24616 - Update all the strings that references "top site" to "shortcut" 3 years ago
Roger Yang a4dc80adbc Issue #24298: Refactor Scan button from the search toolbar into the display toolbar 3 years ago
Alexandru2909 ee7c268302 For #24576 - Record delete collection metric 3 years ago
Roger Yang e6ca009e6a Issue #24611: Enable history improvement feature 3 years ago
jknair c38320c7c0 For #24461 - Increase touch target for scan, search engine & voice search button 3 years ago
Mugurell 526b9a17d7 For #24593 - Initialize Glean on all builds. Avoid Fennec check.
This completes the work for removing the Fennec migration support.
Before that, for Fenix release and beta, apps to which users might update to
from old Fennec builds the Glean initialization was done separately in
MigratingFenixApplication to allow time to first migrate user's telemetry
setting.
With the removal of the migration support it is now safe to initialize Glean in
the same way for all builds and remove that Fennec check.
3 years ago
Roger Yang 36c271cab3 Close #24550: Hide edit suggestion button for history and bookmarks search suggestions 3 years ago
Gabriel Luong 81167eb953 For #24556 - Handle preference change for the Contile preference 3 years ago
Sammy Khamis b6a0b41536
Don't crash when receiving a bad uri via send tab (#24326)
* don't crash when receiving a bad uri via send tab

* changed searchfox link to permalink

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
3 years ago
jhugman 2b36ca75bf Add defaults to FML, add control behaviour 3 years ago
Alexandru2909 480ab3dca7 For #24454 - Remove Event.wrapper for SyncAccount metrics 3 years ago
Alexandru2909 54e17f4e2d For #24512 - Remove Event.wrapper for RecentlyClosedTabs metrics 3 years ago
Alexandru2909 258f329046 For #24452 - Remove Event.wrapper for SyncAuth metrics 3 years ago
Alexandru2909 82901297cb For #24214 - Move bookmark removal events to BookmarkController 3 years ago
Alexandru2909 0a5b8c49a0 For #24214 - Remove Event.wrapper for BookmarksManagement metrics 3 years ago
Alexandru2909 740566992a For #24099 - Remove Event.wrapper for Collections telemetry 3 years ago
sarah541 3a039ca918 For #23971 - Migrate CollectionHeaderViewHolder to Compose
fix ktlint
3 years ago
Roger Yang 582d8ef52d Issue #24502: Sanitize external intents 3 years ago
Mugurell 6fb54b08f2 For #24331 - Support for opening new tabs when requested by service workers
Use the new `ServiceWorkerSupport` AC components for this.
Had to be installed in `FenixApplication` since there is a circular dependency
between the initialization of the required engine the `tabsUseCases` arguments.
3 years ago
Alexandru2909 da723ee2fd For #24209 - Remove Event.wrapper for CustomizeHome telemetry 3 years ago
Alexandru2909 0e5f75bfe2 For #24147 - Remove Event.wrapper for Search widget telemetry 3 years ago
Gabriel Luong 8652ff5bcf For #24519 - Add Private theme to FirefoxTheme 3 years ago
Gabriel Luong 33cb72b561 For #24518 - Enable Contile feature flag 3 years ago
Grigory Kruglov f1bd1a4ce1 Do not report caught exceptions to Sentry on release channel 3 years ago
Alexandru2909 a1243a8e9f For #24450 - Remove Event.wrapper for ErrorPage metrics 3 years ago
Alexandru2909 7cedc8b440 For #24208 - Remove Event.wrapper for LoginDialogFacts telemetry 3 years ago
Alexandru2909 f924f74434 For #24207 - Remove Event.wrapper for ToolbarSettings telemetry 3 years ago
Arturo Mejia 4389da7811 For #24222: Persist user interactions with nimbus messages 3 years ago
Gabriel Luong e950ec3f4d For #24319 - Migrate PrivateBrowsingDescriptionViewHolder to Compose 3 years ago
Mugurell fab6b8d1d8 For #23337 - Customize the https-only mode error page 3 years ago
Noah Bond ccd8084dd4 For #24467 - Enable Contile setting telemetry 3 years ago
Alexandru2909 df702a2694 For #24204 - Remove Event.wrapper for Search_shortcuts telemetry 3 years ago
Mugurell 46d757ab54 For #16952 - Https-only mode support.
Default will be disabled with users having the possibility to enable this from
a new setting in the `Privacy and security` section.
If enabled then by default this force https for all tabs with the option for
users to switch to forcing https only on private tabs.
3 years ago
Alexandru2909 28db4caa8c For #24212 - Remove Event.wrapper for Preferences metrics 3 years ago
mike a a0f02b27be Closes #24276: add documentation to classes marked as UndocumentedPublicClass by lint 3 years ago
mike a 8ca01de0fa Closes #24276
– capitalize and stylize comments
– fix history items duplication
– fix refresh glitching after removing multiple history items
3 years ago
mike a ebf4ce2fe7 Closes #24276:
– remove unused import
– remove HistoryViewModel
3 years ago
mike a 5b481ad204 Closes #24276:
– make comments inside HistoryDataSource capitalized and informative
– remove scroll to first item in swipe-to-refresh
– change adapter initialization
– fixed SitePermissionsExceptionsFragment flickering empty state
3 years ago
mike a 548ff770f3 Closes #24276: removed unused Log import 3 years ago
mike a b934f3659c Closes #24276: fix history list displaying empty state until refresh 3 years ago
mike a 386c4da765 Closes #24276: moved getHistory() to suspend 3 years ago
mike a 9f699e2b40 Closes #24276: fixed history tests 3 years ago
mike a be3c53a73c Closes #24276: removed deprecated paging from SitePermissionsExceptionsFragment 3 years ago
mike a 7b5d3181df Closes #24276: updating pagination library, changing history related classes 3 years ago
Alexandru2909 ffbcaa82de For #24203 - Remove Event.wrapper for Onboarding telemetry 3 years ago
sarah541 3b39b4668f For #23968 - Migrate homescreen recent tabs to compose
For #23968 - Migrate homescreen recent tabs to compose
3 years ago
sarah541 ce7d2d1962 For #23969 - Migrate homescreen recent bookmarks to compose 3 years ago
sarah541 e11c9b2e8f For #23970 - Migrate homescreen recent visits header to compose 3 years ago
Brais Gabín 1f633edd7d For #23046 - Align detekt config between Fenix and Android Components
Co-authored-by: Gabriel Luong <gabriel.luong@gmail.com>
3 years ago
Noah Bond 57238fa5ca For #24467 - Enable Contile setting telemetry 3 years ago
MatthewTighe 387be0a135 closes #24442: refactor recent tabs to use common composables 3 years ago
Arturo Mejia bfeceb562d For #24224: Send telemetry events related to the messaging framework 3 years ago
mcarare 74eb9b9c1b For #24148: Remove wrapper from tracking protection metrics. 3 years ago
mcarare cb14837bc6 For #24098: Update tests for tabs tray metrics. 3 years ago
mcarare 1f18f62a5a For #24098: Remove wrapper from tabs tray metrics. 3 years ago
Sebastian Kaspari 834d0ee12d Issue #22489: Remove "Fennec to Fenix" migration code 3 years ago
Jonathan Almeida f953c5ec94 For #24220 and #24223: Connect GleanPlumb messages with the new tab ui card.
Co-authored-by: Jonathan Almeida <jalmeida@mozilla.com>
3 years ago
Elise Richards 0b981dde5f
For #23503: Respect studies and telemetry prefs when manually opting in to studies (#23955)
* For #23503: Respect studies pref and telemetry enabled pref when manually opting in to studies

* Add button to snackbar in nimbus secret settings that allows user to go directly to their data collection prefs

* Remove refactoring

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
3 years ago
Noah Bond 280afc9d0b For #24394 - Replace custom synced tabs header with new generic header 3 years ago
Christian Sadilek 47f55924e1 Address breaking changes in A-C 100.0.20220324222826 3 years ago
Roger Yang db46dd3a13 Close #24414: Enable Clear Site Data 3 years ago
Noah Bond f8a4661691 For #24337 - Make a reusable section header for lists in Compose 3 years ago