mirror of
https://github.com/EDCD/coriolis.git
synced 2025-12-09 14:45:35 +00:00
* Updating react-number-editor dependency from stale named branch * Remove references to deprecated react-addons-perf package * Issue #25 Webpack updated to current version, many dependencies updated, Babel & Webpack configs updated. Add dev & prod Dockerfiles and update README with Docker instructions Created webpack.common.js. Coriolis-data now specified as github dependency * Bump bugfix versions of react & react-dom only * Workbox dependency upgrade for webpack 5 compat * Stab at upgrading workbox dep Far more fatal webpack errors :( * Automate reinstall/rebuild with npm script * Working build again w updated deps Disabled/commented out all bugsnag references Added production-like Docker build for troubleshooting issues that don't appear in dev server * Remove deprecated @babel/polyfill import & dependency * Fix to service worker to v5 of workbox and align with webpack 5 plugin * Disabling recent round of polyfills. Don't think they're necessary. * Whitespace in package.json * Add Buffer as Webpack plugin. Fix indenting. Fix deprecated call to Buffer. * Remove bugsnag and deprecated babel code that was commented out, per convo with Felix --------- Co-authored-by: Sam Clayton <sam@goranku.com>
99 lines
3.0 KiB
HTML
99 lines
3.0 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<title>Coriolis EDCD Edition</title>
|
|
<meta charset="UTF-8" />
|
|
<link rel="stylesheet" href="<%= htmlWebpackPlugin.files.css[0] %>" />
|
|
<!-- Standard headers -->
|
|
<meta
|
|
name="description"
|
|
content="A ship builder, outfitting and comparison
|
|
tool for Elite Dangerous"
|
|
/>
|
|
<meta name="mobile-web-app-capable" content="yes" />
|
|
<meta
|
|
name="viewport"
|
|
content="width=device-width, initial-scale=1.0,
|
|
maximum-scale=1.0, user-scalable=0"
|
|
/>
|
|
<link rel="manifest" href="/manifest.json" />
|
|
<link rel="shortcut icon" href=/favicon2.ico>
|
|
<link
|
|
rel="icon"
|
|
sizes="152x152 192x192"
|
|
type="image/png"
|
|
href="/192x192.png"
|
|
/>
|
|
|
|
<!-- Apple/iOS headers -->
|
|
<meta name="apple-mobile-web-app-capable" content="yes" />
|
|
<meta name="apple-mobile-web-app-title" content="Coriolis" />
|
|
<meta name="apple-mobile-web-app-status-bar-style" content="black" />
|
|
|
|
<!-- Microsoft Windows Phone/Tablet headers -->
|
|
<meta name="msapplication-TileColor" content="#000000" />
|
|
<meta name="msapplication-TileImage" content="/mstile-144x144.png" />
|
|
<meta name="msapplication-config" content="/browserconfig.xml" />
|
|
<meta name="theme-color" content="#000000" />
|
|
</head>
|
|
<body>
|
|
<body style="background-color:#000;">
|
|
<section id="coriolis">
|
|
<div class="modal">
|
|
<h2>
|
|
Please migrate to <a href="https://coriolis.io">coriolis.io</a>
|
|
</h2>
|
|
You are currently on coriolis.<strong>.edcd</strong>.io This domain is
|
|
considered deprecated. To migrate your builds, copy the below text and
|
|
go to
|
|
<a
|
|
target="_blank"
|
|
rel="noopener noreferrer"
|
|
href="https://coriolis.io"
|
|
>this link</a
|
|
>, press ctrl + i and then paste in the data. (If you are on mobile,
|
|
you can go to the settings and hit import)
|
|
<div>
|
|
<textarea id="data" class="cb json"></textarea>
|
|
</div>
|
|
</div>
|
|
</section>
|
|
</body>
|
|
<script>
|
|
const LS = localStorage;
|
|
/**
|
|
* Safe localstorage get string
|
|
* @param {String} key key
|
|
* @return {String} The stored string
|
|
*/
|
|
function _getString(key) {
|
|
return LS ? LS.getItem(key) : null;
|
|
}
|
|
|
|
/**
|
|
* Safe localstorage get
|
|
* @param {String} key key
|
|
* @return {object | number} The stored data
|
|
*/
|
|
function _get(key) {
|
|
let str = _getString(key);
|
|
try {
|
|
return str ? JSON.parse(str) : null;
|
|
} catch (e) {
|
|
return null;
|
|
}
|
|
}
|
|
|
|
const textarea = document.querySelector("#data");
|
|
const data = {
|
|
builds: _get("builds") || {},
|
|
comparisons: _get("comparisons") || {},
|
|
insurance: _get("insurance") || "standard",
|
|
shipDiscount: _get("shipDiscount") || 0,
|
|
moduleDiscount: _get("moduleDiscount") || 0
|
|
};
|
|
textarea.textContent = JSON.stringify(data, null, 2);
|
|
</script>
|
|
</body>
|
|
</html>
|