mirror of
https://github.com/KOHGYLW/kiftd-source.git
synced 2025-01-07 03:26:57 +08:00
已完成v1.1.0-release
This commit is contained in:
parent
918aaa4830
commit
c2ab1447ba
@ -1,7 +1,7 @@
|
||||
## 欢迎访问kiftd源代码资源库!
|
||||
### Welcome to visit source of kiftd!
|
||||
|
||||
_当前版本:v1.1.0-SNAPSHOT_
|
||||
_当前版本:v1.1.0-RELEASE_
|
||||
|
||||
### 简介
|
||||
_kiftd——一款便捷、开源、功能完善的个人&团队&小型团队网盘服务器系统。_
|
||||
@ -72,5 +72,5 @@ _提示:源代码路径下包含了一些程序运行所需的非源代码资
|
||||
### 联系作者?
|
||||
如有任何需要(例如对该资源有疑问、意见或建议),请发件联系作者: kohgylw@163.com (青阳龙野),随时恭候您的来信!
|
||||
|
||||
青阳龙野@kohgylw by 2022年07月14日
|
||||
青阳龙野@kohgylw by 2022年07月29日
|
||||
|
||||
|
4
TODO.txt
4
TODO.txt
@ -1,4 +1,4 @@
|
||||
kiftd项目 计划表-2022-07-14 by 青阳龙野
|
||||
kiftd项目 计划表-2022-07-29 by 青阳龙野
|
||||
|
||||
已完成 v1.0.17
|
||||
--------------
|
||||
@ -183,7 +183,7 @@ test.auth.xxx=ucd
|
||||
已完成 v1.1.0
|
||||
--------------
|
||||
【已完成】新增WebDAV支持功能!该功能允许用户将kiftd挂载为一个“网络驱动器”,并像访问本地文件夹那样访问kiftd中的文件。
|
||||
开启方法:在conf/server.properties中添加“webdav=enable”设置,之后使用 http://{IP}:{端口}/dav/ 进行挂载。
|
||||
挂载链接: http://{IP}:{端口}/dav/ 或 https://{IP}:{端口}/dav/ (如果已启用HTTPS支持)
|
||||
【已完成】新增删除留档功能。启用该功能后,用户删除的文件将以原件的形式保留在指定路径内,从而使得管理者能够妥善处理这些被删除的文件。
|
||||
开启方法:在conf/server.properties中添加“recyclebin={留档文件夹路径}”设置,之后所有被“删除”或“覆盖”的文件均会按操作日期在此文件夹内留档。
|
||||
【已完成】将SpringBoot版本升级至2.7.0,以便适配更高级的Java(例如Java 17)版本。这一升级也导致了kiftd无法再兼容以前的文件系统。
|
||||
|
BIN
conf/.DS_Store
vendored
Normal file
BIN
conf/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
filesystem/.DS_Store
vendored
Normal file
BIN
filesystem/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
filesystem/fileblocks/.DS_Store
vendored
Normal file
BIN
filesystem/fileblocks/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
filesystem/filenodes/.DS_Store
vendored
Normal file
BIN
filesystem/filenodes/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
filesystem/temporaryfiles/.DS_Store
vendored
Normal file
BIN
filesystem/temporaryfiles/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
libs/.DS_Store
vendored
Normal file
BIN
libs/.DS_Store
vendored
Normal file
Binary file not shown.
BIN
logs/.DS_Store
vendored
Normal file
BIN
logs/.DS_Store
vendored
Normal file
Binary file not shown.
2
pom.xml
2
pom.xml
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>kohgylw</groupId>
|
||||
<artifactId>kiftd</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<version>1.1.0-RELEASE</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>kiftd</name>
|
||||
|
1
target/classes/.gitignore
vendored
Normal file
1
target/classes/.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
||||
/kohgylw/
|
@ -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.1.0-SNAPSHOT
|
||||
Implementation-Version: 1.1.0-RELEASE
|
||||
Main-Class: kohgylw.kiftd.mc.MC
|
||||
Created-By: Maven Integration for Eclipse
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
#Generated by Maven Integration for Eclipse
|
||||
#Thu Jul 14 14:20:03 CST 2022
|
||||
#Fri Jul 29 09:44:03 CST 2022
|
||||
m2e.projectLocation=/Users/kohgylw/Programs/java_workspace/kiftd-source
|
||||
m2e.projectName=kiftd-source
|
||||
groupId=kohgylw
|
||||
artifactId=kiftd
|
||||
version=1.1.0-SNAPSHOT
|
||||
version=1.1.0-RELEASE
|
||||
|
@ -4,7 +4,7 @@
|
||||
|
||||
<groupId>kohgylw</groupId>
|
||||
<artifactId>kiftd</artifactId>
|
||||
<version>1.1.0-SNAPSHOT</version>
|
||||
<version>1.1.0-RELEASE</version>
|
||||
<packaging>jar</packaging>
|
||||
|
||||
<name>kiftd</name>
|
||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user