-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
18 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,21 @@ | ||
# 1.0.7 | ||
## feat | ||
- 加入script var相关功能 | ||
- 加入更新检测 | ||
## fix | ||
- 修复vosk关闭时开游戏会null pointer exception | ||
- 修复vosk开游戏无论开不开都会启动一次 | ||
--- | ||
- 加入script var相关功能 | ||
- 加入更新检测 | ||
## perf | ||
- 更新了两处style相关, 移除两处不必要的翻译文本 | ||
- 优化某些操作, 修复某些潜在错误 | ||
1. ClientTickHandler.java 加入了可能会被引用的ClientPlayer对象 | ||
2. 加入了大量的@NotNull以及@Nullable@Override注解 | ||
3. 为某些重要方法编写了Java doc | ||
4. 修复PlayerMessageSender可能的多线程问题 | ||
5. VarDataHandler.java中为避免不正确调用, 加了一堆throw new UnsupportedOperationException(); | ||
6. 优化了ScriptVar的打开文件夹方式, 引用了Mc自己的代码, 现在可支持更多操作系统 | ||
7. 在几个Manager里头, 查找返回值可能为null的情况处, 改用了Optional对象以增加可读性 | ||
- 在更新检测方面作出了修改 | ||
1. 版本号从硬编码变为从fabric那块读取 | ||
2. 把带url的Text对象生成搞到了utils里头 | ||
- 修复某些地方调用pms.add()时不必要的translate |