canvas-globe 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 +5 -0
- package/README.md +4 -4
- package/codemeta.json +1 -1
- package/dist/canvas-globe.umd.js +1 -1
- package/package.json +1 -1
- package/src/version.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -6,6 +6,11 @@ All notable changes to this package are documented here. The format follows
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.1] - 2026-09-17
|
|
10
|
+
|
|
11
|
+
- Updated browser CDN and ESM examples to load the current commercial release
|
|
12
|
+
instead of the earlier GPL release.
|
|
13
|
+
|
|
9
14
|
## [1.0.0] - 2026-09-17
|
|
10
15
|
|
|
11
16
|
- Released the first stable commercial version of CanvasGlobe.
|
package/README.md
CHANGED
|
@@ -119,19 +119,19 @@ your existing application rather than installing a second React copy.
|
|
|
119
119
|
For a plain `<script>` installation, use the versioned UMD build:
|
|
120
120
|
|
|
121
121
|
```html
|
|
122
|
-
<script src="https://cdn.jsdelivr.net/npm/canvas-globe@0.1
|
|
122
|
+
<script src="https://cdn.jsdelivr.net/npm/canvas-globe@1.0.1/dist/canvas-globe.umd.js"></script>
|
|
123
123
|
```
|
|
124
124
|
|
|
125
125
|
The same npm release is also available from UNPKG:
|
|
126
126
|
|
|
127
127
|
```html
|
|
128
|
-
<script src="https://unpkg.com/canvas-globe@0.1
|
|
128
|
+
<script src="https://unpkg.com/canvas-globe@1.0.1/dist/canvas-globe.umd.js"></script>
|
|
129
129
|
```
|
|
130
130
|
|
|
131
131
|
Modern browsers can import the package through an ESM CDN:
|
|
132
132
|
|
|
133
133
|
```js
|
|
134
|
-
import { createGlobe } from "https://esm.sh/canvas-globe@0.1
|
|
134
|
+
import { createGlobe } from "https://esm.sh/canvas-globe@1.0.1";
|
|
135
135
|
```
|
|
136
136
|
|
|
137
137
|
Pin an exact version in production so a future release cannot change a deployed page unexpectedly.
|
|
@@ -151,7 +151,7 @@ import { createGlobe } from "canvas-globe";
|
|
|
151
151
|
Or drop the UMD build on a page with no build step at all:
|
|
152
152
|
|
|
153
153
|
```html
|
|
154
|
-
<script src="https://cdn.jsdelivr.net/npm/canvas-globe@0.1
|
|
154
|
+
<script src="https://cdn.jsdelivr.net/npm/canvas-globe@1.0.1/dist/canvas-globe.umd.js"></script>
|
|
155
155
|
<canvas id="globe" style="width:520px;aspect-ratio:1"></canvas>
|
|
156
156
|
<script>
|
|
157
157
|
CanvasGlobe.createGlobe(document.getElementById("globe"), {
|
package/codemeta.json
CHANGED
|
@@ -5,7 +5,7 @@
|
|
|
5
5
|
"identifier": "canvas-globe",
|
|
6
6
|
"description": "CanvasGlobe helps developers add interactive 3D globes and flat world maps to JavaScript and React apps with Canvas 2D, without WebGL, map tiles, API keys, or runtime network calls.",
|
|
7
7
|
"url": "https://canvasglobe.swiftools.com/",
|
|
8
|
-
"version": "1.0.
|
|
8
|
+
"version": "1.0.1",
|
|
9
9
|
"codeRepository": "https://github.com/Shree-hari/canvas-globe",
|
|
10
10
|
"issueTracker": "https://github.com/Shree-hari/canvas-globe/issues",
|
|
11
11
|
"downloadUrl": "https://www.npmjs.com/package/canvas-globe",
|
package/dist/canvas-globe.umd.js
CHANGED
|
@@ -1314,7 +1314,7 @@ function drawFitted(ctx, media, box) {
|
|
|
1314
1314
|
}
|
|
1315
1315
|
|
|
1316
1316
|
// Keep in sync with package.json. Release checks enforce this value.
|
|
1317
|
-
const CANVAS_GLOBE_VERSION = "1.0.
|
|
1317
|
+
const CANVAS_GLOBE_VERSION = "1.0.1";
|
|
1318
1318
|
|
|
1319
1319
|
/** Local license-key checks and production-use presentation helpers. */
|
|
1320
1320
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "canvas-globe",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "Build interactive 3D globes and flat world maps in JavaScript or React with Canvas 2D, without WebGL, map tiles, API keys, or runtime network calls.",
|
|
5
5
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
6
6
|
"author": {
|
package/src/version.js
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
1
|
// Keep in sync with package.json. Release checks enforce this value.
|
|
2
|
-
export const CANVAS_GLOBE_VERSION = "1.0.
|
|
2
|
+
export const CANVAS_GLOBE_VERSION = "1.0.1";
|