Skip to content

Commit

Permalink
update to v1.0.25-release
Browse files Browse the repository at this point in the history
  • Loading branch information
KOHGYLW committed Oct 12, 2019
1 parent 642e9a0 commit 07a1c8f
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,12 +77,12 @@ _注:kift为该功能的开发名称,其实际成果命名为kiftd。_

> 提示:当您更新版本后,请手动清除浏览器的缓存,之后刷新网盘主页以确保数据文件保持最新!否则可能导致新版页面功能无法使用。
### 常规更新v1.0.24
_本次更新为维护性的更新,修复一些已经发现的问题以优化使用体验,推荐所有用户升级。_
+ 修复了在某些情况下程序可能无法正确识别v1.0.20或更早版本中文件系统路径设置的问题。因此,推荐使用v1.0.20或更早版本的用户直接升级至此版本
+ 修复了在低分辨率下服务器设置界面可能显示不全的问题
+ 修复了在文件系统路径设置有误的情况下仍能令新设置生效的漏洞
+ 更正了《kiftd说明文档》中一些已经过时的描述
### 常规更新v1.0.25
_本次更新为维护性的更新,修复一些已经发现的问题并优化使用体验,推荐所有用户升级。_
+ 强化了文件系统路径设置的检查机制,避免因用户使用无法被程序识别的路径从而引发系统运行异常
+ 进一步完善了日志记录的内容——在永久资源链接请求日志中增加IP地址的记录信息,帮助用户更加准确地掌握所有永久资源链接的使用情况
+ 强化了新账户注册功能的账户名检查机制,防止新账户名中出现“:”和“=”导致程序无法识别
+ 进一步完善了《kiftd说明文档》。

> 需要查看更多版本历史信息?请访问: https://kohgylw.gitee.io/News.html
Expand Down
Binary file not shown.
Binary file modified kiftd说明文档.pdf
Binary file not shown.
2 changes: 1 addition & 1 deletion webContext/home.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<!doctype html>
<!-- 青阳网络文件传输系统 kiftd v1.0.24-RELEASE -->
<!-- 青阳网络文件传输系统 kiftd v1.0.25-RELEASE -->
<!-- 欢迎访问主界面 -->
<!-- by 青阳龙野([email protected]) -->
<html>
Expand Down
4 changes: 4 additions & 0 deletions webContext/js/signup.js
Original file line number Diff line number Diff line change
Expand Up @@ -107,6 +107,10 @@ function sendSignUpInfo(encrypted){
showAlert("提示:注册失败,账户名不合法。账户名的长度需为3-32个字符,且仅支持ISO-8859-1中的字符(推荐使用英文字母、英文符号及阿拉伯数字)。");
$("#accountidbox").addClass("has-error");
break;
case "illegalaccount":
showAlert("提示:注册失败,账户名中不得包含“=”或“:”。");
$("#accountidbox").addClass("has-error");
break;
case "mustlogout":
showAlert("提示:您已经登入了一个账户,请先注销后再执行本操作");
break;
Expand Down

0 comments on commit 07a1c8f

Please sign in to comment.