Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
0a22887
feat(chunk): add a driver that divides large files into multiple chunks
KirCute Aug 25, 2025
9defe89
fix
KirCute Aug 26, 2025
6d538f0
refactor(chunk): refactor Link and Put methods
j2rong4cn Aug 27, 2025
b4b49c1
refactor(chunk): optimize Link method for improved readability and pe…
j2rong4cn Aug 28, 2025
9472752
refactor(net): rename ErrorHttpStatusCode to HttpStatusCodeError
j2rong4cn Aug 28, 2025
439c3c1
fix(chunk): improve error handling in Link method
j2rong4cn Aug 28, 2025
324a275
Merge branch 'main' into feat/chunk
KirCute Aug 28, 2025
7f61346
j2rong4cn Sep 1, 2025
d9fd154
perf(chunk): 改进Link方法
j2rong4cn Sep 1, 2025
10a6677
fix(chunk): 优化Link方法以处理单个chunk文件
j2rong4cn Sep 1, 2025
95ec9fd
改进Get和List方法中的chunk部分缺失检查逻辑
j2rong4cn Sep 1, 2025
06e762c
refactor(List): 移除不必要的chunk大小映射逻辑,简化代码
j2rong4cn Sep 7, 2025
a495e1c
fix(chunk): 优化Link方法,简化代码; refactor(utils): 改进SyncClosers的引用管理逻辑
j2rong4cn Sep 7, 2025
c48fba1
使用文件夹保存分片文件
j2rong4cn Sep 7, 2025
7999f8a
Merge branch 'main' into feat/chunk
KirCute Sep 7, 2025
87a48e2
fix(chunk): 优化Get方法中的检查chunk部分的缺失逻辑
j2rong4cn Sep 7, 2025
fda06d1
feat(chunk): support hash
KirCute Sep 7, 2025
099327a
Merge branch 'feat/chunk' of github.com:KirCute/OpenList into feat/chunk
KirCute Sep 7, 2025
af1f3d1
fix(chunk): 优化Get方法中获取文件修改时间和创建时间的逻辑
j2rong4cn Sep 8, 2025
c9d640f
feat(chunk): 添加缩略图支持
j2rong4cn Sep 8, 2025
93ac17b
fix(chunk): 优化Get和List方法中的路径处理逻辑
j2rong4cn Sep 9, 2025
ef9e028
fix(chunk): 修复Link方法中未关闭资源的潜在问题
j2rong4cn Sep 13, 2025
b10eb75
添加Thumbnail和ShowHidden字段以支持缩略图和隐藏文件显示,逻辑与crypt驱动一致
j2rong4cn Sep 13, 2025
275c844
在Put方法中添加对缩略图目录的支持
j2rong4cn Sep 13, 2025
99cd410
fix(chunk): 优化List方法中结果切片的初始化方式
j2rong4cn Sep 13, 2025
d8fb575
Merge remote-tracking branch 'upstream/main' into pr/KirCute/1153
j2rong4cn Sep 13, 2025
9c6dd2b
fix(chunk): 更新Get方法中的注释以增强代码可读性
j2rong4cn Sep 13, 2025
957d2cf
fix(chunk): 优化Rename方法
j2rong4cn Sep 15, 2025
64d8462
Merge remote-tracking branch 'upstream/main' into pr/KirCute/1153
j2rong4cn Sep 15, 2025
51069de
Merge branch 'main' into feat/chunk
KirCute Sep 19, 2025
05c5bd4
feat: autoremove unsuccessfully uploaded file-parts & add disk usage
KirCute Sep 19, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions drivers/all.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ import (
_ "github.com/OpenListTeam/OpenList/v4/drivers/baidu_netdisk"
_ "github.com/OpenListTeam/OpenList/v4/drivers/baidu_photo"
_ "github.com/OpenListTeam/OpenList/v4/drivers/chaoxing"
_ "github.com/OpenListTeam/OpenList/v4/drivers/chunk"
_ "github.com/OpenListTeam/OpenList/v4/drivers/cloudreve"
_ "github.com/OpenListTeam/OpenList/v4/drivers/cloudreve_v4"
_ "github.com/OpenListTeam/OpenList/v4/drivers/cnb_releases"
Expand Down
Loading