@yangyongtao/gaea 1.1.0 → 1.1.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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yangyongtao/gaea",
3
- "version": "1.1.0",
3
+ "version": "1.1.1",
4
4
  "description": "Gaea 3D visualization component library - Vue 3 components based on Godot WASM engine. Includes WMTS layer loading, camera view control, Vite plugin auto-injection, etc.",
5
5
  "type": "module",
6
6
  "main": "src/index.js",
@@ -81,6 +81,6 @@
81
81
  "author": "yangyongtao",
82
82
  "repository": {
83
83
  "type": "git",
84
- "url": "https://github.com/yangyongtao/gaea.git"
84
+ "url": "https://github.com/smallflypig/Gaea.git"
85
85
  }
86
86
  }
@@ -26,7 +26,7 @@ const PKG = JSON.parse(fs.readFileSync(path.join(PACKAGE_ROOT, 'package.json'),
26
26
  const VERSION = PKG.version;
27
27
 
28
28
  const ZIP_NAME = `gaea-assets-v${VERSION}.zip`;
29
- const GITHUB_RELEASES = `https://github.com/yangyongtao/gaea/releases/download/v${VERSION}`;
29
+ const GITHUB_RELEASES = `https://github.com/smallflypig/Gaea/releases/download/v${VERSION}`;
30
30
  const ZIP_URL = `${GITHUB_RELEASES}/${ZIP_NAME}`;
31
31
 
32
32
  // ── helpers ──────────────────────────────────────────────────────────