Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix release process, handle data assets correctly, rm old favicons #353

Merged
merged 1 commit into from
Feb 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
205 changes: 0 additions & 205 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 0 additions & 1 deletion packages/tecrock-simulation/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,6 @@
"@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.18.1",
"canvas": "^2.11.2",
"copy-webpack-plugin": "^11.0.0",
"css-loader": "^6.8.1",
"cypress": "^13.6.2",
"cypress-image-snapshot": "^4.0.1",
Expand Down
Binary file not shown.
Binary file not shown.
Binary file not shown.
9 changes: 0 additions & 9 deletions packages/tecrock-simulation/public/browserconfig.xml

This file was deleted.

Binary file removed packages/tecrock-simulation/public/favicon-16x16.png
Binary file not shown.
Binary file removed packages/tecrock-simulation/public/favicon-32x32.png
Binary file not shown.
Binary file not shown.
19 changes: 0 additions & 19 deletions packages/tecrock-simulation/public/site.webmanifest

This file was deleted.

File renamed without changes
8 changes: 0 additions & 8 deletions packages/tecrock-simulation/src/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,14 +5,6 @@
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1.0, user-scalable=no">
<title>Tectonic Explorer</title>
<!-- favicon metadata - generated using https://realfavicongenerator.net -->
<link rel="apple-touch-icon" sizes="180x180" href="apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="manifest" href="site.webmanifest">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
<!--end of favicon metadata -->
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Lato:wght@400;700;900&display=swap" rel="stylesheet">
Expand Down
3 changes: 2 additions & 1 deletion packages/tecrock-simulation/src/plates-view/plate-mesh.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import FieldStore from "../stores/field-store";
import { Rock } from "../plates-model/rock-properties";
import { getRockPatternImgSrc } from "../colors/rock-colors";
import { MAX_NORMALIZED_AGE } from "../plates-model/field";
import mountainsImg from "../data/mountains.jpg";

const MIN_SPEED_TO_RENDER_POLE = 0.002;
// Render every nth velocity arrow (performance).
Expand All @@ -40,7 +41,7 @@ const LAYER_DIFF = 0.004;
const EARTHQUAKES_LAYER_DIFF = 1 * LAYER_DIFF;
const VOLCANIC_ERUPTIONS_LAYER_DIFF = 2 * LAYER_DIFF;

const SHARED_BUMP_MAP = new THREE.TextureLoader().load("data/mountains.jpg");
const SHARED_BUMP_MAP = new THREE.TextureLoader().load(mountainsImg);
SHARED_BUMP_MAP.colorSpace = THREE.NoColorSpace;

// If there's a new rock type added, it needs to be included in the map below and the plate-mesh-fragment.glsl file
Expand Down
Loading
Loading