Skip to content

Commit

Permalink
1.45.06 release
Browse files Browse the repository at this point in the history
  • Loading branch information
kalcaddle committed Oct 27, 2023
1 parent 503af54 commit 6db2794
Show file tree
Hide file tree
Showing 12 changed files with 19 additions and 18 deletions.
2 changes: 1 addition & 1 deletion app/sdks/archiveLib/bin/data.bin

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion config/version.php
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
<?php
define('KOD_VERSION','1.45');
define('KOD_VERSION_BUILD','05');
define('KOD_VERSION_BUILD','06');
2 changes: 1 addition & 1 deletion plugins/client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id":"client",
"name":"{{LNG['client.meta.name']}}",
"title":"{{LNG['client.meta.title']}}",
"version":"1.27",
"version":"1.28",
"source":{
"icon":"{{pluginHost}}static/images/icon.png"
},
Expand Down
9 changes: 5 additions & 4 deletions plugins/client/static/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -202,16 +202,17 @@ kodReady.push(function(){
hookMatch:'login,bindAutoLogin,autoSetAccount,loginSuccess',
bindEvent:function(){
this.__bindEvent.apply(this,arguments);
if(G.clientOption.appLoginWeb == '0') return;
checkWebLoginBefore(this);
showLoginWebView(this);
showLoginTfaView(this);
if(G.clientOption.appLoginWeb == '1'){
checkWebLoginBefore(this);
showLoginWebView(this);
}
},
loginSuccess: function(){
var _this = this;
var _args = arguments;
// 判断是否需要二次验证,不需要则继续提交
if (this.withTfa || !_.has(tfaIn,'withTfa')) {
if (this.withTfa || !_.has(tfaIn,'withTfa') || !_this.tfaPage) {
return _this.__loginSuccess.apply(_this,_args);
}
_this.tfaPage.needTfa(tfaIn,tfaInfo);
Expand Down
4 changes: 2 additions & 2 deletions static/app/dist/api.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/app/dist/lib.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions static/app/dist/main.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/app/dist/sdk.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/app/dist/vendor.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/style/dist/main.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/style/dist/sdk.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion static/style/lib/main.css

Large diffs are not rendered by default.

0 comments on commit 6db2794

Please sign in to comment.