Skip to content

Commit eb12eb0

Browse files
committed
4.1.0版本发布
1 parent d78351f commit eb12eb0

File tree

9 files changed

+35
-18
lines changed

9 files changed

+35
-18
lines changed

Diff for: Dockerfile

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
FROM keking/kkfileview-jdk:4.1.1
22
MAINTAINER chenjh "[email protected]"
33
ADD server/target/kkFileView-*.tar.gz /opt/
4-
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0-SNAPSHOT/bin
5-
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.1.0-SNAPSHOT/config/application.properties","-jar","/opt/kkFileView-4.1.0-SNAPSHOT/bin/kkFileView-4.1.0-SNAPSHOT.jar"]
4+
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0/bin
5+
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.1.0/config/application.properties","-jar","/opt/kkFileView-4.1.0/bin/kkFileView-4.1.0.jar"]

Diff for: README.md

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

111111
### 历史更新记录
112112

113+
> 2022年12月14日,v4.1.0 版本发布 :
114+
115+
1. 全新首页视觉 @wsd7747
116+
2. tif图片预览兼容多页tif的pdf转换、jpg转换,以及jpg在线多页预览功能 @zhangzhen1979
117+
3. 优化docker构建方案,使用分层构建方式 @yl-yue
118+
4. 实现基于userToken缓存加密文件 @yl-yue
119+
5. 实现加密word、ppt、excel文件预览 @yl-yue
120+
6. Linux & Docker镜像升级LibreOffice 7.3
121+
7. 更新OFD预览组件、更新tif预览组件、更新PPT水印支持
122+
8. 大量其他升级优化 & 已知问题修复
123+
124+
感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献
125+
113126
> 2021年7月6日,v4.0.0 版本发布 :
114127
115128
1. 底层集成OpenOffice替换为LibreOffice,Office文件兼容性增强,预览效果提升

Diff for: office-plugin/pom.xml

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

1212
<artifactId>office-plugin</artifactId>

Diff for: pom.xml

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

77
<groupId>cn.keking</groupId>
88
<artifactId>kkFileView-parent</artifactId>
9-
<version>4.1.0-SNAPSHOT</version>
9+
<version>4.1.0</version>
1010

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

Diff for: server/pom.xml

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

1212
<artifactId>kkFileView</artifactId>

Diff for: server/src/main/bin/startup.bat

+3-2
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ cd "%KKFILEVIEW_BIN_FOLDER%"
44
echo Using KKFILEVIEW_BIN_FOLDER %KKFILEVIEW_BIN_FOLDER%
55
echo Starting kkFileView...
66
echo Please check log file in ../log/kkFileView.log for more information
7-
echo You can get help in our official homesite: https://kkFileView.keking.cn
7+
echo You can get help in our official home site: https://kkFileView.keking.cn
8+
echo If you need further help, please join our kk opensource community: https://t.zsxq.com/09ZHSXbsQ
89
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.1.0-SNAPSHOT.jar -> ..\log\kkFileView.log
10+
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.1.0.jar -> ..\log\kkFileView.log

Diff for: server/src/main/bin/startup.sh

+3-2
Original file line numberDiff line numberDiff line change
@@ -51,9 +51,10 @@ else
5151

5252
## 启动kkFileView
5353
echo "Starting kkFileView..."
54-
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.1.0-SNAPSHOT.jar > ../log/kkFileView.log 2>&1 &
54+
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.1.0.jar > ../log/kkFileView.log 2>&1 &
5555
echo "Please execute ./showlog.sh to check log for more information"
56-
echo "You can get help in our official homesite: https://kkFileView.keking.cn"
56+
echo "You can get help in our official home site: https://kkFileView.keking.cn"
57+
echo "If you need further help, please join our kk opensource community: https://t.zsxq.com/09ZHSXbsQ"
5758
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
5859
PROCESS=$(ps -ef | grep kkFileView | awk 'NR==1{print $2}')
5960
# 启动成功后将进程号写入pid文件

Diff for: server/src/main/resources/banner.txt

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@
66
| < | < | | | | | | | __/ \ / | | | __/ \ V V /
77
|_|\_\ |_|\_\ |_| |_| |_| \___| \/ |_| \___| \_/\_/
88

9-
=> Spring Boot :: ${spring-boot.version}
10-
=> kkFileView :: 4.1.0-SNAPSHOT
11-
=> Homepage :: https://kkfileview.keking.cn
12-
=> Github :: https://github.com/kekingcn/kkFileView
13-
=> Gitee :: https://gitee.com/kekingcn/file-online-preview
14-
=> QQ Group :: 613025121 484680571
9+
=> Spring Boot :: ${spring-boot.version}
10+
=> kkFileView :: 4.1.0
11+
=> Home site :: https://kkfileview.keking.cn
12+
=> Github :: https://github.com/kekingcn/kkFileView
13+
=> Gitee :: https://gitee.com/kekingcn/file-online-preview
14+
=> kk opensource community :: https://t.zsxq.com/09ZHSXbsQ

Diff for: server/src/main/resources/web/record.ftl

+5-3
Original file line numberDiff line numberDiff line change
@@ -46,18 +46,20 @@
4646
</div>
4747
<div class="panel panel-success">
4848
<div class="panel-heading">
49-
<h3 class="panel-title">v4.1.0 版本, 发布时间:TBD</h3>
49+
<h3 class="panel-title">2022年12月14日,v4.1.0 版本</h3>
5050
</div>
5151
<div class="panel-body">
5252
<div>
53-
** 本次版本主要功能均由社区开发贡献,感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献 ** <br>
5453
1. 全新首页视觉 @wsd7747 <br>
5554
2. tif图片预览兼容多页tif的pdf转换、jpg转换,以及jpg在线多页预览功能 @zhangzhen1979<br>
5655
3. 优化docker构建方案,使用分层构建方式 @yl-yue<br>
5756
4. 实现基于userToken缓存加密文件 @yl-yue<br>
5857
5. 实现加密word、ppt、excel文件预览 @yl-yue<br>
5958
6. Linux & Docker镜像升级LibreOffice 7.3<br>
60-
7. 其他升级优化 & 已知问题修复
59+
7. 更新OFD预览组件、更新tif预览组件、更新PPT水印支持<br>
60+
7. 大量其他升级优化 & 已知问题修复<br>
61+
<br>
62+
感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献
6163
</div>
6264
</div>
6365
</div>

0 commit comments

Comments
 (0)