Skip to content

Commit

Permalink
release note and version
Browse files Browse the repository at this point in the history
  • Loading branch information
heavyrian2012 committed Mar 6, 2023
1 parent c38a10a commit 5fc0e44
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 9 deletions.
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

<groupId>cn.wildfirechat</groupId>
<artifactId>app</artifactId>
<version>0.63</version>
<version>0.64</version>
<packaging>jar</packaging>

<name>app</name>
Expand Down
18 changes: 11 additions & 7 deletions release_note.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,7 @@
# 当前版本更新记录
0.62 Release note:
1. 删掉部分无用依赖减少程序大小
2. 会议支持设置焦点用户功能
3. 添加nginx示例配置
4. 升级IM SDK
5. 定期清理无效的pcsession

0.64 Release note:
1. 当用户名登录时,当用户不存在时也返回密码错误。
2. 会议设置最大参与人数参数

# 升级注意事项
1. 如果从0.40以前版本升级上来,需要注意升级兼容有问题 请参考Readme中的兼容问题说明
Expand All @@ -23,6 +19,14 @@
7. 从0.54版本开始,替换了腾讯云SDK,使用腾讯云短信的客户需要注意修改配置文件调试短信功能

# 历史更新记录
-------------
0.63 Release note:
1. 删掉部分无用依赖减少程序大小
2. 会议支持设置焦点用户功能
3. 添加nginx示例配置
4. 升级IM SDK
5. 定期清理无效的pcsession

-------------
0.62 Release note:
1. 回归用户自动关注官方频道
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ public RestResult createConference(ConferenceInfo info) {
}

try {
IMResult<Void> result = ConferenceAdmin.createRoom(info.conferenceId, info.conferenceTitle, info.pin, 9, info.advance, 0, info.recording, false);
IMResult<Void> result = ConferenceAdmin.createRoom(info.conferenceId, info.conferenceTitle, info.pin, info.maxParticipants, info.advance, 0, info.recording, false);
if(result != null && result.getErrorCode() == ErrorCode.ERROR_CODE_SUCCESS) {
conferenceEntityRepository.save(convertConference(info));
favConference(info.conferenceId);
Expand Down

0 comments on commit 5fc0e44

Please sign in to comment.