Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 15 additions & 8 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,20 +7,26 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [未发布]

## [0.6.0] - 2025-11-06

### 新增

- 适配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)

## 修复
### 修复

- 玩家停止骑行时服务器异常崩溃的问题
- 部分情况下生物死亡时报错
Expand Down Expand Up @@ -184,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
Expand Down
4 changes: 2 additions & 2 deletions tooth.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"format_version": 2,
"tooth": "github.com/LeafKnife/Stats",
"version": "0.5.0",
"version": "0.6.0-beta.1",
"info": {
"name": "Stats",
"description": "Minecraft 基岩版服务器(BDS) 统计信息插件",
Expand All @@ -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": [
Expand Down
4 changes: 2 additions & 2 deletions xmake.lua
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down