chore: release packages (#441)

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
This commit is contained in:
github-actions[bot]
2026-01-05 22:20:23 +08:00
committed by GitHub
parent 30173f0764
commit e90a42b1c9
12 changed files with 56 additions and 26 deletions

View File

@@ -1,11 +0,0 @@
---
"@esengine/ecs-framework-math": minor
---
feat(math): 添加定点数数学库 | Add fixed-point math library
**@esengine/ecs-framework-math** - 新增定点数支持 | Add fixed-point number support
- 新增 `Fixed32`Q16.16 定点数实现 | Add `Fixed32` class: Q16.16 fixed-point implementation
- 新增 `FixedMath` 工具类:定点数数学运算 | Add `FixedMath` utility: fixed-point math operations
- 新增 `FixedVector2` 类:定点数二维向量 | Add `FixedVector2` class: fixed-point 2D vector
- 支持基本算术运算、三角函数、向量运算 | Support basic arithmetic, trigonometry, vector operations

View File

@@ -1,10 +0,0 @@
---
"@esengine/network": minor
---
feat(network): 添加定点数网络同步支持 | Add fixed-point network sync support
**@esengine/network** - 新增定点数同步模块 | Add fixed-point sync module
- 新增 `FixedSnapshotBuffer`:定点数快照缓冲区 | Add `FixedSnapshotBuffer`: fixed-point snapshot buffer
- 新增 `FixedClientPrediction`:定点数客户端预测 | Add `FixedClientPrediction`: fixed-point client prediction
- 支持确定性帧同步和状态回滚 | Support deterministic lockstep and state rollback

View File

@@ -0,0 +1,13 @@
# @esengine/ecs-framework-math
## 2.8.0
### Minor Changes
- [#440](https://github.com/esengine/esengine/pull/440) [`30173f0`](https://github.com/esengine/esengine/commit/30173f076415c9770a429b236b8bab95a2fdc498) Thanks [@esengine](https://github.com/esengine)! - feat(math): 添加定点数数学库 | Add fixed-point math library
**@esengine/ecs-framework-math** - 新增定点数支持 | Add fixed-point number support
- 新增 `Fixed32`Q16.16 定点数实现 | Add `Fixed32` class: Q16.16 fixed-point implementation
- 新增 `FixedMath` 工具类:定点数数学运算 | Add `FixedMath` utility: fixed-point math operations
- 新增 `FixedVector2` 类:定点数二维向量 | Add `FixedVector2` class: fixed-point 2D vector
- 支持基本算术运算、三角函数、向量运算 | Support basic arithmetic, trigonometry, vector operations

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/ecs-framework-math", "name": "@esengine/ecs-framework-math",
"version": "1.0.5", "version": "2.8.0",
"description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能", "description": "ECS框架2D数学库 - 提供向量、矩阵、几何形状和碰撞检测功能",
"main": "bin/index.js", "main": "bin/index.js",
"types": "bin/index.d.ts", "types": "bin/index.d.ts",

View File

@@ -1,5 +1,21 @@
# @esengine/network # @esengine/network
## 10.0.0
### Minor Changes
- [#440](https://github.com/esengine/esengine/pull/440) [`30173f0`](https://github.com/esengine/esengine/commit/30173f076415c9770a429b236b8bab95a2fdc498) Thanks [@esengine](https://github.com/esengine)! - feat(network): 添加定点数网络同步支持 | Add fixed-point network sync support
**@esengine/network** - 新增定点数同步模块 | Add fixed-point sync module
- 新增 `FixedSnapshotBuffer`:定点数快照缓冲区 | Add `FixedSnapshotBuffer`: fixed-point snapshot buffer
- 新增 `FixedClientPrediction`:定点数客户端预测 | Add `FixedClientPrediction`: fixed-point client prediction
- 支持确定性帧同步和状态回滚 | Support deterministic lockstep and state rollback
### Patch Changes
- Updated dependencies [[`30173f0`](https://github.com/esengine/esengine/commit/30173f076415c9770a429b236b8bab95a2fdc498)]:
- @esengine/ecs-framework-math@2.8.0
## 9.0.0 ## 9.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/network", "name": "@esengine/network",
"version": "9.0.0", "version": "10.0.0",
"description": "Network synchronization for multiplayer games", "description": "Network synchronization for multiplayer games",
"esengine": { "esengine": {
"plugin": true, "plugin": true,

View File

@@ -1,5 +1,12 @@
# @esengine/pathfinding # @esengine/pathfinding
## 9.0.0
### Patch Changes
- Updated dependencies [[`30173f0`](https://github.com/esengine/esengine/commit/30173f076415c9770a429b236b8bab95a2fdc498)]:
- @esengine/ecs-framework-math@2.8.0
## 8.0.0 ## 8.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/pathfinding", "name": "@esengine/pathfinding",
"version": "8.0.0", "version": "9.0.0",
"description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh", "description": "寻路系统 | Pathfinding System - A*, Grid, NavMesh",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,12 @@
# @esengine/spatial # @esengine/spatial
## 9.0.0
### Patch Changes
- Updated dependencies [[`30173f0`](https://github.com/esengine/esengine/commit/30173f076415c9770a429b236b8bab95a2fdc498)]:
- @esengine/ecs-framework-math@2.8.0
## 8.0.0 ## 8.0.0
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/spatial", "name": "@esengine/spatial",
"version": "8.0.0", "version": "9.0.0",
"description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统", "description": "Spatial query and indexing system for ECS Framework / ECS 框架的空间查询和索引系统",
"type": "module", "type": "module",
"main": "./dist/index.js", "main": "./dist/index.js",

View File

@@ -1,5 +1,13 @@
# @esengine/demos # @esengine/demos
## 1.0.15
### Patch Changes
- Updated dependencies []:
- @esengine/pathfinding@9.0.0
- @esengine/spatial@9.0.0
## 1.0.14 ## 1.0.14
### Patch Changes ### Patch Changes

View File

@@ -1,6 +1,6 @@
{ {
"name": "@esengine/demos", "name": "@esengine/demos",
"version": "1.0.14", "version": "1.0.15",
"private": true, "private": true,
"description": "Demo tests for ESEngine modules documentation", "description": "Demo tests for ESEngine modules documentation",
"type": "module", "type": "module",