[ts] 4.1.27 release.

This commit is contained in:
Mario Zechner 2023-04-17 16:26:38 +02:00
parent aa1064b83b
commit f0ad8e2024
11 changed files with 1050 additions and 2041 deletions

View File

@ -144,6 +144,9 @@
* `RegionAttachment#computeWorldVertices()` takes a `Slot` instead of a `Bone` as the first argument. * `RegionAttachment#computeWorldVertices()` takes a `Slot` instead of a `Bone` as the first argument.
* Removed `PlayerEditor`. * Removed `PlayerEditor`.
* `VertexEffect` has been removed. * `VertexEffect` has been removed.
* Removed `RegionAttachment.rendererObject`.
* Renamed `TextureRegion.renderObject` to `TextureRegion.texture`.
### WebGL backend ### WebGL backend
* `PolygonBatcher` can now disable culling automatically if the static variable `PolygonBatcher.disableCulling` is set to true. * `PolygonBatcher` can now disable culling automatically if the static variable `PolygonBatcher.disableCulling` is set to true.

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-ts", "name": "@esotericsoftware/spine-ts",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"files": [ "files": [
"README.md" "README.md"
@ -60,6 +60,9 @@
"esbuild": "^0.16.4", "esbuild": "^0.16.4",
"live-server": "^1.2.2", "live-server": "^1.2.2",
"rimraf": "^3.0.2", "rimraf": "^3.0.2",
"typescript": "^4.9.4" "typescript": "^4.9.4",
"@types/three": "^0.146.0",
"three": "^0.146.0",
"phaser": "^3.60.0"
} }
} }

View File

@ -20,6 +20,6 @@ sed -i '' "s/$lastVersion/$newVersion/" spine-threejs/package.json
sed -i '' "s/$lastVersion/$newVersion/" spine-webgl/package.json sed -i '' "s/$lastVersion/$newVersion/" spine-webgl/package.json
rm -rf node_modules rm -rf node_modules
rm package-lock.json rm -rf package-lock.json
npm install npm install
npm publish --access public --workspaces npm publish --access public --workspaces

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-canvas", "name": "@esotericsoftware/spine-canvas",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,6 +30,6 @@
}, },
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
"dependencies": { "dependencies": {
"@esotericsoftware/spine-core": "^4.1.26" "@esotericsoftware/spine-core": "^4.1.27"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-core", "name": "@esotericsoftware/spine-core",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-phaser", "name": "@esotericsoftware/spine-phaser",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the Phaser.", "description": "The official Spine Runtimes for the Phaser.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,9 +30,8 @@
}, },
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
"dependencies": { "dependencies": {
"@esotericsoftware/spine-core": "^4.2.10", "@esotericsoftware/spine-core": "^4.1.27",
"@esotericsoftware/spine-webgl": "^4.2.10", "@esotericsoftware/spine-webgl": "^4.1.27",
"@esotericsoftware/spine-canvas": "^4.2.10", "@esotericsoftware/spine-canvas": "^4.1.27"
"phaser": "^3.55.2"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-player", "name": "@esotericsoftware/spine-player",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,6 +30,6 @@
}, },
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
"dependencies": { "dependencies": {
"@esotericsoftware/spine-webgl": "^4.1.26" "@esotericsoftware/spine-webgl": "^4.1.27"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-threejs", "name": "@esotericsoftware/spine-threejs",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,8 +30,6 @@
}, },
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
"dependencies": { "dependencies": {
"@types/three": "^0.146.0", "@esotericsoftware/spine-core": "^4.1.27"
"three": "^0.146.0",
"@esotericsoftware/spine-core": "^4.1.26"
} }
} }

View File

@ -1,6 +1,6 @@
{ {
"name": "@esotericsoftware/spine-webgl", "name": "@esotericsoftware/spine-webgl",
"version": "4.1.26", "version": "4.1.27",
"description": "The official Spine Runtimes for the web.", "description": "The official Spine Runtimes for the web.",
"main": "dist/index.js", "main": "dist/index.js",
"types": "dist/index.d.ts", "types": "dist/index.d.ts",
@ -30,6 +30,6 @@
}, },
"homepage": "https://github.com/esotericsoftware/spine-runtimes#readme", "homepage": "https://github.com/esotericsoftware/spine-runtimes#readme",
"dependencies": { "dependencies": {
"@esotericsoftware/spine-core": "^4.1.26" "@esotericsoftware/spine-core": "^4.1.27"
} }
} }