v2.6.0 GA

This commit is contained in:
MaxKey
2021-03-04 22:49:23 +08:00
parent 5624eec331
commit fa310c341d
4 changed files with 10 additions and 10 deletions

View File

@@ -92,7 +92,7 @@ App Management UI
Download the current version of Baidu Pan,<a href="https://maxkey.top/zh/about/download.html" target="_blank"> history version</a>
| Version | ReleaseDate | Download URL | Code |
| --------| :----- | :---- | :----: |
| v 2.5.0 GA | 2021/02/05 | <a href="https://pan.baidu.com/s/1B0h8vzE4hDAFvuYlED9pAw" target="_blank">Download</a> | **sppq** |
| v 2.6.0 GA | 2021/03/05 | <a href="https://pan.baidu.com/s/1q5hzNeWweu4cpVOO-VopIw" target="_blank">Download</a> | **0x24** |
# Roadmap

View File

@@ -92,7 +92,7 @@ App Management UI
Download the current version of Baidu Pan,<a href="https://maxkey.top/zh/about/download.html" target="_blank"> history version</a>
| Version | Date | URL | Code |
| --------| :----- | :---- | :----: |
| v 2.5.0 GA | 2021/02/05 | <a href="https://pan.baidu.com/s/1B0h8vzE4hDAFvuYlED9pAw" target="_blank">Download</a> | **sppq** |
| v 2.6.0 GA | 2021/03/05 | <a href="https://pan.baidu.com/s/1q5hzNeWweu4cpVOO-VopIw" target="_blank">Download</a> | **0x24** |
# Roadmap

View File

@@ -94,7 +94,7 @@ QQ交流群<b>434469201</b>
当前版本百度网盘下载,<a href="https://maxkey.top/zh/about/download.html" target="_blank"> 历史版本</a>
| 版本 | 日期 | 下载地址 | 提取码 |
| --------| :----- | :---- | :----: |
| v 2.5.0 GA | 2021/02/05 | <a href="https://pan.baidu.com/s/1B0h8vzE4hDAFvuYlED9pAw" target="_blank">链接下载</a> | **sppq** |
| v 2.6.0 GA | 2021/03/05 | <a href="https://pan.baidu.com/s/1q5hzNeWweu4cpVOO-VopIw" target="_blank">链接下载</a> | **0x24** |
# Roadmap

View File

@@ -402,8 +402,8 @@ project('maxkey-common') {
task copyDepJars(type: Copy){
def paths = ["$rootDir/build/MaxKey-v${project.version}GA",
"$rootDir/build/MaxKey-v${project.version}GA/maxkey",
"$rootDir/build/MaxKey-v${project.version}GA/maxkey-mgt",
"$rootDir/build/MaxKey-v${project.version}GA/maxkey-lib"];
"$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt",
"$rootDir/build/MaxKey-v${project.version}GA/maxkey_lib"];
//遍历数组调用createDir闭包创建目录
paths.forEach(){path->
@@ -414,15 +414,14 @@ project('maxkey-common') {
}
};
println "copy Dep Jars to $rootDir/build/MaxKey-v${project.version}GA/maxkey-lib"
println "copy Dep Jars to $rootDir/build/MaxKey-v${project.version}GA/maxkey_lib"
from configurations.runtime
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey-lib";
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_lib";
}
}
task copyMaxKey(type: Copy) {
from "$rootDir/build/maxkey-jars/maxkey-authentication-otp-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-authentication-social-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-web-maxkey-${project.version}.jar"
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey/";
@@ -432,10 +431,11 @@ task copyMaxKeyMgt(type: Copy) {
from "$rootDir/build/maxkey-jars/maxkey-identity-rest-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-identity-scim-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-web-manage-${project.version}.jar"
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey-mgt/";
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_mgt/";
}
task copyMaxKeyLibs(type: Copy) {
from "$rootDir/build/maxkey-jars/maxkey-authentication-otp-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-authentication-captcha-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-authentication-core-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-common-${project.version}.jar"
@@ -450,7 +450,7 @@ task copyMaxKeyLibs(type: Copy) {
from "$rootDir/build/maxkey-jars/maxkey-protocol-oauth-2.0-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-protocol-saml-2.0-${project.version}.jar"
from "$rootDir/build/maxkey-jars/maxkey-protocol-tokenbased-${project.version}.jar"
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey-lib";
into "$rootDir/build/MaxKey-v${project.version}GA/maxkey_lib";
}
task copyMaxKeyShellScript(type: Copy) {