Skip to content

Commit de5eaf4

Browse files
authored
更新版本号0.3.5 (#852)
* update:测试页面增加OTA地址 * update:兼容旧设备,无Client-Id的情况 * update:修复智控台下发配置布尔类型转换出错bug * update:修复智控台下发配置字符类型转换出错bug * udpate:增加iot消息properties和methods可能为空的情况 * update:发布0.3.5版本
1 parent ca88483 commit de5eaf4

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

main/manager-api/src/main/java/xiaozhi/modules/security/controller/LoginController.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public Result<?> changePassword(@RequestBody PasswordDTO passwordDTO) {
121121
@Operation(summary = "公共配置")
122122
public Result<Map<String, Object>> pubConfig() {
123123
Map<String, Object> config = new HashMap<>();
124-
config.put("version", "0.3.4");
124+
config.put("version", "0.3.5");
125125
config.put("allowUserRegister", sysUserService.getAllowUserRegister());
126126
return new Result<Map<String, Object>>().ok(config);
127127
}

main/xiaozhi-server/config/logger.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
from loguru import logger
44
from config.config_loader import load_config
55

6-
SERVER_VERSION = "0.3.4"
6+
SERVER_VERSION = "0.3.5"
77

88

99
def get_module_abbreviation(module_name, module_dict):

0 commit comments

Comments
 (0)