From 964138b132bc170092de2cdca5cd687a605882f9 Mon Sep 17 00:00:00 2001 From: yiiqii Date: Mon, 6 May 2024 14:49:52 +0800 Subject: [PATCH] docs: changelog 1.4.1 --- CHANGELOG-zh_CN.md | 12 +++++++++--- CHANGELOG.md | 12 +++++++++--- packages/effects-core/package.json | 2 +- packages/effects-helper/package.json | 2 +- packages/effects-threejs/package.json | 2 +- packages/effects-webgl/package.json | 2 +- packages/effects/package.json | 2 +- plugin-packages/alipay-downgrade/package.json | 2 +- plugin-packages/editor-gizmo/package.json | 2 +- plugin-packages/model/package.json | 2 +- plugin-packages/orientation-transformer/package.json | 2 +- plugin-packages/spine/package.json | 2 +- 12 files changed, 28 insertions(+), 16 deletions(-) diff --git a/CHANGELOG-zh_CN.md b/CHANGELOG-zh_CN.md index 11ebb167..f848b88a 100644 --- a/CHANGELOG-zh_CN.md +++ b/CHANGELOG-zh_CN.md @@ -8,6 +8,12 @@ --- +## 1.4.1 + +`2024-05-06` + +- Fix: BEZIER_CURVE_PATH 计算返回都改为 Vector3。[#326](https://github.com/galacean/effects-runtime/pull/326) @RGCHN + ## 1.4.0 `2024-04-28` @@ -20,9 +26,9 @@ `2024-04-26` -- Fix: Fixed a rendering order issue when multiple references to the same pre-composition element were made. [#312](https://github.com/galacean/effects-runtime/pull/312) @RGCHN -- Fix: Addressed the issue where pre-composition elements were not created at initialization. [#309](https://github.com/galacean/effects-runtime/pull/309) @RGCHN -- Fix: Resolved the issue where pre-composition scaling settings were not taking effect. [#296](https://github.com/galacean/effects-runtime/pull/296) @RGCHN +- Fix: 修复多次引用同一个预合成元素的渲染顺序问题。[#312](https://github.com/galacean/effects-runtime/pull/312) @RGCHN +- Fix: 预合成元素初始化时未创建的问题。[#309](https://github.com/galacean/effects-runtime/pull/309) @RGCHN +- Fix: 修复预合成缩放设置不生效的问题。[#296](https://github.com/galacean/effects-runtime/pull/296) @RGCHN ## 1.3.1 diff --git a/CHANGELOG.md b/CHANGELOG.md index 3f9fe394..e987152b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ --- +## 1.4.1 + +`2024-05-06` + +- Fix: Changed all calculations returning from BEZIER_CURVE_PATH to Vector3. [#326](https://github.com/galacean/effects-runtime/pull/326) @RGCHN + ## 1.4.0 `2024-04-28` @@ -19,9 +25,9 @@ `2024-04-26` -- Fix: 修复多次引用同一个预合成元素的渲染顺序问题。[#312](https://github.com/galacean/effects-runtime/pull/312) @RGCHN -- Fix: 预合成元素初始化时未创建的问题。[#309](https://github.com/galacean/effects-runtime/pull/309) @RGCHN -- Fix: 修复预合成缩放设置不生效的问题。[#296](https://github.com/galacean/effects-runtime/pull/296) @RGCHN +- Fix: Fixed a rendering order issue when multiple references to the same pre-composition element were made. [#312](https://github.com/galacean/effects-runtime/pull/312) @RGCHN +- Fix: Addressed the issue where pre-composition elements were not created at initialization. [#309](https://github.com/galacean/effects-runtime/pull/309) @RGCHN +- Fix: Resolved the issue where pre-composition scaling settings were not taking effect. [#296](https://github.com/galacean/effects-runtime/pull/296) @RGCHN ## 1.3.1 diff --git a/packages/effects-core/package.json b/packages/effects-core/package.json index bcac582a..a0e5d217 100644 --- a/packages/effects-core/package.json +++ b/packages/effects-core/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-core", - "version": "1.4.0", + "version": "1.4.1", "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 2c2f0402..50412cb3 100644 --- a/packages/effects-helper/package.json +++ b/packages/effects-helper/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-helper", - "version": "1.4.0", + "version": "1.4.1", "description": "Galacean Effects runtime helper for the web", "module": "./dist/index.mjs", "types": "./dist/index.d.ts", diff --git a/packages/effects-threejs/package.json b/packages/effects-threejs/package.json index 8d348009..e4a38dbe 100644 --- a/packages/effects-threejs/package.json +++ b/packages/effects-threejs/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-threejs", - "version": "1.4.0", + "version": "1.4.1", "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 6664859b..05710731 100644 --- a/packages/effects-webgl/package.json +++ b/packages/effects-webgl/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-webgl", - "version": "1.4.0", + "version": "1.4.1", "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 b4a7fb55..7bfc2bde 100644 --- a/packages/effects/package.json +++ b/packages/effects/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects", - "version": "1.4.0", + "version": "1.4.1", "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 8ba7de44..63146c84 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": "1.4.0", + "version": "1.4.1", "description": "Galacean Effects player downgrade plugin for Alipay", "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 5b7793f7..d4f2d07f 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": "1.4.0", + "version": "1.4.1", "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 ee034fa7..3e84f5d2 100644 --- a/plugin-packages/model/package.json +++ b/plugin-packages/model/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-model", - "version": "1.4.0", + "version": "1.4.1", "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 c019ee08..4b6cbaf7 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": "1.4.0", + "version": "1.4.1", "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 4248f2dd..d4b9b175 100644 --- a/plugin-packages/spine/package.json +++ b/plugin-packages/spine/package.json @@ -1,6 +1,6 @@ { "name": "@galacean/effects-plugin-spine", - "version": "1.4.0", + "version": "1.4.1", "description": "Galacean Effects player spine plugin", "module": "./dist/index.mjs", "main": "./dist/index.js",