Commit Graph

7979 Commits (bc1c89d796d7f8a8ef4eb224053afda91efe2fe2)
 

Author SHA1 Message Date
MickeyMoz c4ff293aa6 [fenix] Update Android Components version to 96.0.20211126190059. 3 years ago
Mozilla L10n Automation Bot 6f49599ea3 [fenix] Import l10n. 3 years ago
Gabriel Luong c7aea80bb2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22595 - Remove unused OnboardingAutomaticSignInViewHolder 3 years ago
MickeyMoz 7faa6eb5f5 [fenix] Update Android Components version to 96.0.20211126143140. 3 years ago
Heitor Neiva 197ca446f5 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22556 - Update to latest taskgraph revision + path changes 3 years ago
Sebastian Kaspari f1a4296eb6 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22552: Optimize PNGs with ImageOptim 3 years ago
Gabriel Luong 5b069b2ece [fenix] For https://github.com/mozilla-mobile/fenix/issues/22211 - Use Hero images for Recent Bookmarks 3 years ago
Arturo Mejia 72a0b5703c [fenix] Update Android Components version to 96.0.20211125162700. 3 years ago
Arturo Mejia 4cc4e1c67d [fenix] Improve loading URLs 3 years ago
Sebastian Kaspari 798c9bc294 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/22580: Track APK size in perfherder 3 years ago
Sebastian Kaspari a65a9591b8 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/12731: Disable suspending of engine sessions under memory pressure in Nightly 3 years ago
Mugurell e665397890 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22442 - Don't display individual tab if part of the Jump back in tabs group
We'll show as a recent tab the next most recent tab not part of the last active
search group.
3 years ago
Mugurell 3dea07855e [fenix] For https://github.com/mozilla-mobile/fenix/issues/22442 - Don't display history group if already in Jump back in 3 years ago
AndiAJ c09104308d [fenix] New text search UI smoke tests 3 years ago
Mugurell 364119deea [fenix] For https://github.com/mozilla-mobile/fenix/issues/22502 - Keep the previous string resource until safe to remove
See https://github.com/mozilla-mobile/fenix/issues/20871
3 years ago
Matt Tighe 369af67f41 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22321: Add temporary protoc version workaround for M1 Macbooks 3 years ago
Gabriel Luong 6b5ce4d387 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22488 - Fix intermittent test failure with InactiveTabsControllerTest 3 years ago
Gabriel Luong 100d5372ee [fenix] For https://github.com/mozilla-mobile/fenix/issues/22250 - Convert Recent Bookmarks to Jetpack Compose 3 years ago
AndiAJ f2e74f31f8 [fenix] Improve expand/collapse collection UI test coverage 3 years ago
AndiAJ 62560b4d5c [fenix] Improve collection deletion UI coverage 3 years ago
Grisha Kruglov ca22bb6ceb [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22499: Emit search group disband action on history group removal
This is needed to prevent removed search groups from coming back after
user interacts with the tab. E.g. if we don't fire this action, upon
interaction with the tab after a corresponding search group was removed
we will end up creating metadat with the deleted 'searchTerms' (they'll
be read from the 'historyMetadata' state on the tab).

At this point we probably want to start encapsulating all of this in a
use case - let's do that separately in
https://github.com/mozilla-mobile/android-components/issues/11309, and
just fix the bug for now.
3 years ago
gmierz a3e898306a [fenix] Remove non-webrender browsertime tests. 3 years ago
Oana Horvath bb36ddee12 [fenix] For https://github.com/mozilla-mobile/fenix/issues/21002: improves the share tabs smoke tests coverage 3 years ago
MickeyMoz fa1e7e5547 [fenix] Update Android Components version to 96.0.20211123143336. 3 years ago
Mozilla L10n Automation Bot b764027bc0 [fenix] Import l10n. 3 years ago
Arturo Mejia 1284096722 [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/22537 crash: BookmarkFragment is attached to a context 3 years ago
MickeyMoz 1e1de90c7d [fenix] Update Android Components version to 96.0.20211122143347. 3 years ago
Arturo Mejia 5737a5533c [fenix] For issue https://github.com/mozilla-mobile/fenix/issues/5298 the same page appears in the History section multiple times 3 years ago
Sebastian Kaspari 7e446e3759 [fenix] Update Jetpack Compose to 1.0.5 and Activity Compose to 1.4.0 3 years ago
Mugurell 86f80f2652 [fenix] For https://github.com/mozilla-mobile/fenix/issues/22502 - Update "Jump back in" group's subtitle format 3 years ago
MickeyMoz 1958c4cd7a [fenix] Update Android Components version to 96.0.20211120190324. 3 years ago
Mozilla L10n Automation Bot 5183cd3c4d [fenix] Import l10n. 3 years ago
Mozilla L10n Automation Bot 748f15bc2d [fenix] Import l10n. 3 years ago
AndiAJ 201663cff1 [fenix] Improve privateTabsTrayWithOpenedTabTest UI test coverage 3 years ago
AndiAJ 69d2664705 [fenix] Improve verifyOpenTabDetails UI test coverage 3 years ago
AndiAJ b9211621ed [fenix] Refactor and improve coverage for empty tabs tray UI tests 3 years ago
Mozilla L10n Automation Bot ccfa34edcf [fenix] Import l10n. 3 years ago
Grisha Kruglov 78e85949cf [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22484 - Track direct loads per tab; fix search term lookup
This patch fixes two problems:
1) We were treating "direct tab load" as an event which applies
   uniformally to all tabs, even though it's actually an event which
   happens for a specific tab. This lead to background tabs (pages opened as new tab)
   setting the direct load flag, and then a simultaneously loading
   parent tab would incorrectly interpret that flag for itself.

   The patch switches this tracking from a simple boolean (are we direct
   loading?) to a set of tab IDs that are currently direct loading.

2) In a case when a background tab was loading with a parent who's
   search terms were cleared by a direct load, we were not trying to
   lookup search terms on the background tab's historyMetadata key,
   which exists to capture search terms for this exact scenario.

   The patch adds an additional fallback lookup for that path.
3 years ago
Oana Horvath 6ca9c5a17b [fenix] For https://github.com/mozilla-mobile/fenix/issues/21002: add missing steps to selectSearchEnginesShortcutTest, addPredefinedSearchEngineTest 3 years ago
Grisha Kruglov 77f35fd757 [fenix] Post: move group removal logic into PagedHistoryProvider
This moves the group removal logic to the place where the groups are
actually formed. This helps clean-up the fragment code a bit, and
removes the awkward 'allow mutate some random internal state' API from
the provider.
3 years ago
Grisha Kruglov fc7e707538 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/22472: Filter out redirects from History search groups 3 years ago
MickeyMoz b432bfa589 [fenix] Update Android Components version to 96.0.20211117143034. 3 years ago
AndiAJ 283f938184 [fenix] Improve mainMenuAddToHomeScreenTest UI test coverage 3 years ago
AndiAJ 5d10398f55 [fenix] startOnLastTab UI smoke test 3 years ago
AndiAJ 7662078764 [fenix] recentBookmarksOption UI smoke test 3 years ago
AndiAJ a5d2e8ee47 [fenix] jumpBackInOption UI smoke test 3 years ago
AndiAJ daa348bb2d [fenix] startOnHomepageTest refactoring work 3 years ago
Mozilla L10n Automation Bot 5986c6b7b9 [fenix] Import l10n. 3 years ago
Christian Sadilek d61fd5de0e [fenix] Update lastAccess timestamp of selected tab when launching to home 3 years ago
Christian Sadilek 53f2ddd5d4 [fenix] Upgrade Android Components to 96.0.20211116190344 3 years ago