From 1326d589ac1e5915a2eed7ddfdd56147c8e2e47b Mon Sep 17 00:00:00 2001 From: LWenK Date: Tue, 4 Nov 2025 23:14:53 +0800 Subject: [PATCH 1/2] feat: adapt to LeviLamina 1.7.0 --- CHANGELOG.md | 10 +++++++--- tooth.json | 4 ++-- xmake.lua | 4 ++-- 3 files changed, 11 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d02dab3..034ed49 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,20 +7,24 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [未发布] +### 新增 + +- 适配LeviLamina 1.7.0 + ## [0.5.0] - 2025-10-11 -## 新增 +### 新增 - 统计玩家骑乘快乐恶魂移动距离 - 适配LeviLamina 1.6.0 ## [0.4.0] - 2025-08-16 -## 新增 +### 新增 - 适配LeviLamina 1.4.0(BDS 1.21.93) -## 修复 +### 修复 - 玩家停止骑行时服务器异常崩溃的问题 - 部分情况下生物死亡时报错 diff --git a/tooth.json b/tooth.json index 24b6763..6d11461 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LeafKnife/Stats", - "version": "0.5.0", + "version": "0.6.0", "info": { "name": "Stats", "description": "Minecraft 基岩版服务器(BDS) 统计信息插件", @@ -14,7 +14,7 @@ }, "asset_url": "https://github.com/LeafKnife/Stats/releases/download/v$(version)/Stats-windows-x64.zip", "prerequisites": { - "github.com/LiteLDev/LeviLamina": "1.6.x" + "github.com/LiteLDev/LeviLamina": "1.7.x" }, "files": { "place": [ diff --git a/xmake.lua b/xmake.lua index 3927d50..9d70280 100644 --- a/xmake.lua +++ b/xmake.lua @@ -6,9 +6,9 @@ add_repositories("liteldev-repo https://github.com/LiteLDev/xmake-repo.git") -- add_requires("levilamina develop") to use develop version -- please note that you should add bdslibrary yourself if using dev version if is_config("target_type", "server") then - add_requires("levilamina 1.6.0", {configs = {target_type = "server"}}) + add_requires("levilamina 1.7.0", {configs = {target_type = "server"}}) else - add_requires("levilamina 1.6.0", {configs = {target_type = "client"}}) + add_requires("levilamina 1.7.0", {configs = {target_type = "client"}}) end add_requires("levibuildscript") From f62134903cd0d1c48a7ada09b23b9d98bf27e5cf Mon Sep 17 00:00:00 2001 From: LWenK Date: Thu, 6 Nov 2025 22:34:38 +0800 Subject: [PATCH 2/2] chore:version 0.6.0 --- CHANGELOG.md | 13 ++++++++----- tooth.json | 2 +- 2 files changed, 9 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 034ed49..f1e18cb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [未发布] +## [0.6.0] - 2025-11-06 + ### 新增 - 适配LeviLamina 1.7.0 @@ -188,11 +190,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - 统计玩家与床交互次数 - 统计玩家与部分方块交互次数 -[未发布]: https://github.com/LeafKnife/Stats/compare/v0.5.0...dev -[0.5.0]: https://github.com/LeafKnife/Stats/compare/v0.4.0...0.5.0 -[0.4.0]: https://github.com/LeafKnife/Stats/compare/v0.3.1...0.4.0 -[0.3.1]: https://github.com/LeafKnife/Stats/compare/v0.3.0...0.3.1 -[0.3.0]: https://github.com/LeafKnife/Stats/compare/v0.2.6...0.3.0 +[未发布]: https://github.com/LeafKnife/Stats/compare/v0.6.0...dev +[0.6.0]: https://github.com/LeafKnife/Stats/compare/v0.5.0...v0.6.0 +[0.5.0]: https://github.com/LeafKnife/Stats/compare/v0.4.0...v0.5.0 +[0.4.0]: https://github.com/LeafKnife/Stats/compare/v0.3.1...v0.4.0 +[0.3.1]: https://github.com/LeafKnife/Stats/compare/v0.3.0...v0.3.1 +[0.3.0]: https://github.com/LeafKnife/Stats/compare/v0.2.6...v0.3.0 [0.2.6]: https://github.com/LeafKnife/Stats/compare/v0.2.5...v0.2.6 [0.2.5]: https://github.com/LeafKnife/Stats/compare/v0.2.4...v0.2.5 [0.2.4]: https://github.com/LeafKnife/Stats/compare/v0.2.3...v0.2.4 diff --git a/tooth.json b/tooth.json index 6d11461..c47e41f 100644 --- a/tooth.json +++ b/tooth.json @@ -1,7 +1,7 @@ { "format_version": 2, "tooth": "github.com/LeafKnife/Stats", - "version": "0.6.0", + "version": "0.6.0-beta.1", "info": { "name": "Stats", "description": "Minecraft 基岩版服务器(BDS) 统计信息插件",