This commit is contained in:
MaxKey 2023-04-23 11:39:22 +08:00
parent 53877529a5
commit 0f548607ea
14 changed files with 1615 additions and 26 deletions

View File

@ -118,7 +118,7 @@ Download the current version from Baidu Pan,<a href="http://www.maxkey.top/zh/ab
| Version | Date | Pan URL (Code) | Docker |
| -------- | :----- | :---- | :---- |
| v 3.5.16 | 2023/03/23 | <a href="https://pan.baidu.com/s/1vgb0uelUdmtJqCxZ1vXLow" target="_blank">Download</a> ( **mxk9** ) | <a href="https://hub.docker.com/u/maxkeytop" target="_blank">Home</a> |
| v 3.5.17 | 2023/04/25 | <a href="https://pan.baidu.com/s/13mxHNYgcu8OnO4RMHXTq_g" target="_blank">Download</a> ( **mxk9** ) | <a href="https://hub.docker.com/u/maxkeytop" target="_blank">Home</a> |
# License

View File

@ -118,7 +118,7 @@ Download the current version from Baidu Pan,<a href="http://www.maxkey.top/zh/ab
| Version | Date | Pan URL (Code) | Docker |
| -------- | :----- | :---- | :---- |
| v 3.5.16 | 2023/03/23 | <a href="https://pan.baidu.com/s/1vgb0uelUdmtJqCxZ1vXLow" target="_blank">Download</a> ( **mxk9** ) | <a href="https://hub.docker.com/u/maxkeytop" target="_blank">Home</a> |
| v 3.5.17 | 2023/04/25 | <a href="https://pan.baidu.com/s/13mxHNYgcu8OnO4RMHXTq_g" target="_blank">Download</a> ( **mxk9** ) | <a href="https://hub.docker.com/u/maxkeytop" target="_blank">Home</a> |
# License

View File

@ -119,7 +119,7 @@
| 版本 | 日期 | 网盘(提取码) | Docker |
| -------- | :----- | :---- | :---- |
| v 3.5.16 | 2023/03/23 | <a href="https://pan.baidu.com/s/1vgb0uelUdmtJqCxZ1vXLow" target="_blank">下载</a>( **mxk9** ) |<a href="https://hub.docker.com/u/maxkeytop" target="_blank">链接</a> |
| v 3.5.17 | 2023/04/25 | <a href="https://pan.baidu.com/s/13mxHNYgcu8OnO4RMHXTq_g" target="_blank">下载</a>( **mxk9** ) |<a href="https://hub.docker.com/u/maxkeytop" target="_blank">链接</a> |
# License

View File

@ -1 +1 @@
v 3.5.14 GA
v 3.5.17 GA

View File

@ -68,7 +68,7 @@ CREATE TABLE `mxk_apps` (
`DESCRIPTION` varchar(400) DEFAULT NULL COMMENT '描述',
`VENDOR` varchar(45) DEFAULT NULL COMMENT '供应商',
`VENDORURL` varchar(200) DEFAULT NULL COMMENT '供应商地址',
`CREDENTIAL` varchar(45) DEFAULT '0' COMMENT '单点登录凭证类型',
`CREDENTIAL` varchar(45) DEFAULT 'none' COMMENT '单点登录凭证类型',
`SHAREDUSERNAME` varchar(100) DEFAULT NULL COMMENT '共享用户名',
`SHAREDPASSWORD` varchar(500) DEFAULT NULL COMMENT '共享密码',
`SYSTEMUSERATTR` varchar(45) DEFAULT NULL COMMENT '系统用户属性',
@ -1161,4 +1161,4 @@ CREATE TABLE `mxk_userinfo_adjunct` (
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2023-02-13 11:12:03
-- Dump completed on 2023-04-22 10:43:51

File diff suppressed because one or more lines are too long

View File

@ -15,7 +15,7 @@
# */
#maxkey properties
group =net.maxsso
version =3.5.16
version =3.5.17
vendor =https://www.maxkey.top
author =MaxKeyTop

View File

@ -26,5 +26,5 @@ export const CONSTS = {
REDIRECT_URI: 'redirect_uri',
REMEMBER: 'remember_me',
TOKEN: '_token',
VERSION: 'v3.5.16 GA'
VERSION: 'v3.5.17 GA'
};

View File

@ -19,5 +19,5 @@ export const CONSTS = {
INST: 'inst',
REDIRECT_URI: 'redirect_uri',
REMEMBER: 'remember',
VERSION: 'v3.5.16 GA'
VERSION: 'v3.5.17 GA'
};

View File

@ -1,7 +1,7 @@
#端口号
application:
name: maxkey-gateway-server
formatted-version: v3.5.16 GA
formatted-version: v3.5.17 GA
server:
port: 9000
spring:

View File

@ -16,7 +16,7 @@
#MaxKey Title and Version #
############################################################################
application.title =MaxKey
application.formatted-version =v3.5.16 GA
application.formatted-version =v3.5.17 GA
#for dynamic service discovery
spring.application.name =maxkey
############################################################################

View File

@ -16,7 +16,7 @@
#MaxKey Title and Version #
############################################################################
application.title =MaxKey-Mgt
application.formatted-version =v3.5.16 GA
application.formatted-version =v3.5.17 GA
#for dynamic service discovery
spring.application.name =maxkey-mgt
############################################################################

1164
sql/v3.5.17.ga/maxkey.sql Normal file

File diff suppressed because it is too large Load Diff

File diff suppressed because one or more lines are too long