File tree Expand file tree Collapse file tree 4 files changed +78
-7
lines changed
Expand file tree Collapse file tree 4 files changed +78
-7
lines changed Original file line number Diff line number Diff line change @@ -8,6 +8,10 @@ description: MatrixShop 当前模块化实现的总览与阅读入口。
88
99MatrixShop 是面向生存、经济和市场场景的模块化交易插件。当前主线版本已经具备正式部署所需的核心模块、统一命令体系、统一菜单框架、统一权限校验、统一经济模块和 JDBC 优先的数据层。
1010
11+ 当前最新修复版本为:
12+
13+ - [ 1.1.1 发布说明] ( ./release-notes-1-1-1 )
14+
1115## 当前版本状态
1216
1317- 已完成首发所需的核心业务链
@@ -52,13 +56,14 @@ MatrixShop 是面向生存、经济和市场场景的模块化交易插件。当
5256如果你第一次接触 MatrixShop,推荐顺序是:
5357
54581 . [ 快速开始] ( ./quick-start )
55- 2 . [ 1.1.0 发布说明] ( ./release-notes-1-1-0 )
56- 3 . [ 配置结构] ( ./configuration-structure )
57- 4 . [ 经济模块] ( ./economy )
58- 5 . [ 命令与权限] ( ./commands-and-permissions )
59- 6 . [ 数据库与存储] ( ./database-and-storage )
60- 7 . [ 模块总览] ( ./modules-overview )
61- 8 . [ 商店与模块详解] ( ./shop-types )
59+ 2 . [ 1.1.1 发布说明] ( ./release-notes-1-1-1 )
60+ 3 . [ 1.1.0 发布说明] ( ./release-notes-1-1-0 )
61+ 4 . [ 配置结构] ( ./configuration-structure )
62+ 5 . [ 经济模块] ( ./economy )
63+ 6 . [ 命令与权限] ( ./commands-and-permissions )
64+ 7 . [ 数据库与存储] ( ./database-and-storage )
65+ 8 . [ 模块总览] ( ./modules-overview )
66+ 9 . [ 商店与模块详解] ( ./shop-types )
6267
6368## 发布前建议
6469
@@ -70,4 +75,5 @@ MatrixShop 是面向生存、经济和市场场景的模块化交易插件。当
7075
7176如果你是从 ` 1.0.0 ` 升级,请先看:
7277
78+ - [ 1.1.1 发布说明] ( ./release-notes-1-1-1 )
7379- [ 1.1.0 发布说明] ( ./release-notes-1-1-0 )
Original file line number Diff line number Diff line change @@ -15,6 +15,7 @@ description: 首次部署 MatrixShop、生成默认配置并验证基本指令
1515
1616如果你正在从 ` 1.0.0 ` 升级,请先阅读:
1717
18+ - [ 1.1.1 发布说明] ( ./release-notes-1-1-1 )
1819- [ 1.1.0 发布说明] ( ./release-notes-1-1-0 )
1920
2021## 2. 默认目录
Original file line number Diff line number Diff line change 1+ ---
2+ title : 1.1.1 发布说明
3+ description : MatrixShop 1.1.1 的修复内容、升级建议和验证结果。
4+ ---
5+
6+ # MatrixShop 1.1.1 发布说明
7+
8+ 发布时间:` 2026-03-31 `
9+
10+ ## 版本定位
11+
12+ ` 1.1.1 ` 是基于 ` 1.1.0 ` 的修复版本。
13+
14+ 这一版不调整核心业务结构,重点是补齐正式发布材料,并修复当前主线里仍然存在的两处兼容问题。
15+
16+ ## 本版本内容
17+
18+ ### 发布材料收口
19+
20+ 本版本补齐了正式发布需要的仓库材料:
21+
22+ - 新增 ` CHANGELOG.md `
23+ - 新增 ` 1.1.1 ` 发布说明页
24+ - 调整 README 中的发布说明入口
25+
26+ ### 兼容问题修复
27+
28+ 本版本修复了两处与发布稳定性直接相关的问题:
29+
30+ - 交易请求界面中的玩家头颅,不再依赖过时的 ` SkullMeta.owner `
31+ - 玩家商店按玩家名打开时,不再依赖过时的名字式离线玩家查询
32+
33+ 当前实现会优先从:
34+
35+ 1 . 在线玩家
36+ 2 . 本地离线资料
37+ 3 . 已存在的玩家商店数据
38+
39+ 中解析目标玩家。
40+
41+ ## 升级建议
42+
43+ 如果你已经部署了 ` 1.1.0 ` ,升级到 ` 1.1.1 ` 时主要关注两点:
44+
45+ - 替换插件本体 JAR
46+ - 若你在文档或服内说明中引用了旧版本发布页,改用 ` 1.1.1 `
47+
48+ 这一版没有引入新的配置破坏性变更。
49+
50+ ## 验证
51+
52+ 本版本发布前已完成:
53+
54+ - ` bash ./gradlew build `
55+ - 文档站 ` npm run build `
56+ - ` paper-1.12.2 ` smoke boot
57+
58+ ## 相关链接
59+
60+ - [ GitHub Releases] ( https://github.com/54895y/MatrixShop/releases )
61+ - [ 1.1.1 GitHub Release] ( https://github.com/54895y/MatrixShop/releases/tag/v1.1.1 )
62+ - [ CHANGELOG] ( https://github.com/54895y/MatrixShop/blob/main/CHANGELOG.md )
63+ - [ 1.1.0 发布说明] ( ./release-notes-1-1-0 )
Original file line number Diff line number Diff line change @@ -45,6 +45,7 @@ const sidebars: SidebarsConfig = {
4545 } ,
4646 items : [
4747 'matrixshop/quick-start' ,
48+ 'matrixshop/release-notes-1-1-1' ,
4849 'matrixshop/release-notes-1-1-0' ,
4950 'matrixshop/configuration-structure' ,
5051 'matrixshop/economy' ,
You can’t perform that action at this time.
0 commit comments