aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMark Stacey <markjstacey@gmail.com>2019-07-19 05:16:30 +0800
committerGitHub <noreply@github.com>2019-07-19 05:16:30 +0800
commit7357f011c3ff6580480bcc520ce4127667c412b7 (patch)
tree6292acbd693e2754fd2287495a4497ad8c216f1e
parent271e0ceb938168ee9a7020131ad7aa137d75568f (diff)
downloadtangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.tar.gz
tangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.tar.zst
tangerine-wallet-browser-7357f011c3ff6580480bcc520ce4127667c412b7.zip
Set minimum browser version in manifest (#6877)
Set the minimum browser version supported in the extension manifest. Currently we only ship the extension on Chrome and Firefox, so the minimum version has been set for those two browsers. Relates to #6805
-rw-r--r--app/manifest.json5
-rw-r--r--gulpfile.js1
2 files changed, 4 insertions, 2 deletions
diff --git a/app/manifest.json b/app/manifest.json
index 8639577bb..a89962d5a 100644
--- a/app/manifest.json
+++ b/app/manifest.json
@@ -21,7 +21,8 @@
},
"applications": {
"gecko": {
- "id": "webextension@metamask.io"
+ "id": "webextension@metamask.io",
+ "strict_min_version": "53.0"
}
},
"default_locale": "en",
@@ -85,4 +86,4 @@
"*"
]
}
-} \ No newline at end of file
+}
diff --git a/gulpfile.js b/gulpfile.js
index 3a694ee3d..746860b25 100644
--- a/gulpfile.js
+++ b/gulpfile.js
@@ -153,6 +153,7 @@ gulp.task('manifest:chrome', function () {
return gulp.src('./dist/chrome/manifest.json')
.pipe(jsoneditor(function (json) {
delete json.applications
+ json.minimum_chrome_version = '58'
return json
}))
.pipe(gulp.dest('./dist/chrome', { overwrite: true }))