diff options
author | Alexander Bocken <32177905+AlexBocken@users.noreply.github.com> | 2024-03-11 12:21:22 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-11 11:21:22 +0000 |
commit | 88facd78713e594390e653afb3e78b15edd2deab (patch) | |
tree | b9bc775e4fa01adccfabc8f46b970c096e1e4d0d /autofill-parser | |
parent | 40fa6c981a05b471314c3f21a930917c5768303a (diff) |
Autofill: add support for Cromite (#2948)
add support for Cromite
Co-authored-by: C0unt-zero <countzero.02@gmail.com>
Diffstat (limited to 'autofill-parser')
-rw-r--r-- | autofill-parser/CHANGELOG.md | 1 | ||||
-rw-r--r-- | autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt | 2 |
2 files changed, 3 insertions, 0 deletions
diff --git a/autofill-parser/CHANGELOG.md b/autofill-parser/CHANGELOG.md index 5f508e03..b0a833b9 100644 --- a/autofill-parser/CHANGELOG.md +++ b/autofill-parser/CHANGELOG.md @@ -7,6 +7,7 @@ All notable changes to this project will be documented in this file. ### Added - [Mull](https://divestos.org/pages/our_apps#mull) is now supported as an Autofill-capable browser when installed from the divestos.org [repo](https://divestos.org/fdroid/official/). +- [Cromite](https://github.com/uazo/cromite) is now supported as an Autofill-capable browser. ## [1.1.2] diff --git a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt index f3696ffd..3bb56920 100644 --- a/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt +++ b/autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt @@ -67,6 +67,7 @@ private val TRUSTED_BROWSER_CERTIFICATE_HASH = "com.opera.mini.native.beta" to arrayOf("V6y8Ul8bLr0ZGWzW8BQ5fMkQ/RiEHgroUP68Ph5ZP/I="), "com.opera.touch" to arrayOf("qtjiBNJNF3k0yc0MY8xqo4779CxKaVcJfiIQ9X+qZ6o="), "org.bromite.bromite" to arrayOf("4e5c0HbXsNyEyytF+3i4bfLrOaO2xWuj3CkqXgw7lQQ="), + "org.cromite.cromite" to arrayOf("Yz+kHYIR1tCRaoGbiWaMbekuZCMtpn+dFv2Bw7fpI/8="), "org.gnu.icecat" to arrayOf("wi2iuVvK/WYZUzd2g0Qzn9ef3kAisQURZ8U1WSMTkcM="), "org.mozilla.fenix" to arrayOf("UAR3kIjn+YjVvFzF+HmP6/T4zQhKGypG79TI7krq8hE="), "org.mozilla.fenix.nightly" to arrayOf("d+rEzu02r++6dheZMd1MwZWrDNVLrzVdIV57vdKOQCo="), @@ -164,6 +165,7 @@ private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = "com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, "com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, "org.bromite.bromite" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, + "org.cromite.cromite" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, "org.ungoogled.chromium.stable" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE, ) |