Skip to content

Commit

Permalink
update versions
Browse files Browse the repository at this point in the history
  • Loading branch information
jprochazk committed Dec 5, 2023
1 parent 0fb5c20 commit 577fd58
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
8 changes: 4 additions & 4 deletions package-lock.json

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

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"vite": "^4.4.5"
},
"dependencies": {
"@rerun-io/web-viewer": "^0.0.5",
"@rerun-io/web-viewer": "0.11.0",
"vite-plugin-top-level-await": "^1.3.1",
"vite-plugin-wasm": "^3.2.2"
}
Expand Down
5 changes: 4 additions & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import "./style.css";
import { WebViewer } from "@rerun-io/web-viewer";

const rrd =
new URLSearchParams(location.search).get("url") ||
"https://demo.rerun.io/version/0.11.0/examples/structure_from_motion/data.rrd";
const viewer = new WebViewer();
viewer.start("https://demo.rerun.io/version/nightly/examples/structure_from_motion/data.rrd");
viewer.start(rrd);

0 comments on commit 577fd58

Please sign in to comment.