Updated supported browser versions.

This commit is contained in:
n1474335 2019-08-28 17:14:12 +01:00
parent 686ca284fe
commit c9deaae744
3 changed files with 8 additions and 9 deletions

View File

@ -76,9 +76,9 @@ You can use as many operations as you like in simple or complex ways. Some examp
CyberChef is built to support CyberChef is built to support
- Google Chrome 40+ - Google Chrome 50+
- Mozilla Firefox 35+ - Mozilla Firefox 38+
- Microsoft Edge 14+
## Node.js support ## Node.js support

View File

@ -31,10 +31,9 @@
"module": "src/node/index.mjs", "module": "src/node/index.mjs",
"bugs": "https://github.com/gchq/CyberChef/issues", "bugs": "https://github.com/gchq/CyberChef/issues",
"browserslist": [ "browserslist": [
"Chrome >= 40", "Chrome >= 50",
"Firefox >= 35", "Firefox >= 38",
"Edge >= 14", "node >= 10"
"node >= 6.5"
], ],
"devDependencies": { "devDependencies": {
"@babel/core": "^7.5.0", "@babel/core": "^7.5.0",

View File

@ -123,9 +123,9 @@
document.getElementById("preloader-error").innerHTML = document.getElementById("preloader-error").innerHTML =
"CyberChef encountered an error while loading.<br><br>" + "CyberChef encountered an error while loading.<br><br>" +
"The following browser versions are supported:" + "The following browser versions are supported:" +
"<ul><li>Google Chrome 40+</li><li>Mozilla Firefox 35+</li><li>Microsoft Edge 14+</li></ul>" + "<ul><li>Google Chrome 50+</li><li>Mozilla Firefox 38+</li></ul>" +
"Your user agent is:<br>" + escapeHtml(navigator.userAgent) + "<br><br>" + "Your user agent is:<br>" + escapeHtml(navigator.userAgent) + "<br><br>" +
"If your browser is supported, please <a href='https://github.com/gchq/CyberChef/issues/new'>" + "If your browser is supported, please <a href='https://github.com/gchq/CyberChef/issues/new/choose'>" +
"raise an issue</a> including the following details:<br><br>" + "raise an issue</a> including the following details:<br><br>" +
"<pre>" + escapeHtml(msg) + "</pre>"; "<pre>" + escapeHtml(msg) + "</pre>";
}; };