aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Stacey <markjstacey@gmail.com>2019-08-02 20:58:41 +0800
committerGitHub <noreply@github.com>2019-08-02 20:58:41 +0800
commitdecc604eb8325422ad32bdc3ccdb417b41d1226a (patch)
tree67a36330cf720f9071884736a6cbc1eb0ad15605
parentbb87a0b92ce2392ef0d0dc173fb094513ddb10f7 (diff)
downloadtangerine-wallet-browser-decc604eb8325422ad32bdc3ccdb417b41d1226a.tar.gz
tangerine-wallet-browser-decc604eb8325422ad32bdc3ccdb417b41d1226a.tar.zst
tangerine-wallet-browser-decc604eb8325422ad32bdc3ccdb417b41d1226a.zip
Increase minimum version of Firefox supported (#6939)
The minimum version supported is now Firefox 60. This is the current Extended Support Release. Various features we use were not supported by Firefox 53, such as `browser_action.default_popup`, `tabs.query`, and `permissions:unlimitedStorage`.
-rw-r--r--.babelrc2
-rw-r--r--app/manifest.json2
2 files changed, 2 insertions, 2 deletions
diff --git a/.babelrc b/.babelrc
index 067335f61..a36fc47ee 100644
--- a/.babelrc
+++ b/.babelrc
@@ -6,7 +6,7 @@
"targets": {
"browsers": [
"chrome >= 58",
- "firefox >= 53"
+ "firefox >= 60"
]
}
}
diff --git a/app/manifest.json b/app/manifest.json
index a89962d5a..d14149d81 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -22,7 +22,7 @@
"applications": {
"gecko": {
"id": "webextension@metamask.io",
- "strict_min_version": "53.0"
+ "strict_min_version": "60.0"
}
},
"default_locale": "en",