Skip to content

Commit 216c35c

Browse files
committed
4.0.0版本发布
1 parent d98cd5d commit 216c35c

File tree

9 files changed

+30
-8
lines changed

9 files changed

+30
-8
lines changed

Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,5 +37,5 @@ ENV CLASSPATH $JAVA_HOME/lib/dt.jar:$JAVA_HOME/lib/tools.jar
3737
ENV PATH $PATH:$JAVA_HOME/bin
3838
ENV LANG zh_CN.UTF-8
3939
ENV LC_ALL zh_CN.UTF-8
40-
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.0.0-SNAPSHOT/bin
41-
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.0.0-SNAPSHOT/config/application.properties","-jar","/opt/kkFileView-4.0.0-SNAPSHOT/bin/kkFileView-4.0.0-SNAPSHOT.jar"]
40+
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.0.0/bin
41+
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.0.0/config/application.properties","-jar","/opt/kkFileView-4.0.0/bin/kkFileView-4.0.0.jar"]

README.md

+11
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,17 @@ pdf预览模式预览效果如下
110110

111111
### 历史更新记录
112112

113+
> 2021年7月6日,v4.0.0 版本发布 :
114+
115+
1. 底层集成OpenOffice替换为LibreOffice,Office文件兼容性增强,预览效果提升
116+
2. 修复压缩文件目录穿越漏洞
117+
3. 修复PPT预览使用PDF模式无效
118+
4. 修复PPT图片预览模式前端显示异常
119+
5. 新增功能:首页文件上传功能可通过配置实时开启或禁用
120+
6. 优化增加Office进程关闭日志
121+
7. 优化Windows环境下,查找Office组件逻辑(内置的LibreOffice优先)
122+
8. 优化启动Office进程改同步执行
123+
113124
> 2021年6月17日,v3.6.0 版本发布 :
114125
115126
ofd 类型文件支持版本,本次版本重要功能均由社区开发贡献,感谢 @gaoxingzaq@zhangxiaoxiao9527 的代码贡献

office-plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>filepreview</artifactId>
99
<groupId>cn.keking</groupId>
10-
<version>4.0.0-SNAPSHOT</version>
10+
<version>4.0.0</version>
1111
</parent>
1212

1313
<artifactId>office-plugin</artifactId>

pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
<groupId>cn.keking</groupId>
88
<artifactId>filepreview</artifactId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0.0</version>
1010

1111
<properties>
1212
<java.version>1.8</java.version>

server/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
<parent>
77
<artifactId>filepreview</artifactId>
88
<groupId>cn.keking</groupId>
9-
<version>4.0.0-SNAPSHOT</version>
9+
<version>4.0.0</version>
1010
</parent>
1111

1212
<artifactId>kkFileView</artifactId>

server/src/main/bin/startup.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ echo Starting kkFileView...
66
echo Please check log file in ../log/kkFileView.log for more information
77
echo You can get help in our official homesite: https://kkFileView.keking.cn
88
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
9-
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.0.0-SNAPSHOT.jar -> ..\log\kkFileView.log
9+
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.0.0.jar -> ..\log\kkFileView.log

server/src/main/bin/startup.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,4 +29,4 @@ echo "Starting kkFileView..."
2929
echo "Please execute ./showlog.sh to check log for more information"
3030
echo "You can get help in our official homesite: https://kkFileView.keking.cn"
3131
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
32-
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.0.0-SNAPSHOT.jar > ../log/kkFileView.log 2>&1 &
32+
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.0.0.jar > ../log/kkFileView.log 2>&1 &

server/src/main/java/cn/keking/config/AppBanner.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ public void printBanner(Environment environment, Class<?> sourceClass, PrintStre
2121
" |_|\\_\\ |_|\\_\\ |_| |_| |_| \\___| \\/ |_| \\___| \\_/\\_/ \n" +
2222
" \n" +
2323
" => Spring Boot :: (v2.4.2) QQ1 :: 613025121\n" +
24-
" => kkFileView :: (v4.0.0-SNAPSHOT) QQ2 :: 484680571\n" +
24+
" => kkFileView :: (v4.0.0) QQ2 :: 484680571\n" +
2525
" => github :: https://github.com/kekingcn/kkFileView\n" +
2626
" => gitee :: https://gitee.com/kekingcn/file-online-preview\n");
2727
}

server/src/main/resources/web/index.ftl

+11
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,17 @@
8181
</div>
8282
<div class="panel-body">
8383
<div>
84+
85+
2021年7月6日,v4.0.0 版本 :<br>
86+
1. 底层集成OpenOffice替换为LibreOffice,Office文件兼容性增强,预览效果提升<br>
87+
2. 修复压缩文件目录穿越漏洞<br>
88+
3. 修复PPT预览使用PDF模式无效<br>
89+
4. 修复PPT图片预览模式前端显示异常<br>
90+
5. 新增功能:首页文件上传功能可通过配置实时开启或禁用<br>
91+
6. 优化增加Office进程关闭日志<br>
92+
7. 优化Windows环境下,查找Office组件逻辑(内置的LibreOffice优先)<br>
93+
8. 优化启动Office进程改同步执行<br><br>
94+
8495
2021年6月17日,v3.6.0版本 :<br>
8596
ofd 类型文件支持版本,本次版本重要功能均由社区开发贡献,感谢 @gaoxingzaq、@zhangxiaoxiao9527 的代码贡献<br>
8697
1、新增 ofd 类型文件预览支持,ofd 是国产的类似 pdf 格式的文件<br>

0 commit comments

Comments
 (0)