Skip to content

Commit 4a14600

Browse files
committed
update:CHANGELOG and document and configure file
1 parent cc4613a commit 4a14600

File tree

6 files changed

+42
-2
lines changed

6 files changed

+42
-2
lines changed

CHANGELOG

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,41 @@
1+
XEngine_Authorize V3.14.0.1001
2+
3+
增加:支持无限制多端登录了
4+
增加:工作流CI支持
5+
增加:当tcp或者websocket登录的时候会返回token了
6+
增加:普通用户token开关支持
7+
修改:websocket支持解析token字段了
8+
修改:现在http post方法不在需要验证用户,使用token替代
9+
修改:可以通过token获取用户过期时间
10+
修改:公告和动态码合并到token任务中
11+
修改:注册管理界面默认设置5次次数验证了
12+
修改:多端登录序列类型进行了验证
13+
修正:删除用户需要验证用户了
14+
修正:某些时候崩溃
15+
修正:公告信息可以为NULL的情况
16+
修正:快速验证不允许硬件码为NULL了
17+
修正:子模块状态错误
18+
修正:在MACOS构建运行失败的问题
19+
删除:XEngine_AuthorizeHTTP_Announcement列举处理方法函数
20+
21+
added:unlimited login type with multi supported now
22+
added:workflow
23+
added:reply token handle when tcp and websocket login
24+
added:token auth for normal user of switch
25+
modify:web socket support parse token field
26+
modify:The post method processing flow now only requires token instead of verifying user and password
27+
modify:get user left time by token
28+
modify:merge notice and dynamic code and token task
29+
modify:set time 5 default value with cdkey init and choice time add serial for management app
30+
modify:multi login serial type is verification now
31+
fixed:verification user information for delete user
32+
fixed:some crashed
33+
fixed:the problem that notice can be set null
34+
fixed:does not allow code is null when fast verification
35+
fixed:sub module status is incorrect
36+
fixed:build error on mac
37+
delete:XEngine_AuthorizeHTTP_Announcement list process from get method
38+
================================================================
139
XEngine_Authorize V3.13.0.1001
240

341
增加:管理程序支持CDKEY创建,打开,授权,初始化

XEngine_Docment/Docment_en.docx

48 Bytes
Binary file not shown.

XEngine_Docment/Docment_zh.docx

256 Bytes
Binary file not shown.

XEngine_Release/XEngine_Config/XEngine_SwitchConfig.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,6 @@
1010
"bSwitchDCode":false,
1111
"bSwitchMulti":true,
1212
"bSwitchTry":true,
13-
"bSwitchBanned":true
13+
"bSwitchBanned":true,
14+
"bSwitchTokenLogin":true
1415
}

XEngine_Release/XEngine_Config/XEngine_VersionConfig.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
22
"XVer":[
3+
"V3.14.0.1001 Build20240920",
34
"V3.13.0.1001 Build20240715",
45
"V3.12.1.1001 Build20240621",
56
"V3.12.0.1001 Build20240513",

XEngine_Source/XEngine_APPService/XEngine_AuthorizeService/Authorize_TCPTask.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -335,7 +335,7 @@ bool XEngine_Client_TCPTask(LPCXSTR lpszClientAddr, LPCXSTR lpszMsgBuffer, int n
335335
}
336336
}
337337
}
338-
338+
//创建一个普通TOKEN
339339
if (pSt_ProtocolHdr->xhToken < 10000000 || pSt_ProtocolHdr->xhToken > 20000000)
340340
{
341341
BaseLib_OperatorHandle_Create(&pSt_ProtocolHdr->xhToken, 10000000, 20000000);

0 commit comments

Comments
 (0)