Skip to content

Commit

Permalink
Merge pull request #353 from concord-consortium/187028887-fix-release
Browse files Browse the repository at this point in the history
Fix release process, handle data assets correctly, rm old favicons
  • Loading branch information
pjanik authored Feb 12, 2024
2 parents 248d568 + 39790e7 commit cdbaf93
Show file tree
Hide file tree
Showing 42 changed files with 54 additions and 273 deletions.
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
File renamed without changes
File renamed without changes
File renamed without changes
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

0 comments on commit cdbaf93

Please sign in to comment.