diff options
author | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-07 19:24:16 +0530 |
---|---|---|
committer | Harsh Shandilya <me@msfjarvis.dev> | 2022-10-07 19:24:16 +0530 |
commit | 16b9c1330dbbfb7c0f103a301c344644325e4eda (patch) | |
tree | ff6cfd52355e3502aac936f2e0b37297852d4e7f /autofill-parser | |
parent | f2ab436c54a452d0c6264a8fdc16e80c0a4bbd03 (diff) |
feat(autofill-parser): add Vivaldi as an Autofill browser
Fixes #2165
Diffstat (limited to 'autofill-parser')
-rw-r--r-- | autofill-parser/CHANGELOG.md | 4 | ||||
-rw-r--r-- | autofill-parser/src/main/java/com/github/androidpasswordstore/autofillparser/FeatureAndTrustDetection.kt | 1 |
2 files changed, 5 insertions, 0 deletions
diff --git a/autofill-parser/CHANGELOG.md b/autofill-parser/CHANGELOG.md index ea0750eb..9d0b9c72 100644 --- a/autofill-parser/CHANGELOG.md +++ b/autofill-parser/CHANGELOG.md @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file. ## Unreleased +### Added + +- [Vivaldi](https://play.google.com/store/apps/details?id=com.vivaldi.browser) is now supported as an Autofill-capable browser. + ## [1.1.1] ### Added 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 a4d9752f..5bef386b 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 @@ -89,6 +89,7 @@ private val TRUSTED_BROWSER_CERTIFICATE_HASH = arrayOf("29UOO5cXoxO/e/hH3hOu6bbtg1My4tK6Eik2Ym5Krtk="), "com.kiwibrowser.browser" to arrayOf("wGnqlmMy6R4KDDzFd+b1Cf49ndr3AVrQxcXvj9o/hig="), "us.spotco.fennec_dos" to arrayOf("/4H1vlY5ZZTu5w/vKDIlbhUhQSLiupzt0mAF/9S8qqg="), + "com.vivaldi.browser" to arrayOf("6KeFRGVbqMCYF/cydo9WibFmLsSyvFoLwOwTjTPKPR4="), ) private fun isTrustedBrowser(context: Context, appPackage: String): Boolean { |