Skip to content

Commit

Permalink
update to v1.0.28-release
Browse files Browse the repository at this point in the history
  • Loading branch information
KOHGYLW committed Feb 8, 2020
1 parent 5a55a29 commit 9c3ab72
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 7 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,8 @@ _本次更新为维护性的更新,修复一些已经发现的问题并优化
+ 修正了部分启动命令提示信息描述不正确的问题。
+ 优化了系统运行时的终端输出内容,避免输出信息过于杂乱影响命令操作。
+ 完善了命令模式下“文件管理”功能,进一步优化其命令检验和提示机制,方便使用者进行日常操作。
+ 进一步完善了文件系统数据效验机制,更好地保证其“整洁”、稳定和健壮。
+ 其他一些细节优化。

> 需要查看更多版本历史信息?请访问: https://kohgylw.gitee.io/News.html
Expand Down
Binary file modified kiftd-1.0.28-RELEASE.jar
Binary file not shown.
10 changes: 5 additions & 5 deletions webContext/js/home.js
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ $(function() {
});
// 关闭登陆模态框自动清空输入数据
$('#loginModal').on('hidden.bs.modal', function(e) {
$("#accountid").val('');
$("#accountpwd").val('');
if($("#dologinButton").attr('disabled') !== 'disabled'){
$("#accountid").val('');
$("#accountpwd").val('');
}
$("#accountidbox").removeClass("has-error");
$("#accountpwdbox").removeClass("has-error");
$("#alertbox").removeClass("alert");
Expand Down Expand Up @@ -596,7 +598,6 @@ function dologin() {

// 发送加密文本
function sendLoginInfo(encrypted) {

$.ajax({
type : "POST",
dataType : "text",
Expand Down Expand Up @@ -1139,8 +1140,7 @@ function createfolder() {
showFolderView(locationpath);
break;
default:
$('#newFolderModal').modal('hide');
showFolderView(locationpath);
showFolderAlert("提示:出现意外错误,可能未能创建文件夹。");
break;
}
}
Expand Down
4 changes: 2 additions & 2 deletions webContext/js/home.min.js

Large diffs are not rendered by default.

0 comments on commit 9c3ab72

Please sign in to comment.