update to v1.2.1-release

This commit is contained in:
kohgylw 2024-07-07 21:03:38 +08:00
parent ce30e0ebd8
commit bd3b43b726
11 changed files with 21 additions and 12 deletions

View File

@ -1,7 +1,7 @@
## 欢迎访问kiftd源代码资源库
### Welcome to visit source of kiftd!
_当前版本v1.2.0-RELEASE_
_当前版本v1.2.1-RELEASE_
### 简介
_kiftd——一款便捷、开源、功能完善的个人&团队&小型团队网盘服务器系统。_
@ -72,5 +72,5 @@ _提示源代码路径下包含了一些程序运行所需的非源代码资
### 联系作者?
如有任何需要(例如对该资源有疑问、意见或建议),请发件联系作者: kohgylw@163.com (青阳龙野),随时恭候您的来信!
青阳龙野@kohgylw by 2024年06月16日
青阳龙野@kohgylw by 2024年07月06日

View File

@ -1,4 +1,4 @@
kiftd项目 计划表-2024-06-16 by 青阳龙野
kiftd项目 计划表-2024-07-06 by 青阳龙野
已完成 v1.0.17
--------------
@ -218,3 +218,9 @@ test.auth.xxx=ucd
【已完成】修复了当ffmpeg解码引擎因某些原因无法完成初始化时服务器不能正常启动的问题。
【已完成】修复了几处在执行文件导入导出操作时可能导致死锁的问题。
【已完成】进一步完善了断点续传功能。
已完成 v1.2.1
--------------
【已完成】修复了“最大下载速度限制”功能无法正确识别某些负数设置的问题。
【已完成】更正了《kiftd说明文档》中的部分内容。
【已完成】其他一些细节优化。

View File

@ -5,7 +5,7 @@
<groupId>kohgylw</groupId>
<artifactId>kiftd</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.2.1-RELEASE</version>
<packaging>jar</packaging>
<name>kiftd</name>

View File

@ -1289,6 +1289,9 @@ public class ConfigureReader {
}
}
switch (unit) {
case "k":
r = Integer.parseInt(value) * 1024L;
break;
case "m":
r = Integer.parseInt(value) * 1048576L;
break;
@ -1296,7 +1299,7 @@ public class ConfigureReader {
r = Integer.parseInt(value) * 1073741824L;
break;
default:
r = Integer.parseInt(value) * 1024L;
r = Integer.parseInt(in.trim()) * 1024L;
break;
}
} else {

View File

@ -964,7 +964,7 @@ public class FileSystemManager {
if (pfId != null) {
countNodesByFolderId.setString(1, pfId);
ResultSet rs = countNodesByFolderId.executeQuery();
if (rs.first()) {
if (rs.next()) {
return rs.getLong(1);
}
}
@ -987,7 +987,7 @@ public class FileSystemManager {
if (pfId != null) {
countFoldersByParentFolderId.setString(1, pfId);
ResultSet rs = countFoldersByParentFolderId.executeQuery();
if (rs.first()) {
if (rs.next()) {
return rs.getLong(1);
}
}

View File

@ -38,7 +38,7 @@ Class-Path: libs/spring-boot-starter-web-2.7.0.jar libs/spring-boot-star
r libs/commons-codec-1.15.jar libs/flexmark-0.50.44.jar libs/flexmark-u
til-0.50.44.jar
Implementation-Title: kiftd
Implementation-Version: 1.2.0-RELEASE
Implementation-Version: 1.2.1-RELEASE
Main-Class: kohgylw.kiftd.mc.MC
Created-By: Maven Integration for Eclipse

View File

@ -1,7 +1,7 @@
#Generated by Maven Integration for Eclipse
#Sun Jun 16 10:40:25 CST 2024
#Sun Jul 07 21:01:20 CST 2024
m2e.projectLocation=/Users/kohgylw/Programs/java_workspace/kiftd
m2e.projectName=kiftd
groupId=kohgylw
artifactId=kiftd
version=1.2.0-RELEASE
version=1.2.1-RELEASE

View File

@ -5,7 +5,7 @@
<groupId>kohgylw</groupId>
<artifactId>kiftd</artifactId>
<version>1.2.0-RELEASE</version>
<version>1.2.1-RELEASE</version>
<packaging>jar</packaging>
<name>kiftd</name>

View File

@ -1,5 +1,5 @@
<!doctype html>
<!-- 青阳网络文件传输系统 kiftd v1.2.0-RELEASE -->
<!-- 青阳网络文件传输系统 kiftd v1.2.1-RELEASE -->
<!-- 欢迎访问主界面 -->
<!-- by 青阳龙野kohgylw@163.com -->
<html>