Crystal.Sea 4 years ago
parent
commit
b597a75307

+ 6 - 2
ReleaseNotes.txt

@@ -14,10 +14,13 @@
 	*(MAXKEY-201013)  SAML 2.0 Metadata优化
 	*(MAXKEY-201014)  HandlerInterceptorAdapter@deprecated  调整为 AsyncHandlerInterceptor 
 	*(MAXKEY-201015)  mybatis-jpa升级,添加@Entity和@Transient支持,优化update时字段为null的处理,SQL代码优化 
-	*(MAXKEY-201016)  README中文和英文支持
+	*(MAXKEY-201016)  README更新及中文和英文支持
 	*(MAXKEY-201017)  认证失败时,authentication 空指针异常
 	*(MAXKEY-201018)  SAML Metadata URL配置读取
-	*(MAXKEY-201020)  依赖jar引用、更新和升级
+	*(MAXKEY-201019)  添加组和角色时按登录名查询成员
+	*(MAXKEY-201020)  firefox点击验证码无更新修复
+	*(MAXKEY-201021)  官网内容更新
+	*(MAXKEY-201030)  依赖jar引用、更新和升级
 		not-yet-commons-ssl 0.3.9
 		log4j          	 	2.14.0
 		spring         	 	5.3.1
@@ -26,6 +29,7 @@
 		springData    	 	2.4.1
 		springSession    	2.4.1
 		mybatis-jpa-extra	2.2
+		opensaml 	        2.6.6
 		
 
 MaxKey v 2.3.0 GA	2020/11/12

+ 1 - 1
maxkey-web-manage/src/main/resources/templates/views/login.ftl

@@ -7,7 +7,7 @@
 	$(function(){
 		<#if true==isCaptcha>
 			$('#j_captchaimg').click(function () {//
-		           $(this).attr("src", "<@base />/captcha"); 
+		           $(this).attr("src", "<@base />/captcha?"+(new Date()).getTime()); 
 			}); 
 		 </#if>
 	});

+ 1 - 1
maxkey-web-maxkey/src/main/resources/templates/views/login.ftl

@@ -131,7 +131,7 @@
 		<#--on captcha image click ,new a captcha code-->
 		<#if true==isCaptcha>
 		$('#j_captchaimg').click(function () {//
-	           $(this).attr("src", "<@base />/captcha"+(new Date()).getTime()); 
+	           $(this).attr("src", "<@base />/captcha?"+(new Date()).getTime()); 
 		}); 
 		</#if>