From f7c1a7eddafefe55954f353014dffd3f24f90340 Mon Sep 17 00:00:00 2001 From: Chris Duncan Date: Thu, 2 Apr 2026 01:03:57 -0700 Subject: [PATCH] Grab changelog from 4.1.8 and fix testing webpage. --- CHANGELOG.md | 8 ++++++++ test/index.html | 4 ++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 91690e9..b12ee5e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -226,6 +226,14 @@ Improved type checking and removed unnecessary type exports. Reorganized project structure. +## v4.1.8 + +### Notable Changes + +Pin published package versions from CDNs on testing page. + +Update domain name. + ## v4.1.7 ### Notable Changes diff --git a/test/index.html b/test/index.html index 98d48c0..be4d16e 100644 --- a/test/index.html +++ b/test/index.html @@ -29,8 +29,8 @@ SPDX-License-Identifier: GPL-3.0-or-later const glSize = (canvas => { const gl = canvas.getContext('webgl2') const MAX_VIEWPORT_DIMS = gl.getParameter(gl.MAX_VIEWPORT_DIMS) - canvas.height = MAX_VIEWPORT_DIMS[0] - canvas.width = MAX_VIEWPORT_DIMS[1] + canvas.height = MAX_VIEWPORT_DIMS?.[0] ?? 0x1000 + canvas.width = MAX_VIEWPORT_DIMS?.[1] ?? 0x1000 return Math.min(gl.drawingBufferHeight, gl.drawingBufferWidth) })(new OffscreenCanvas(0, 0)) -- 2.47.3