File tree Expand file tree Collapse file tree 6 files changed +25
-14
lines changed
Expand file tree Collapse file tree 6 files changed +25
-14
lines changed Original file line number Diff line number Diff line change 1+ # Release 1.11.2
2+
3+ #### Major Features and Improvements
4+ ** Major Features**
5+
6+ * Dependencies updated
7+ * Display details optimization
8+
19# Release 1.11.1
210
311#### Major Features and Improvements
Original file line number Diff line number Diff line change 55 <modelVersion >4.0.0</modelVersion >
66 <groupId >fateboard</groupId >
77 <artifactId >fateboard</artifactId >
8- <version >1.11.1 </version >
8+ <version >1.11.2 </version >
99
1010 <parent >
1111 <groupId >org.springframework.boot</groupId >
1212 <artifactId >spring-boot-starter-parent</artifactId >
13- <version >2.7.4 </version >
13+ <version >2.7.10 </version >
1414 <relativePath />
1515 </parent >
1616
9393 <dependency >
9494 <groupId >com.google.guava</groupId >
9595 <artifactId >guava</artifactId >
96- <version >31.1-jre </version >
96+ <version >32.0.1-android </version >
9797 </dependency >
9898
9999 <dependency >
186186 <dependency >
187187 <groupId >org.yaml</groupId >
188188 <artifactId >snakeyaml</artifactId >
189- <version >1.33 </version >
189+ <version >2.0 </version >
190190 </dependency >
191191 <dependency >
192192 <groupId >org.springframework.cloud</groupId >
Original file line number Diff line number Diff line change 88 < body >
99 < div id ="app "> </ div >
1010 <!-- built files will be auto injected -->
11+ < script src ="./static/jsencrypt.min.js "> </ script >
1112 </ body >
1213</ html >
Original file line number Diff line number Diff line change 2222 "file-saver" : " ^2.0.1" ,
2323 "hmac_sha1" : " ^0.1.1" ,
2424 "js-cookie" : " 2.2.0" ,
25- "jsencrypt" : " ^3.2.1" ,
26- "jsencrypter" : " ^1.2.1" ,
27- "jszip" : " ^3.7.1" ,
25+ "jszip" : " ^3.8.0" ,
2826 "lodash" : " ^4.17.21" ,
2927 "mockjs" : " 1.0.1-beta3" ,
3028 "normalize.css" : " 7.0.0" ,
Original file line number Diff line number Diff line change 1- import { JSEncrypt } from 'jsencrypt'
2-
3- export default function rsa ( publicKet , origin ) {
4- const jsencrypt = new JSEncrypt ( )
5- jsencrypt . setPublicKey ( publicKet )
6- return jsencrypt . encrypt ( origin )
7- }
1+ export default function rsa ( publicKet , origin ) {
2+ if ( window . JSEncrypt ) {
3+ const jsencrypt = new window . JSEncrypt ( )
4+ jsencrypt . setPublicKey ( publicKet )
5+ return jsencrypt . encrypt ( origin )
6+ } else {
7+ return origin
8+ }
9+ }
You can’t perform that action at this time.
0 commit comments