gds-lens 1.0.0 → 1.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,21 @@ follows [semantic versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
7
7
|
From 1.0.0 on, a breaking change to the element's API waits for a major
|
|
8
8
|
version. Before that, `0.x` releases changed it freely.
|
|
9
9
|
|
|
10
|
+
## [1.0.1] - 2026-08-25
|
|
11
|
+
|
|
12
|
+
### Fixed
|
|
13
|
+
|
|
14
|
+
- The background grid vanished after a reload. Reloading deletes the old
|
|
15
|
+
file's vertex buffers, which also clears them out of the bound VAO's
|
|
16
|
+
attribute bindings -- leaving the grid's attribute-less fullscreen draw
|
|
17
|
+
pointing at an enabled array with no buffer behind it, which WebGL rejects
|
|
18
|
+
and skips. Only the grid was affected (the layer draws rebind every frame),
|
|
19
|
+
and it stayed missing until the next frame was requested.
|
|
20
|
+
- The link to `examples/multi-view.html` in the README and in
|
|
21
|
+
`docs/embedding.md`. The example lives in the repository rather than in the
|
|
22
|
+
package, so a relative link to it was broken for anyone reading the docs
|
|
23
|
+
from an installed copy; both now point at GitHub and say why.
|
|
24
|
+
|
|
10
25
|
## [1.0.0] - 2026-08-25
|
|
11
26
|
|
|
12
27
|
### Added
|
|
@@ -287,7 +302,8 @@ web page rather than for a webview.
|
|
|
287
302
|
worker-loading route and shipped unsubstituted. The `createWorker` host hook
|
|
288
303
|
replaces it.
|
|
289
304
|
|
|
290
|
-
[Unreleased]: https://github.com/EthanLowenthal/GDS-Lens/compare/v1.0.
|
|
305
|
+
[Unreleased]: https://github.com/EthanLowenthal/GDS-Lens/compare/v1.0.1...HEAD
|
|
306
|
+
[1.0.1]: https://github.com/EthanLowenthal/GDS-Lens/compare/v1.0.0...v1.0.1
|
|
291
307
|
[1.0.0]: https://github.com/EthanLowenthal/GDS-Lens/compare/v0.1.1...v1.0.0
|
|
292
308
|
[0.1.1]: https://github.com/EthanLowenthal/GDS-Lens/compare/v0.1.0...v0.1.1
|
|
293
309
|
[0.1.0]: https://github.com/EthanLowenthal/GDS-Lens/releases/tag/v0.1.0
|
package/README.md
CHANGED
|
@@ -119,9 +119,9 @@ at roughly 8 to 16 — past that the browser starts dropping the oldest. A page
|
|
|
119
119
|
showing a dozen layouts at once wants one viewer swapping layouts rather than a
|
|
120
120
|
dozen elements.
|
|
121
121
|
|
|
122
|
-
[`examples/multi-view.html`](examples/multi-view.html)
|
|
123
|
-
three loading a layout from `src`, three waiting for a
|
|
124
|
-
created and released on demand to keep a context free.
|
|
122
|
+
[`examples/multi-view.html`](https://github.com/EthanLowenthal/GDS-Lens/blob/main/examples/multi-view.html)
|
|
123
|
+
is a working page of six: three loading a layout from `src`, three waiting for a
|
|
124
|
+
button, one of them created and released on demand to keep a context free.
|
|
125
125
|
|
|
126
126
|
#### Removal parks the viewer
|
|
127
127
|
|