Skip to content

Commit e3b1ca0

Browse files
committed
changelog
1 parent f7fd37d commit e3b1ca0

File tree

4 files changed

+29
-9
lines changed

4 files changed

+29
-9
lines changed

CMakeLists.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,8 +5,8 @@ cmake_minimum_required(VERSION 3.16)
55
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
66

77
# variables
8-
set(TRAPDOOR_VERSION 0.36.0)
9-
set(GAME_VERSION 1.19.72.01)
8+
set(TRAPDOOR_VERSION 0.38.0)
9+
set(GAME_VERSION 1.19.81.01)
1010
set(CMAKE_CXX_STANDARD 17)
1111
set(CMAKE_BUILD_TYPE Release)
1212

changelog.md

+22-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,28 @@
44

55
- 支持1.19.81.01
66
- 修复低耐久不切换同样不同耐久的工具的情况
7+
- 修改快捷指令的配置文件格式,为每个快捷指令添加名字以及`enable`选项。**因此该版本的配置文件的快捷指令部分不兼容旧版本,请手动替换快捷指令部分的配置**
8+
- 修复仙人掌转方块和仙人掌右键混凝土的快捷指令冲突的问题
9+
- 添加`shortcut`命令用于在游戏内开关快捷指令 (#96)
710

8-
---
11+
---
12+
13+
- Support 1.19.81.01
14+
- Fix low damage tools can't switch automatically
15+
- Modify the configuration file format of shortcuts, add name as key and `enable` option for each shortcut. Therefore, **the
16+
configuration file of this version is not compatible with the old version, please replace the configuration of
17+
the shortcut command manually**.
18+
- Fix the issue that the cactus rotation are in conflict with shortcut "hopper counter printer".
19+
- Add `shortcut` command for en/disable shortcut in game (#96)
20+
21+
### trapdoor-ll-0.37.0-1.19.81.01
22+
23+
#### 更新日志
24+
25+
- 支持1.19.81.01
26+
- 修复低耐久不切换同样不同耐久的工具的情况
27+
28+
---
929

1030
- Support 1.19.81.01
1131
- Fix Low damage tools can't switch automatically
@@ -20,7 +40,7 @@
2040
-[hud]添加了显示全局生物上限的功能
2141
- 修复[hud]的漏斗计数器无法正常关闭的bug
2242

23-
---
43+
---
2444

2545
- Support 1.19.72.01
2646
- Add `Trapdoor` items to the outputs of `prof` command to measure the tick overhead of mod itself.

metadata

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
0.36.0
1+
0.38.0
22
1.19.81.01
33
2.13.0

src/include/config.h

+4-4
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#define STR(x) #x
33
#define STRING(x) STR(x)
44
#define Trapdoor_VERSION_MAJOR 0
5-
#define Trapdoor_VERSION_MINOR 36
5+
#define Trapdoor_VERSION_MINOR 38
66
#define Trapdoor_VERSION_PATCH 0
7-
#define TRAPDOOR_VERSION 0.36.0
8-
#define GAME_VERSION 1.19.72.01
9-
#define BUILD_TIME 2023-05-16 20:28:09
7+
#define TRAPDOOR_VERSION 0.38.0
8+
#define GAME_VERSION 1.19.81.01
9+
#define BUILD_TIME 2023-05-18 17:05:03

0 commit comments

Comments
 (0)