Skip to content

Commit bbae837

Browse files
committed
发布 v1.1.19 正式版
1 parent b790a3d commit bbae837

File tree

11 files changed

+63
-1
lines changed

11 files changed

+63
-1
lines changed

CHANGELOG.md

Lines changed: 62 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,67 @@
1212
1313
-------------------------------------------------------------------------------
1414

15+
## [v1.1.19] - `2023-01-26`
16+
17+
### 特别感谢
18+
19+
在此版本的开发过程中以下朋友提供了各种形式的支持, 特此鸣谢 (排名不分先后).
20+
21+
- 差记性的小北、山有、HongShin、Renee
22+
23+
### 特别公告
24+
25+
熊猫模拟器的官网也已经正式上线了, 欢迎各位朋友前往访问! [前往访问](https://pandas.ws)
26+
27+
### 加入 Discord 社区
28+
29+
我们在 Discord 开设了 PandasWS 官方社区, 欢迎各位朋友加入! [猛击此处立刻加入](https://discord.gg/9bEfrPPruj)
30+
31+
### 升级提示
32+
33+
- 请在主数据库导入:
34+
- `sql-files\main\upgrades\upgrade_to_1.1.19_main.sql`
35+
- 若您启用了 WEB 接口服务器, 那么请在 WEB 接口数据库导入:
36+
- `sql-files\web\upgrades\upgrade_to_1.1.19_web.sql`
37+
- 注意: 本次更新必须先执行主数据库的升级
38+
- 可选: 确认正常后可以移除 `recruitment` 数据表
39+
40+
> 导入之前请打开 `sql` 文件查看顶部的注释信息, 通常会有一些导入顺序的建议.
41+
> 请养成升级数据库之前备份的好习惯, 因为升级脚本并未经过大规模测试!!
42+
43+
### rAthena 重要更新
44+
45+
- 实现 `roulette` GM 指令用于打开乐透大转盘界面
46+
- 使得信息查询指令 (例如: `@mi`) 的返回结果可关联物品连接
47+
- 移除从 `2017` 年就标记过时的 `unitemote` 脚本指令
48+
- 实现 `duplicate` 脚本指令, 用于实现 NPC 的复制
49+
- 实装外挂检测器 (`Macro Detection`) 机制
50+
- 实装动态 NPC 机制 (`Dynamic NPC`)
51+
- 将道具商城数据库文件 (`item_cash_db.txt`) 转换成 YAML 格式
52+
- 实现 `add_reputation_points` 脚本指令, 用于增加指定的声望点数
53+
- 实现对新版客户端中公会面板直飞公会城堡的支持
54+
- 当角色所在地图无效的情况下进入游戏时, 能支持选择落脚点
55+
- 支持生成声望交互界面 (`Reputation UI`) 所需要的 bson 文件
56+
- 支持生成道具交易限制文件 (`itemmoveinfov5.txt`)
57+
58+
### 功能调整
59+
60+
- 使 `map-server-generator` 能输出帮助信息 (#668)
61+
- 完全汉化 `feature.conf` 中的选项注释 (#674)
62+
- 完全汉化 `battle.conf` 中的选项注释 (#676)
63+
- 完全汉化 `client.conf` 中的选项注释 (#677)
64+
- 完全汉化 `drops.conf` 中的选项注释 (#680)
65+
66+
### 缺陷修正
67+
68+
- 修正 `prompt` 选择取消后特定情况下会导致报错的问题 (感谢 "差记性的小北" 反馈) (#678)
69+
- 修正 `setunitdata` 的调整会继承到下一次重生的问题 (感谢 "差记性的小北" 反馈) (#671)
70+
- 修正读取 GRF 文件时进行编码探测导致内存溢出的问题 (#665)
71+
- 修正当过滤器事件不存在时报 `nullpo` 错误 (感谢 "山有" 反馈) (#662)
72+
- 修正脚本控制的商店在特定情况下存在的报错问题 (感谢 "HongShin" 反馈) (#682)
73+
74+
-------------------------------------------------------------------------------
75+
1576
## [v1.1.18] - `2022-10-29`
1677

1778
### 特别感谢
@@ -1093,6 +1154,7 @@
10931154

10941155
-------------------------------------------------------------------------------
10951156

1157+
[v1.1.19]: https://github.com/PandasWS/Pandas/compare/v1.1.18...v1.1.19
10961158
[v1.1.18]: https://github.com/PandasWS/Pandas/compare/v1.1.17...v1.1.18
10971159
[v1.1.17]: https://github.com/PandasWS/Pandas/compare/v1.1.16...v1.1.17
10981160
[v1.1.16]: https://github.com/PandasWS/Pandas/compare/v1.1.15...v1.1.16

src/char/char-server.rc

0 Bytes
Binary file not shown.

src/config/pandas.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@
6767
// ^ 此处第四段为 1 表示这是一个 1.0.2 的开发版本 (develop)
6868
//
6969
// 在 Windows 环境下, 程序启动时会根据第四段的值自动携带对应的版本后缀, 以便进行版本区分
70-
#define Pandas_Version "1.1.19.1"
70+
#define Pandas_Version "1.1.19.0"
7171

7272
// 在启动时显示 Pandas 的 LOGO
7373
#define Pandas_Show_Logo

src/login/login-server.rc

0 Bytes
Binary file not shown.

src/map/map-server-generator.rc

0 Bytes
Binary file not shown.

src/map/map-server.rc

0 Bytes
Binary file not shown.

src/tool/csv2yaml.rc

0 Bytes
Binary file not shown.

src/tool/mapcache.rc

0 Bytes
Binary file not shown.

src/tool/yaml2sql.rc

0 Bytes
Binary file not shown.

src/tool/yamlupgrade.rc

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)