mirror of
https://github.com/KOHGYLW/kiftd-source.git
synced 2025-01-09 04:27:56 +08:00
update to v1.0.17-release
This commit is contained in:
parent
c682e1c0df
commit
c2847cece6
1
TODO.txt
1
TODO.txt
@ -104,6 +104,7 @@ kiftd项目 计划表-2018-10-9 by 青阳龙野
|
||||
——通过在在线播放模块中集成JAVE多媒体解码器,现在,用户可以直接在线播放mp4/mov/wmv/flv/mkv/webm/avi格式的全部视频了。
|
||||
【已完成】增强搜索!全局搜索功能已经上线,用户可以在搜索框内输入“all:关键字”来搜索整个路径了(包含子文件夹内)。
|
||||
【已完成】改进了“下载链接”的分享——现在,指定文件的下载链接将动态生成,持有该链接的用户将可直接下载指定资源(无需再进行权限认证),支持跨域请求。
|
||||
【已完成】修正了“打包下载”时无法正确压缩文件夹的问题。
|
||||
【已完成】新增主界面显示缩放比设置功能,方便用户自行调节界面缩放比以适应不同分辨率。
|
||||
【已完成】优化了上传文件的权限检查机制,现在上传文件不会由于时间过长而导致权限失效了。
|
||||
【已完成】文件列表中文件名过长时能够自动换行,以避免文字溢出。
|
||||
|
BIN
filesystem/.DS_Store
vendored
BIN
filesystem/.DS_Store
vendored
Binary file not shown.
@ -170,6 +170,9 @@ public class FileBlockUtil {
|
||||
}
|
||||
zs.add((ZipEntrySource) new FileSource(node.getFileName(), new File(fileBlocks, node.getFilePath())));
|
||||
}
|
||||
for(ZipEntrySource zes:zs) {
|
||||
System.out.println(zes.getPath());
|
||||
}
|
||||
ZipUtil.pack(zs.toArray(new ZipEntrySource[0]), f);
|
||||
return zipname;
|
||||
} catch (Exception e) {
|
||||
@ -181,24 +184,21 @@ public class FileBlockUtil {
|
||||
private void addFoldersToZipEntrySourceArray(Folder f, List<ZipEntrySource> zs, String account, String parentPath) {
|
||||
if (f != null && ConfigureReader.instance().accessFolder(f, account)) {
|
||||
String folderName = f.getFolderName();
|
||||
String thisPath = folderName + "/";
|
||||
String thisPath = parentPath + folderName + "/";
|
||||
zs.add(new ZipEntrySource() {
|
||||
|
||||
@Override
|
||||
public String getPath() {
|
||||
// TODO 自动生成的方法存根
|
||||
return thisPath;
|
||||
}
|
||||
|
||||
@Override
|
||||
public InputStream getInputStream() throws IOException {
|
||||
// TODO 自动生成的方法存根
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public ZipEntry getEntry() {
|
||||
// TODO 自动生成的方法存根
|
||||
return new ZipEntry(thisPath);
|
||||
}
|
||||
});
|
||||
|
@ -1,5 +1,5 @@
|
||||
#Generated by Maven Integration for Eclipse
|
||||
#Thu Apr 11 09:08:34 CST 2019
|
||||
#Thu Apr 11 10:14:10 CST 2019
|
||||
version=1.0.17-RELEASE
|
||||
groupId=kohgylw
|
||||
m2e.projectName=kiftd
|
||||
|
Binary file not shown.
Binary file not shown.
Loading…
Reference in New Issue
Block a user