canvas-globe 1.0.0-beta.1 → 1.0.0-beta.2
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 +7 -0
- package/README.md +1 -1
- 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,13 @@ All notable changes to this package are documented here. The format follows
|
|
|
6
6
|
|
|
7
7
|
## [Unreleased]
|
|
8
8
|
|
|
9
|
+
## [1.0.0-beta.2] - 2026-09-17
|
|
10
|
+
|
|
11
|
+
- Corrected the project-creator help and README so beta users install the
|
|
12
|
+
current `next` channel instead of the older `latest` release.
|
|
13
|
+
- Added a CLI help regression test and kept all coordinated packages and
|
|
14
|
+
starter templates on the same beta version.
|
|
15
|
+
|
|
9
16
|
## [1.0.0-beta.1] - 2026-09-16
|
|
10
17
|
|
|
11
18
|
- Prepared an opt-in proprietary 1.x licensing model with a local `GLO`
|
package/README.md
CHANGED
|
@@ -238,7 +238,7 @@ To scaffold a complete starter for React, Next.js, Vue, SvelteKit, Vanilla
|
|
|
238
238
|
JavaScript, or Web Components, run:
|
|
239
239
|
|
|
240
240
|
```bash
|
|
241
|
-
npm create canvas-globe@
|
|
241
|
+
npm create canvas-globe@next my-globe
|
|
242
242
|
```
|
|
243
243
|
|
|
244
244
|
### AI-assisted setup
|
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.0-beta.
|
|
8
|
+
"version": "1.0.0-beta.2",
|
|
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.0-beta.
|
|
1317
|
+
const CANVAS_GLOBE_VERSION = "1.0.0-beta.2";
|
|
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.0-beta.
|
|
3
|
+
"version": "1.0.0-beta.2",
|
|
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.0-beta.
|
|
2
|
+
export const CANVAS_GLOBE_VERSION = "1.0.0-beta.2";
|