From 262dc72a9bffdff090c8b7af7f97285794b90c39 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sun, 11 Feb 2024 16:07:21 +0000 Subject: [PATCH 01/15] vr --- docs/{not-vr => }/index.html | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename docs/{not-vr => }/index.html (100%) diff --git a/docs/not-vr/index.html b/docs/index.html similarity index 100% rename from docs/not-vr/index.html rename to docs/index.html From 10b1c96d1f51ab02118c0b5fdd2189f520475e24 Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sun, 11 Feb 2024 16:10:21 +0000 Subject: [PATCH 02/15] oi --- docs/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index da6d629c0..700945950 100644 --- a/docs/index.html +++ b/docs/index.html @@ -107,12 +107,16 @@ const devices = await navigator.mediaDevices.enumerateDevices(); - const backCamera = devices.find((device) => { + let backCamera = devices.find((device) => { const capabilities = device.getCapabilities?.(); if (!capabilities) return false; return capabilities.facingMode?.includes("environment"); }); + if (!backCamera) { + backCamera = devices[0]; + } + const stream = await navigator.mediaDevices.getUserMedia({ video: { deviceId: backCamera.deviceId, From ad24723db675d0d2c60f5163786787ab2b9ae963 Mon Sep 17 00:00:00 2001 From: Lu Wilson Date: Sun, 11 Feb 2024 18:48:53 +0000 Subject: [PATCH 03/15] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 1917ff510..7a2d4005d 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ todepond woz here --> -> **New:** [This is an arrow](https://github.com/TodePond/DreamBerd/releases/tag/varrow) +> **New:** [Introducing the DreamBerd Vision Pro](https://www.youtube.com/watch?v=QRKnrFEjDF0) [](https://github.com/TodePond/DreamBerd/blob/main/examples/Examples.md "Click here for the examples page.") From ca64fd09ebd0427fffce8fc756c683eea3dbc19d Mon Sep 17 00:00:00 2001 From: "Lu[ke] Wilson" Date: Sun, 11 Feb 2024 18:51:25 +0000 Subject: [PATCH 04/15] safari --- docs/index.html | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/docs/index.html b/docs/index.html index 700945950..f5f4b4144 100644 --- a/docs/index.html +++ b/docs/index.html @@ -97,7 +97,11 @@