mirror of
https://github.com/KOHGYLW/kiftd-source.git
synced 2025-01-08 12:07:47 +08:00
将版本重订为1.1.0。由于内置H2数据库的升级,新版本将无法兼容旧的文件系统,因此需要重订次级版本号。
This commit is contained in:
parent
b069dde4b8
commit
d1206188dd
@ -1,7 +1,7 @@
|
||||
## 欢迎访问kiftd源代码资源库!
|
||||
### Welcome to visit source of kiftd!
|
||||
|
||||
_当前版本:v1.0.36-SNAPSHOT_
|
||||
_当前版本:v1.1.0-SNAPSHOT_
|
||||
|
||||
### 简介
|
||||
_kiftd——一款便捷、开源、功能完善的个人&团队&小型团队网盘服务器系统。_
|
||||
@ -72,5 +72,5 @@ _提示:源代码路径下包含了一些程序运行所需的非源代码资
|
||||
### 联系作者?
|
||||
如有任何需要(例如对该资源有疑问、意见或建议),请发件联系作者: kohgylw@163.com (青阳龙野),随时恭候您的来信!
|
||||
|
||||
青阳龙野@kohgylw by 2022年06月05日
|
||||
青阳龙野@kohgylw by 2022年06月08日
|
||||
|
||||
|
6
TODO.txt
6
TODO.txt
@ -1,4 +1,4 @@
|
||||
kiftd项目 计划表-2019-08-05 by 青阳龙野
|
||||
kiftd项目 计划表-2022-06-08 by 青阳龙野
|
||||
|
||||
已完成 v1.0.17
|
||||
--------------
|
||||
@ -180,13 +180,13 @@ test.auth.xxx=ucd
|
||||
【已完成】修复了当用户执行批量文件上传操作时,如果中途切换浏览的文件夹可能会导致后续上传的目标文件夹不正确的问题。
|
||||
【已完成】升级了内置的MySQL数据库驱动版本,修复旧版本中存在的安全漏洞(CVE-2019-2692)。
|
||||
|
||||
计划中 v1.0.36
|
||||
计划中 v1.1.0
|
||||
--------------
|
||||
【已完成】新增WebDAV支持功能!该功能允许用户将kiftd挂载为一个“网络驱动器”,并像访问本地文件夹那样访问kiftd中的文件。
|
||||
开启方法:在conf/server.properties中添加“webdav=enable”设置,之后使用 http://{IP}:{端口}/dav/ 进行挂载。
|
||||
【计划中】新增删除留档功能。启用该功能后,用户删除的文件将以原件的形式保留在指定路径内,从而使得管理者能够妥善处理这些被删除的文件。
|
||||
【计划中】新增保留转码缓存的功能,启用该功能后,诸如视频转码缓存文件等临时文件将会在软件退出后继续保留,以便在服务器下次启动时重复使用而无需再次转码。
|
||||
【已完成】将SpringBoot版本升级至2.7.0,以便适配更高级的Java(例如Java 17)版本。
|
||||
【已完成】将SpringBoot版本升级至2.7.0,以便适配更高级的Java(例如Java 17)版本。这一升级也导致了kiftd无法再兼容以前的文件系统。
|
||||
【已完成】优化了下载限速算法,现在下载限速的精度变得更高了。
|
||||
【已完成】规范了下载功能中的ETag响应头的生成格式。
|
||||
【已完成】将内置的JAVE升级为3.3.1版本。
|
||||
|
BIN
conf/.DS_Store
vendored
BIN
conf/.DS_Store
vendored
Binary file not shown.
BIN
filesystem/filenodes/.DS_Store
vendored
BIN
filesystem/filenodes/.DS_Store
vendored
Binary file not shown.
BIN
logs/.DS_Store
vendored
BIN
logs/.DS_Store
vendored
Binary file not shown.
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>kohgylw</groupId>
|
||||
<artifactId>kiftd</artifactId>
|
||||
<version>1.0.36-SNAPSHOT</version>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>kiftd</name>
|
||||
|
@ -1,5 +1,5 @@
|
||||
Manifest-Version: 1.0
|
||||
Build-Jdk-Spec: 15
|
||||
Build-Jdk-Spec: 17
|
||||
Class-Path: libs/spring-boot-starter-web-2.7.0.jar libs/spring-boot-star
|
||||
ter-2.7.0.jar libs/spring-boot-2.7.0.jar libs/spring-boot-autoconfigure
|
||||
-2.7.0.jar libs/spring-boot-starter-logging-2.7.0.jar libs/logback-clas
|
||||
@ -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.0.36-SNAPSHOT
|
||||
Implementation-Version: 1.1.0-SNAPSHOT
|
||||
Main-Class: kohgylw.kiftd.mc.MC
|
||||
Created-By: Maven Integration for Eclipse
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#Generated by Maven Integration for Eclipse
|
||||
#Sun Jun 05 11:06:26 CST 2022
|
||||
#Wed Jun 08 09:49:22 CST 2022
|
||||
m2e.projectLocation=/Users/kohgylw/program/java-workspace/kiftd
|
||||
m2e.projectName=kiftd
|
||||
groupId=kohgylw
|
||||
artifactId=kiftd
|
||||
version=1.0.36-SNAPSHOT
|
||||
version=1.1.0-SNAPSHOT
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>kohgylw</groupId>
|
||||
<artifactId>kiftd</artifactId>
|
||||
<version>1.0.36-SNAPSHOT</version>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>kiftd</name>
|
||||
|
@ -1,5 +1,5 @@
|
||||
<!doctype html>
|
||||
<!-- 青阳网络文件传输系统 kiftd v1.0.36-SNAPSHOT -->
|
||||
<!-- 青阳网络文件传输系统 kiftd v1.1.0-SNAPSHOT -->
|
||||
<!-- 欢迎访问主界面 -->
|
||||
<!-- by 青阳龙野(kohgylw@163.com) -->
|
||||
<html>
|
||||
|
Loading…
Reference in New Issue
Block a user