2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-17 15:26:23 +00:00
Commit Graph

5812 Commits

Author SHA1 Message Date
runner
c827e2be8c Strings - app/src/main/res/values-de/strings.xml 2021-08-31 13:08:21 -04:00
runner
e491a1c3cc Strings - app/src/main/res/values-cy/strings.xml 2021-08-31 13:08:21 -04:00
runner
c0d2f7c647 Strings - app/src/main/res/values-cs/strings.xml 2021-08-31 13:08:21 -04:00
runner
2c477d6b51 Strings - app/src/main/res/values-co/strings.xml 2021-08-31 13:08:21 -04:00
runner
f2b81827e2 Strings - app/src/main/res/values-ca/strings.xml 2021-08-31 13:08:21 -04:00
runner
dce1d4b7ce Strings - app/src/main/res/values-ar/strings.xml 2021-08-31 13:08:21 -04:00
Elise Richards
b4d1e60bb1
Update search metric expiration dates (#21017) 2021-08-25 14:43:04 -04:00
Elise Richards
5515a27dd0
Revert "For #20516: Renew product telemetry probes expiring in August (#20517)"
This reverts commit 69289014d0.
2021-08-24 15:47:25 -07:00
Elise Richards
3509db6f97
Revert "No issue: fix glean metrics tests for expired metrics (#20621)"
This reverts commit 3f0590de38.
2021-08-24 15:47:07 -07:00
Elise Richards
69289014d0
For #20516: Renew product telemetry probes expiring in August (#20517)
* Renew product telemetry probes expiring in august 2021

* Add placeholder for data reviews

* Allow unneeded metrics to expire in August. To be re-evaluated later.

* Add link to data review

Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2021-08-24 15:40:34 -07:00
Elise Richards
3f0590de38
No issue: fix glean metrics tests for expired metrics (#20621)
* Remove references to preferences.open_links_in_private and preferences.private_search_suggestions in tests. These metrics have been expired and may be removed.

* Add ignores for performance metrics that have expired.

* Remove tabs_tray.cfr.dismiss and tabs_tray.cfr.go_to_settings telemetry probes.

* Remove metrics controller from signature and remove in tests
2021-08-24 15:31:14 -07:00
Arturo Mejia
2b26e9cdfe For #20919 add confirm dialog when turning on/off experiments 2021-08-24 13:06:12 -04:00
Arturo Mejia
f5dbfc3071 For #20919 quite the app when turning on/off experiments 2021-08-20 15:54:16 -04:00
mergify[bot]
b5e2c38e30
For #20716 - Disables Intermittent failing UI test (#20925)
(cherry picked from commit 77e12f9014)

Co-authored-by: codrut.topliceanu <codrut.topliceanu@softvision.ro>
2021-08-19 14:55:30 -04:00
Michael Comella
bd3a489c12 For #20824: use fast service loader for MainDispatcherFactory.
For details on the root cause, see the commit. We replaced the similar
proguard rules because:
- the key line was returning false instead of true
- the other line had the same outcome as the written code. I believe it
  was a micro-optimization. Since perf seems fine without it, let's
  remove it

I benchmarked this change on COLD MAIN first frame. We see an
improvement of 89ms:
- before: 1346ms
- after: 1257ms

(cherry picked from commit f74e63ceae)
2021-08-18 19:11:10 -04:00
Sebastian Kaspari
ae7d5100c5 Android Autofill: Use AppCompat theme for UnlockActivity.
(cherry picked from commit b4bcaa0bd3)
2021-08-17 11:34:20 +02:00
Arturo Mejia
b54a889744 For #20672 crash when attempting to disconnect from Mozilla account
(cherry picked from commit 823c89f4ff)
2021-08-11 14:14:02 -04:00
Vitaly V. Pinchuk
5093e7a5d6 Dismisses search dialog if active in (RecentTabsHeaderViewHolder, RecentBookmarksViewHolderTest) and adapts test for the changes. 2021-08-10 12:01:29 +00:00
Michael Comella
cc380695b8 No issue: remove unnecessary robolectric annotations.
Theoretically, this should marginally decrease the duration of our unit
test suite. In my testing, for 1 iteration each (i.e. noise is very
possible), the duration changed from 9m 32s to 8m 21s – a 71s
improvement.

---

To identify tests that were running with robolectric that didn't need to
be, I removed the @RunWith(FenixRobo... from all relevant files:
    sed -i '' "/@RunWith(FenixRobolectric/d" app/src/test/**/*.kt

I ran the tests and discovered which ones failed from the Classes tab of
the index.html test result file. Something like:
    tests = document.querySelectorAll('table')[3].querySelectorAll('tr');
    failureElements = tests.querySelectorAll('.failures');
    // TODO: extract the test names

Then I copied these results to a text file and compared them to all the
files that had robolectric test runners to figure out which ones still
pass:
    comm -1 -2 failures.txt changed_files.txt > robolectric_not_needed.txt

And undid the changes to the failing files:
    for i in $(cat robolectric_not_needed.txt); do git checkout $i; done

Then I removed the import statements on those files:
    for i in $(cut changed_files.txt); do sed -i '' "/import.*RunWith/d" $i; done
    for i in $(cat changed_files.txt); do sed -i '' "/import.*RobolectricTestRunner/d" $i; done
2021-08-10 00:22:44 +00:00
Elise Richards
7fdad978a3
For FNXV2-17067: always show home in background behind search dialog (#20573)
* Navigate to home on toolbar click. Handle back press from search dialog

Update tests to show home behind search dialog. Remove unused test.

Jump back in show all button is clickable behind search dialog

Recently saved bookmarks show all button is clickable behind search dialog

* Add feature flag

* Past explorations show all button is clickable behind search dialog

Handle keyboard in controllers instead of viewholders. Update tests.

Allow collections to be visible behind search dialog

Dismiss keyboard and search dialog with navigateUp instead of just dismissing the keyboard

Verify navigateUp in tests

Adding ignore for flaky UI test

Only resize home behind search dialog

Add ignore for collection intermittent test

Cleanup
2021-08-09 15:40:41 +00:00
codrut.topliceanu
003a2ce81a For #17917: Use View binding in downloads screen 2021-08-09 11:06:28 +00:00
mcarare
55ccfda759 For #20425: Re-add tests for class BookmarksUseCaseTest. 2021-08-09 09:46:27 +00:00
AndiAJ
7a02db22c3 Start on home UI tests 2021-08-09 07:34:16 +00:00
Mozilla L10n Automation Bot
1c9af7c24a Import l10n. 2021-08-09 00:41:53 +00:00
Mozilla L10n Automation Bot
642dd517f9 Import l10n. 2021-08-08 00:40:54 +00:00
Jonathan Almeida
8c975c6646 Close #20726: Fix intermittent failure in AddonsManagementViewTest 2021-08-06 22:27:28 +00:00
Jonathan Almeida
5442798b38 Issue #20718: Show url if title is missing for inactive tabs 2021-08-06 22:00:38 +00:00
Elise Richards
70068ee39b Correct search_count telemetry after revert 2021-08-06 21:26:43 +00:00
Roger Yang
3becd30139 Closes #20723: Fix credit card management fragment binding 2021-08-06 20:59:38 +00:00
Michael Comella
4c6566a0d2 Closes #20697: replace mockked lambda in DownloadControllerTest.
This is expected to fix the intermittent failure in this test.
2021-08-06 20:32:16 +00:00
Michael Comella
3994747be9 Closes #20679: revert allowaccessmodification proguard disabling.
We disabled the allowaccessmodification proguard option because it broke
functionality or crashed the app (I can't rememeber). As far as we know,
the R8 bug was fixed in the R8 bundled with the Android Gradle Plugin
v4.1. We're now on AGP v7.0.0-rc1 so we should be able to revert this
now.

This commit reverts the following commits:

Revert "Proguard/r8: Do not allow access modification."
This reverts commit 98bf27fdd4.

Revert "Dump `proguard-android-optimize.txt` into local configuration for later modification"
This reverts commit 88fe3fbf82.
2021-08-06 20:07:32 +00:00
Jonathan Almeida
31081073e9 Issue #19956: Add telemetry for tab view setting changes
This differs from `tab_view_setting` which tells us what the user's tab
setting is at startup. It does not tell us if the user explicitly
changed it instead of just using the default (which was recently
changed in #19809).
2021-08-06 19:33:54 +00:00
Christian Sadilek
01555c2bea
Update Android Components version to 92.0.20210806164329 (#20722)
Addresses breaking change in ShortcutsSuggestionProvider
2021-08-06 14:19:56 -04:00
codrut.topliceanu
f9d6380ab3 For #17917: Use View binding in bookmarks screen 2021-08-06 15:52:00 +00:00
Jonathan Almeida
d6bc93981d Issue #20663: Make inactive card collapsible
We use make the inactive tabs section of the tabstray collapsible in
this change, with a technical quirk: we want to make the "isExpanded"
state of the tabs stay for the lifetime of the app and not the tabs
tray, but this functionality does not exist.

In this patch, we're storing the UI state in a singleton class that
exists for the lifetime of the app, but a more concrete solution is to
use an AppStore that holds content like this, which we can land in a
future patch.
2021-08-06 15:23:10 +00:00
Mugurell
0bc64e8ca8 For #17917 - Add a Kotlin synthetics Lint detector
This would help ease the current refactoring effort by ensuring no new
synthetics usages.
2021-08-06 14:09:15 +00:00
codrut.topliceanu
4b21f52db4 For #20310 - Adds Recently Closed button to tabsTray 2021-08-06 12:37:44 +00:00
Grisha Kruglov
ec98db4e54 External source support
Adds handling of information about external referrer (package, category)
when dealing with external intents.
2021-08-05 17:30:00 -07:00
Roger Yang
2ac5a38120 Revert "For #18711: Telemetry for credit card autofill (#19548)"
This reverts commit e0b410efdf.
2021-08-05 18:53:46 +00:00
Roger Yang
2ed4115a6c Revert "For #18711 - Refactor credit card telemetry under the Metrics ping (#19733)"
This reverts commit 172a118a51.
2021-08-05 18:53:46 +00:00
Mozilla L10n Automation Bot
691c751db8 Import l10n. 2021-08-05 16:53:04 +00:00
Mugurell
3a33f65bc0 For #20584 - Speculative fix for ToolbarViewTest failing in CI
There was an `java.lang.InstantiationError: kotlin.jvm.functions.Function1`
stemming from line 75. See if avoiding nullability helps.
2021-08-05 15:52:06 +00:00
Mugurell
27d3a3f0dd For #20584 - Use CombinedHistorySuggestionProvider for history suggestions
This should ensure user is always presented with history results for his
searches.
2021-08-05 15:52:06 +00:00
Mozilla L10n Automation Bot
356fd2e029 Import l10n. 2021-08-05 14:48:56 +00:00
Jonathan Almeida
ca51ac6168 Issue #20664: Do not consider newly created tabs as inactive 2021-08-05 01:37:43 +00:00
Jonathan Almeida
dcd7deffc4 Close #20674: Remove elevation from inactive tabs card 2021-08-05 01:37:43 +00:00
Sebastian Kaspari
145f1898f1 Enable Android Autofill in Beta builds. 2021-08-04 21:07:42 +00:00
mcarare
066f9d7f5d For #20601: Use View binding in quick settings. 2021-08-04 09:32:08 -04:00
Mozilla L10n Automation Bot
fb7af3cdb6 Import l10n. 2021-08-04 01:09:21 +00:00
Arturo Mejia
0b43eb879e For #19970 [Crash] IllegalStateException when navigating to TP panel 2021-08-04 00:17:13 +00:00