Skip to content
This repository was archived by the owner on Oct 15, 2024. It is now read-only.

Commit a723ded

Browse files
authored
Revert "autofill-parser: remove Bromite from supported browsers (#1423)" (#1632)
This reverts commit 3f20678.
1 parent 4c94137 commit a723ded

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

CHANGELOG.md

-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,6 @@ All notable changes to this project will be documented in this file.
3131
- The settings UI has been completely re-done to dramatically improve discoverability and navigation for users
3232
- Using the `git://` protocol in the server URL now presents an explicit discouragement rather than a generic error
3333
- Encrypted data is no longer ASCII armored, bringing it in line with `pass`
34-
- Removed Bromite from supported Autofill browsers, since they [disable Android autofill](https://github.com/bromite/bromite/blob/master/FAQ.md#does-bromite-support-the-android-autofill-framework).
3534
- Changing password generator parameters now automatically updates the password without needing to press the 'Generate' button again
3635
- The app UI was reskinned to match Google's Material You guidelines
3736
- Using HTTPS without authentication is now fully supported, and no longer asks for a username

app/src/main/res/xml/oreo_autofill_service.xml

+1
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@
1515
<compatibility-package android:name="com.microsoft.emmx" />
1616
<compatibility-package android:name="com.opera.mini.native" />
1717
<compatibility-package android:name="com.opera.mini.native.beta" />
18+
<compatibility-package android:name="org.bromite.bromite" />
1819
<compatibility-package
1920
android:name="org.mozilla.fennec_fdroid"
2021
android:maxLongVersionCode="679999" />

autofill-parser/CHANGELOG.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ All notable changes to this project will be documented in this file.
66

77
### Changed
88

9-
- Changed the support level for Chrome Beta/Canary/Dev/Stable and Ungoogled Chromium to `PasswordFillAndSaveIfNoAccessibility`.
9+
- Changed the support level for Chrome Beta/Canary/Dev/Stable, Bromite and Ungoogled Chromium to `PasswordFillAndSaveIfNoAccessibility`.
1010

1111
- Updated `androidx.annotation` to 1.1.0 and `androidx.autofill` to `1.2.0-alpha01`.
1212

1313
- The library now requires Kotlin 1.5.0 configured with `kotlinOptions.languageVersion = "1.5"`.
1414

15-
- Removed Bromite from supported Autofill browsers, since they [disable Android autofill](https://github.com/bromite/bromite/blob/master/FAQ.md#does-bromite-support-the-android-autofill-framework).
16-
1715
- Added [Styx](https://github.com/jamal2362/Styx) to supported Autofill browsers.
1816

1917
### Fixed

autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt

+2
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,7 @@ private val TRUSTED_BROWSER_CERTIFICATE_HASH =
7272
"com.opera.mini.native" to arrayOf("V6y8Ul8bLr0ZGWzW8BQ5fMkQ/RiEHgroUP68Ph5ZP/I="),
7373
"com.opera.mini.native.beta" to arrayOf("V6y8Ul8bLr0ZGWzW8BQ5fMkQ/RiEHgroUP68Ph5ZP/I="),
7474
"com.opera.touch" to arrayOf("qtjiBNJNF3k0yc0MY8xqo4779CxKaVcJfiIQ9X+qZ6o="),
75+
"org.bromite.bromite" to arrayOf("4e5c0HbXsNyEyytF+3i4bfLrOaO2xWuj3CkqXgw7lQQ="),
7576
"org.gnu.icecat" to arrayOf("wi2iuVvK/WYZUzd2g0Qzn9ef3kAisQURZ8U1WSMTkcM="),
7677
"org.mozilla.fenix" to arrayOf("UAR3kIjn+YjVvFzF+HmP6/T4zQhKGypG79TI7krq8hE="),
7778
"org.mozilla.fenix.nightly" to arrayOf("d+rEzu02r++6dheZMd1MwZWrDNVLrzVdIV57vdKOQCo="),
@@ -160,6 +161,7 @@ private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY =
160161
"com.chrome.beta" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
161162
"com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
162163
"com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
164+
"org.bromite.bromite" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
163165
"org.ungoogled.chromium.stable" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
164166
)
165167

0 commit comments

Comments
 (0)