Commit Graph

1044 Commits (00bfe0bca048168f7d431e9fc87bd2c475aa0231)

Author SHA1 Message Date
Jeff Boek 708aa16d1c [fenix] For https://github.com/mozilla-mobile/fenix/issues/2723 - Fixes theme manager 5 years ago
Emily Kager 8fceae18b3 [fenix] Fixes Crash: Pop up to Browser Fragment if exists when coming from Search 5 years ago
Emily Kager 4b1f85bc70 [fenix] No issue: Simplify and speed up shared element transitions 5 years ago
Emily Kager f523d9df59 [fenix] For https://github.com/mozilla-mobile/fenix/issues/1973 - Toggle QR button on deny permissions, fix engineView crashes 5 years ago
Colin Lee 50c466c86b [fenix] For https://github.com/mozilla-mobile/fenix/issues/2893, https://github.com/mozilla-mobile/fenix/issues/2673, https://github.com/mozilla-mobile/fenix/issues/2916, https://github.com/mozilla-mobile/fenix/issues/2314: Fix race condition navigating to browser (https://github.com/mozilla-mobile/fenix/pull/3023)
Since the Navigation library restores the fragment after memory eviction, if we're already on the BrowserFragment and we deep link navigate to the BrowserFragment, we briefly get two of them. This crashes GeckoView.
5 years ago
Emily Kager 095ebee6f0 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2990 - Remove library content descriptions from browsing data items (https://github.com/mozilla-mobile/fenix/pull/3017) 5 years ago
Emily Kager 07c032c277 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2230 - Fix theme selection radio button for Android 6 (https://github.com/mozilla-mobile/fenix/pull/3019) 5 years ago
Tiger Oakes 3960fb8f43 [fenix] Issue https://github.com/mozilla-mobile/fenix/issues/103 - Pull to refresh (https://github.com/mozilla-mobile/fenix/pull/3020) 5 years ago
Sawyer Blatz 9ccf6fb1e7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2227: Fixes issue with bookmark selection (https://github.com/mozilla-mobile/fenix/pull/3021) 5 years ago
Sawyer Blatz 06b5e1abaf [fenix] For https://github.com/mozilla-mobile/fenix/issues/2931: Show browser snackbar above quick action sheet 5 years ago
Sawyer Blatz 190bbe503e [fenix] For https://github.com/mozilla-mobile/fenix/issues/2327: Fix early return from displayAccountError 5 years ago
Sawyer Blatz 1b6f0f5b1a [fenix] For https://github.com/mozilla-mobile/fenix/issues/1679: Pause media playback when backgrounded 5 years ago
Jeff Boek 1e70a65502 [fenix] For https://github.com/mozilla-mobile/fenix/issues/255 - Moves all deletion operations to the same coroutine 5 years ago
Christian Sadilek 75f98070d2 [fenix] No issue: ClipboardProvider no longer needs to be added/removed based on input 5 years ago
Emily Kager 322aedd4da [fenix] For https://github.com/mozilla-mobile/fenix/issues/3011 - Size EngineView for Custom Tab Fixed Toolbar 5 years ago
Emily Kager 1c75ee039e [fenix] For https://github.com/mozilla-mobile/fenix/issues/3011 - Size EngineView for Custom Tab Fixed Toolbar 5 years ago
Sawyer Blatz 9a301da8bb [fenix] For https://github.com/mozilla-mobile/fenix/issues/2327: Fixes nits 5 years ago
Sawyer Blatz 957e4c5bbe [fenix] For https://github.com/mozilla-mobile/fenix/issues/2327: Adds error state syncing 5 years ago
Emily Kager 99c382f52a [fenix] For https://github.com/mozilla-mobile/fenix/issues/2979 - Prevent double navigation to Create Collection Fragment 5 years ago
Grisha Kruglov dbc2a132be [fenix] No issue: improve allowUndo
This patch fixes a few issues:
- it was an extension on a CoroutineScope, but that was quite misleading
since the Main dispatcher would be always used regardless of what dispatcher
the owning CoroutineScope was configured with.
- timing was reliant on exact value of the undocumented Snackbar.LENGTH_LONG duration
- coroutine cancellation relied on cooperation of the 'operation' suspend function,
which we can't depend on

New 'allowUndo' fully controls its timing, doesn't imply a dispatcher to its consumers,
and doesn't rely on cooperation of passed-in suspend blocks for cancellation to work.
5 years ago
Emily Kager a7288fcceb [fenix] For https://github.com/mozilla-mobile/fenix/issues/2980 - Pop to home if no session exists in Browser Fragment 5 years ago
Emily Kager 654d4c2a37 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2938 - Remove save to collection from PB browsing menu 5 years ago
Emily Kager 87ffe440ab [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2186 - Search Fragment search bar margins should be 8dp 5 years ago
Emily Kager ee1df8ac9d [fenix] No issue: Check search engine icon exists before setting drawable 5 years ago
Denys M 490a5b621d [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/2254/https://github.com/mozilla-mobile/fenix/issues/2709. Observe browser sessions changes on `HomeFragment`. 5 years ago
Jeff Boek 15d69cff63 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2738 - Re-throws exceptions to send better data into the crash reporters 5 years ago
Emily Kager 62859b0df6 [fenix] Refactor new param to startInEditMode 5 years ago
Emily Kager cef7339070 [fenix] Start MotionLayout animation to end while navigating to search fragment 5 years ago
Emily Kager 6f63340e63 [fenix] Init Toolbar in edit mode so we don't see the flash 5 years ago
ekager eb2fbd2c6e [fenix] Adds Shared Transition between Home and Search 5 years ago
Jeff Boek 36d0eb1ca3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2419 - Adds a deletion state to the history component 5 years ago
Denys M 3512befa25 [fenix] For https://github.com/mozilla-mobile/fenix/issues/747. Improve `HistoryFragment` readability. 5 years ago
Denys M 324684a1fe [fenix] For https://github.com/mozilla-mobile/fenix/issues/747. Fix coroutines leaks in `HistoryFragment`. 5 years ago
Jonathan Almeida 0d756ce080 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2968: Specify the activity name in the share item 5 years ago
Grisha Kruglov b3fdb575ea [fenix] No issue: increase likelyhood of notification showing up as 'heads-up' 5 years ago
Grisha Kruglov 15025138d9 [fenix] No issue: sync and refresh device state on foreground 5 years ago
Emily Kager ca2b1a355e [fenix] For https://github.com/mozilla-mobile/fenix/issues/2972 - Call session feature back press before custom tab back press 5 years ago
Jeff Boek 3e36b2ec4a [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/2920 - Adds missing data review links 5 years ago
Grisha Kruglov 30f64236c9 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2835: Do not assume bookmarks fragment is attached while processing operations
This is mostly necessary when we're running stuff in a coroutine, so the patch likely goes
overboard a bit with the nullability checks... but it shouldn't hurt.
5 years ago
Colin Lee 94a94edca6 [fenix] Update flipper to make LeakCanary traces appear (https://github.com/mozilla-mobile/fenix/pull/2971) 5 years ago
Sawyer Blatz fb3e821fb3 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2948: Adds menu button add tab to collection 5 years ago
Sawyer Blatz ab2459162d [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/2942: Updates strings for l10n (https://github.com/mozilla-mobile/fenix/pull/2950) 5 years ago
Stefan Arentz 264f522b37 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/445 - Ship Fenix x86_64 builds (https://github.com/mozilla-mobile/fenix/pull/2856) 5 years ago
Emily Kager d54244f1b1 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2891 - Make checkbox invisible so text isn't cut off 5 years ago
Emily Kager 375fc8f516 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2110 - Pressing back on external link should close the tab 5 years ago
Emily Kager 27ad5a5b74 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2952 - Delete All Tabs should run on Main Thread 5 years ago
Arturo Mejia b8188c9cbb [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2903: Fixed crash when trying to rate the app on a devices without
the play store app.
5 years ago
Jonathan Almeida 83897a1e60 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2878: Cleanup with card-like styling 5 years ago
Arturo Mejia fd9466a652 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2673: File manager allows to upload files from third party apps. 5 years ago
Arturo Mejia 3ecb0d4e59 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2900: Fix crash when trying to show site info panel with
a null session.
5 years ago
Jonathan Almeida 6237057252 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2886: Fix sending multiple tabs to another device (https://github.com/mozilla-mobile/fenix/pull/2923)
* For https://github.com/mozilla-mobile/fenix/issues/2886: Fix sending multiple tabs to another device

* Update share methods to use new API
5 years ago
Axel Hecht cb5dd52a31 [fenix] Import strings from android-l10n
Status: mozilla-l10n/android-l10n@acf17ea0cf
5 years ago
Arturo Mejia ac5da6d329 [fenix] Closes https://github.com/mozilla-mobile/fenix/issues/2789: Custom tabs is not covering the full screen size. 5 years ago
Emily Kager e815bf359e [fenix] For https://github.com/mozilla-mobile/fenix/issues/2133 - Add destructive text color to delete history button 5 years ago
Emily Kager e3fb81cfdc [fenix] For https://github.com/mozilla-mobile/fenix/issues/2919 - Invoke Pending Delete Jobs in onPause 5 years ago
Emily Kager ff1f777b55 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2417 - Fade end of Edit Bookmark edit text 5 years ago
Emily Kager 88e64fbbb2 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2898 - Adds Deselect All in Collection Creation Select Tabs Step 5 years ago
Emily Kager aa741c1aa6 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2337 - Open Report Site in Browser from Custom Tab 5 years ago
Emily Kager 95b2ea5d21 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2941 - Creates delete dialog style 5 years ago
Emily Kager 1ed5fb7c96 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2823 - Invoke pending jobs with context on switch to private mode 5 years ago
Jonathan Almeida cb46cff423 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2890: Sending tab from another device shows empty title 5 years ago
Jonathan Almeida 5ff5b7b0b1 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/2872: Send tab notification never dismisses (https://github.com/mozilla-mobile/fenix/pull/2889) 5 years ago
Harsh Shandilya 992b873122 [fenix] treewide: Resolve compilation warnings (https://github.com/mozilla-mobile/fenix/pull/2859)
Signed-off-by: Harsh Shandilya <msfjarvis@gmail.com>
5 years ago
Jonathan Almeida ee5b227c4b [fenix] For https://github.com/mozilla-mobile/fenix/issues/2876: Fix crash on sync now button clicked 5 years ago
Tiger Oakes 31d199fe63 [fenix] Fixes https://github.com/mozilla-mobile/fenix/issues/2862 - Fix about_content placeholder
The exact fix was described in the issue :)

Co-authored-by: Hakkı Kaan Çalışkan <caliskanhkaan@gmail.com>
5 years ago
Mitchell Hentges b8e5d35f19 [fenix] Passes variants without parsing (https://github.com/mozilla-mobile/fenix/pull/2408) 5 years ago
Jeff Boek 5722009a52 [fenix] Moves finalized onboarding strings to strings.xml 5 years ago
Jeff Boek c98463e17a [fenix] For https://github.com/mozilla-mobile/fenix/issues/927 - Adds build type to glean to report the channel 5 years ago
Sawyer Blatz e73188f04c [fenix] For https://github.com/mozilla-mobile/fenix/issues/1190: Adds additional telemetry for FxA login 5 years ago
Sawyer Blatz b479cc4320 [fenix] For https://github.com/mozilla-mobile/fenix/issues/1190: Adds telemetry for FxA login 5 years ago
Emily Kager 7fdc9784e7 [fenix] No issue: Correct material dependency and anchor snackbar above toolbar 5 years ago
Jeff Boek b3096c1536 [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Address small nits, changes default color of ic_delete 5 years ago
Jeff Boek 2460c68edb [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Properly delete collections 5 years ago
Jeff Boek 1fd2b24bc9 [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Deletes data on button press 5 years ago
Jeff Boek c412afec23 [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Adds button to delete browsing data 5 years ago
Jeff Boek cce2ebb754 [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 -Adds checkbox listener to data items 5 years ago
Jeff Boek 66af144c4f [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Adds icons for list items 5 years ago
Jeff Boek ccf637a74e [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Adds list items for delete browsing data 5 years ago
Jeff Boek f0e5e9a3b7 [fenix] For https://github.com/mozilla-mobile/fenix/issues/225 - Adds delete browsing data fragment 5 years ago
Emily Kager df015ab86a [fenix] For https://github.com/mozilla-mobile/fenix/issues/2843 - Improve Collections UI and UX (https://github.com/mozilla-mobile/fenix/pull/2851) 5 years ago
mheubusch 08b639f0d8 [fenix] Update static_strings.xml 5 years ago
Jonathan Almeida 8434ca83a5 [fenix] No issue: Add device name to account page 5 years ago
Sawyer Blatz 9dc3ef840a [fenix] No issue: Updates l10n static strings 5 years ago
Sawyer Blatz f57e0b4bbc [fenix] For https://github.com/mozilla-mobile/fenix/issues/2327: Adds error state strings for syncing 5 years ago
Sawyer Blatz 18000bbd6d [fenix] For https://github.com/mozilla-mobile/fenix/issues/2788: Fixes string issues (https://github.com/mozilla-mobile/fenix/pull/2841) 5 years ago
Emily Kager 346f0f5538 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2780 - Fix home screen attributes for API 21-22 (https://github.com/mozilla-mobile/fenix/pull/2844) 5 years ago
Jonathan Almeida fd82bacd40 [fenix] No issue: Add ellipses to syncing string 5 years ago
Tiger Oakes 478bde80b4 [fenix] Use a ListAdapter for SessionControl 5 years ago
Jonathan Almeida ad9a544319 [fenix] No issue: Fix NotificationManager icon color 5 years ago
Sawyer Blatz a314d6616f [fenix] For https://github.com/mozilla-mobile/fenix/issues/658: Adds your rights page link 5 years ago
Emily Kager 9160f1ca67 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2529 - Remove "Delete Collection" button from private browsing 5 years ago
Emily Kager 7ee012205b [fenix] No issue: Register observers with owner view 5 years ago
Emily Kager 2d14e3416e [fenix] For https://github.com/mozilla-mobile/fenix/issues/966 - Preserve CustomTab history when opening in browser 5 years ago
Sawyer Blatz 3307cf3205 [fenix] For https://github.com/mozilla-mobile/fenix/issues/2732: Removes view model usage from collection creation 5 years ago
ekager 30807f9d8b [fenix] Cancel pending findBookmarkJob if another is started 5 years ago
Emily Kager daea15328b [fenix] For https://github.com/mozilla-mobile/fenix/issues/2228 - Update Bookmark Status in onUrlChanged 5 years ago
Emily Kager 7fce039fc0 [fenix] Update string 5 years ago
Emily Kager 97f1406882 [fenix] For https://github.com/mozilla-mobile/fenix/issues/1286 - Add Automatic Font Sizing Preference 5 years ago
Emily Kager 281567995e [fenix] For https://github.com/mozilla-mobile/fenix/issues/2815 - Use RootView for displaying snackbar in browserfragment (https://github.com/mozilla-mobile/fenix/pull/2816) 5 years ago
Emily Kager 1890d7fa7c [fenix] For https://github.com/mozilla-mobile/fenix/issues/2721 - Reorder onboarding theme settings (https://github.com/mozilla-mobile/fenix/pull/2817) 5 years ago