diff --git a/CHANGELOG-zh_CN.md b/CHANGELOG-zh_CN.md index 396ac64b..c0994e80 100644 --- a/CHANGELOG-zh_CN.md +++ b/CHANGELOG-zh_CN.md @@ -8,6 +8,13 @@ --- +## 2.0.7 + +`2024-10-30` + +- Fix: 修复 Spine 元素遮罩问题。[#706](https://github.com/galacean/effects-runtime/pull/706) @RGCHN +- Fix: 移除 Player 类中关于渲染错误队列的无用代码。[#664](https://github.com/galacean/effects-runtime/pull/664) @Sruimeng + ## 2.0.6 `2024-09-13` diff --git a/CHANGELOG.md b/CHANGELOG.md index 61266d4b..6958299f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,13 @@ --- +## 2.0.7 + +`2024-10-30` + +- Fix: Resolve the Spine element masking issue. [#706](https://github.com/galacean/effects-runtime/pull/706) @RGCHN +- Fix: Remove unused code related to the render error queue in the Player class. [#664](https://github.com/galacean/effects-runtime/pull/664) @Sruimeng + ## 2.0.6 `2024-09-13` diff --git a/packages/effects-core/package.json b/packages/effects-core/package.json index ec7fbdf5..5c15d0de 100644 --- a/packages/effects-core/package.json +++ b/packages/effects-core/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-core", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime core for the web", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/packages/effects-helper/package.json b/packages/effects-helper/package.json index 604064e2..1b79d0e0 100644 --- a/packages/effects-helper/package.json +++ b/packages/effects-helper/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-helper", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime helper for the web", "module": "./dist/index.js", "types": "./dist/index.d.ts", diff --git a/packages/effects-threejs/package.json b/packages/effects-threejs/package.json index a2e3c81d..0ed81615 100644 --- a/packages/effects-threejs/package.json +++ b/packages/effects-threejs/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-threejs", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime threejs plugin for the web", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/packages/effects-webgl/package.json b/packages/effects-webgl/package.json index 34c715a5..57d5e729 100644 --- a/packages/effects-webgl/package.json +++ b/packages/effects-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-webgl", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime webgl for the web", "types": "./dist/index.d.ts", "files": [ diff --git a/packages/effects/package.json b/packages/effects/package.json index 8639062a..0a7ea84f 100644 --- a/packages/effects/package.json +++ b/packages/effects/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime player for the web", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/alipay-downgrade/package.json b/plugin-packages/alipay-downgrade/package.json index 172f1c08..bb1a9ea5 100644 --- a/plugin-packages/alipay-downgrade/package.json +++ b/plugin-packages/alipay-downgrade/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-alipay-downgrade", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player downgrade plugin for Alipay", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/downgrade/package.json b/plugin-packages/downgrade/package.json index aa1b12f4..0bf149eb 100644 --- a/plugin-packages/downgrade/package.json +++ b/plugin-packages/downgrade/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-downgrade", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player downgrade plugin", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/editor-gizmo/package.json b/plugin-packages/editor-gizmo/package.json index 4e7327f3..54ac9e19 100644 --- a/plugin-packages/editor-gizmo/package.json +++ b/plugin-packages/editor-gizmo/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-editor-gizmo", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player editor gizmo plugin", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/model/package.json b/plugin-packages/model/package.json index d3594b98..b06c5a39 100644 --- a/plugin-packages/model/package.json +++ b/plugin-packages/model/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-model", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player model plugin", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/orientation-transformer/package.json b/plugin-packages/orientation-transformer/package.json index ffd3a8bd..05b9d3a1 100644 --- a/plugin-packages/orientation-transformer/package.json +++ b/plugin-packages/orientation-transformer/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-orientation-transformer", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player orientation transformer plugin", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/spine/package.json b/plugin-packages/spine/package.json index c852e613..901ea3e0 100644 --- a/plugin-packages/spine/package.json +++ b/plugin-packages/spine/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-spine", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects player spine plugin", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/plugin-packages/stats/package.json b/plugin-packages/stats/package.json index f5fef45e..bdddaf78 100644 --- a/plugin-packages/stats/package.json +++ b/plugin-packages/stats/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-stats", - "version": "2.0.6", + "version": "2.0.7", "description": "Galacean Effects runtime stats for the web", "module": "./dist/index.mjs", "main": "./dist/index.js", diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 4018239f..51734b7c 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -150,8 +150,8 @@ importers: specifier: 1.1.0 version: 1.1.0 '@galacean/effects-specification': - specifier: 2.0.0 - version: 2.0.0 + specifier: 2.0.2 + version: 2.0.2 flatbuffers: specifier: 24.3.25 version: 24.3.25 @@ -2199,6 +2199,10 @@ packages: /@galacean/effects-specification@2.0.0: resolution: {integrity: sha512-7ieZALZYn5fwKLIGAskmYSKGX82ZkLRdDUInG21KsOJ2eQ5+HcI6mJU5tmN8vjZxQUc+RVuUcssExGbiaj2+5w==} + /@galacean/effects-specification@2.0.2: + resolution: {integrity: sha512-9X7MJ79Y2LQ1W7PEl+wJqlYwBLNe3kffDL2mIV5C9U3wwYbUW9giBFHTKhgsSSHMXKbGR1v3JBUyYH0zckdGTQ==} + dev: false + /@humanwhocodes/config-array@0.11.14: resolution: {integrity: sha512-3T8LkOmg45BV5FICb15QQMsyUSWrQ8AygVfC7ZG32zOalnqrilm018ZVCw0eapXux8FtA33q8PSRSstjee3jSg==} engines: {node: '>=10.10.0'}