4.1.0版本发布
This commit is contained in:
@ -1,5 +1,5 @@
|
|||||||
FROM keking/kkfileview-jdk:4.1.1
|
FROM keking/kkfileview-jdk:4.1.1
|
||||||
MAINTAINER chenjh "842761733@qq.com"
|
MAINTAINER chenjh "842761733@qq.com"
|
||||||
ADD server/target/kkFileView-*.tar.gz /opt/
|
ADD server/target/kkFileView-*.tar.gz /opt/
|
||||||
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0-SNAPSHOT/bin
|
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.1.0/bin
|
||||||
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"]
|
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"]
|
||||||
|
|||||||
13
README.md
13
README.md
@ -110,6 +110,19 @@ pdf预览模式预览效果如下
|
|||||||
|
|
||||||
### 历史更新记录
|
### 历史更新记录
|
||||||
|
|
||||||
|
> 2022年12月14日,v4.1.0 版本发布 :
|
||||||
|
|
||||||
|
1. 全新首页视觉 @wsd7747
|
||||||
|
2. tif图片预览兼容多页tif的pdf转换、jpg转换,以及jpg在线多页预览功能 @zhangzhen1979
|
||||||
|
3. 优化docker构建方案,使用分层构建方式 @yl-yue
|
||||||
|
4. 实现基于userToken缓存加密文件 @yl-yue
|
||||||
|
5. 实现加密word、ppt、excel文件预览 @yl-yue
|
||||||
|
6. Linux & Docker镜像升级LibreOffice 7.3
|
||||||
|
7. 更新OFD预览组件、更新tif预览组件、更新PPT水印支持
|
||||||
|
8. 大量其他升级优化 & 已知问题修复
|
||||||
|
|
||||||
|
感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献
|
||||||
|
|
||||||
> 2021年7月6日,v4.0.0 版本发布 :
|
> 2021年7月6日,v4.0.0 版本发布 :
|
||||||
|
|
||||||
1. 底层集成OpenOffice替换为LibreOffice,Office文件兼容性增强,预览效果提升
|
1. 底层集成OpenOffice替换为LibreOffice,Office文件兼容性增强,预览效果提升
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>kkFileView-parent</artifactId>
|
<artifactId>kkFileView-parent</artifactId>
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<version>4.1.0-SNAPSHOT</version>
|
<version>4.1.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>office-plugin</artifactId>
|
<artifactId>office-plugin</artifactId>
|
||||||
|
|||||||
2
pom.xml
2
pom.xml
@ -6,7 +6,7 @@
|
|||||||
|
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<artifactId>kkFileView-parent</artifactId>
|
<artifactId>kkFileView-parent</artifactId>
|
||||||
<version>4.1.0-SNAPSHOT</version>
|
<version>4.1.0</version>
|
||||||
|
|
||||||
<properties>
|
<properties>
|
||||||
<java.version>1.8</java.version>
|
<java.version>1.8</java.version>
|
||||||
|
|||||||
@ -6,7 +6,7 @@
|
|||||||
<parent>
|
<parent>
|
||||||
<artifactId>kkFileView-parent</artifactId>
|
<artifactId>kkFileView-parent</artifactId>
|
||||||
<groupId>cn.keking</groupId>
|
<groupId>cn.keking</groupId>
|
||||||
<version>4.1.0-SNAPSHOT</version>
|
<version>4.1.0</version>
|
||||||
</parent>
|
</parent>
|
||||||
|
|
||||||
<artifactId>kkFileView</artifactId>
|
<artifactId>kkFileView</artifactId>
|
||||||
|
|||||||
@ -4,6 +4,7 @@ cd "%KKFILEVIEW_BIN_FOLDER%"
|
|||||||
echo Using KKFILEVIEW_BIN_FOLDER %KKFILEVIEW_BIN_FOLDER%
|
echo Using KKFILEVIEW_BIN_FOLDER %KKFILEVIEW_BIN_FOLDER%
|
||||||
echo Starting kkFileView...
|
echo Starting kkFileView...
|
||||||
echo Please check log file in ../log/kkFileView.log for more information
|
echo Please check log file in ../log/kkFileView.log for more information
|
||||||
echo You can get help in our official homesite: https://kkFileView.keking.cn
|
echo You can get help in our official home site: https://kkFileView.keking.cn
|
||||||
|
echo If you need further help, please join our kk opensource community: https://t.zsxq.com/09ZHSXbsQ
|
||||||
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
|
echo If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers
|
||||||
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.1.0-SNAPSHOT.jar -> ..\log\kkFileView.log
|
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.1.0.jar -> ..\log\kkFileView.log
|
||||||
|
|||||||
@ -51,9 +51,10 @@ else
|
|||||||
|
|
||||||
## 启动kkFileView
|
## 启动kkFileView
|
||||||
echo "Starting kkFileView..."
|
echo "Starting kkFileView..."
|
||||||
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.1.0-SNAPSHOT.jar > ../log/kkFileView.log 2>&1 &
|
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.1.0.jar > ../log/kkFileView.log 2>&1 &
|
||||||
echo "Please execute ./showlog.sh to check log for more information"
|
echo "Please execute ./showlog.sh to check log for more information"
|
||||||
echo "You can get help in our official homesite: https://kkFileView.keking.cn"
|
echo "You can get help in our official home site: https://kkFileView.keking.cn"
|
||||||
|
echo "If you need further help, please join our kk opensource community: https://t.zsxq.com/09ZHSXbsQ"
|
||||||
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
|
echo "If this project is helpful to you, please star it on https://gitee.com/kekingcn/file-online-preview/stargazers"
|
||||||
PROCESS=$(ps -ef | grep kkFileView | awk 'NR==1{print $2}')
|
PROCESS=$(ps -ef | grep kkFileView | awk 'NR==1{print $2}')
|
||||||
# 启动成功后将进程号写入pid文件
|
# 启动成功后将进程号写入pid文件
|
||||||
|
|||||||
@ -6,9 +6,9 @@
|
|||||||
| < | < | | | | | | | __/ \ / | | | __/ \ V V /
|
| < | < | | | | | | | __/ \ / | | | __/ \ V V /
|
||||||
|_|\_\ |_|\_\ |_| |_| |_| \___| \/ |_| \___| \_/\_/
|
|_|\_\ |_|\_\ |_| |_| |_| \___| \/ |_| \___| \_/\_/
|
||||||
|
|
||||||
=> Spring Boot :: ${spring-boot.version}
|
=> Spring Boot :: ${spring-boot.version}
|
||||||
=> kkFileView :: 4.1.0-SNAPSHOT
|
=> kkFileView :: 4.1.0
|
||||||
=> Homepage :: https://kkfileview.keking.cn
|
=> Home site :: https://kkfileview.keking.cn
|
||||||
=> Github :: https://github.com/kekingcn/kkFileView
|
=> Github :: https://github.com/kekingcn/kkFileView
|
||||||
=> Gitee :: https://gitee.com/kekingcn/file-online-preview
|
=> Gitee :: https://gitee.com/kekingcn/file-online-preview
|
||||||
=> QQ Group :: 613025121 484680571
|
=> kk opensource community :: https://t.zsxq.com/09ZHSXbsQ
|
||||||
|
|||||||
@ -46,18 +46,20 @@
|
|||||||
</div>
|
</div>
|
||||||
<div class="panel panel-success">
|
<div class="panel panel-success">
|
||||||
<div class="panel-heading">
|
<div class="panel-heading">
|
||||||
<h3 class="panel-title">v4.1.0 版本, 发布时间:TBD</h3>
|
<h3 class="panel-title">2022年12月14日,v4.1.0 版本</h3>
|
||||||
</div>
|
</div>
|
||||||
<div class="panel-body">
|
<div class="panel-body">
|
||||||
<div>
|
<div>
|
||||||
** 本次版本主要功能均由社区开发贡献,感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献 ** <br>
|
|
||||||
1. 全新首页视觉 @wsd7747 <br>
|
1. 全新首页视觉 @wsd7747 <br>
|
||||||
2. tif图片预览兼容多页tif的pdf转换、jpg转换,以及jpg在线多页预览功能 @zhangzhen1979<br>
|
2. tif图片预览兼容多页tif的pdf转换、jpg转换,以及jpg在线多页预览功能 @zhangzhen1979<br>
|
||||||
3. 优化docker构建方案,使用分层构建方式 @yl-yue<br>
|
3. 优化docker构建方案,使用分层构建方式 @yl-yue<br>
|
||||||
4. 实现基于userToken缓存加密文件 @yl-yue<br>
|
4. 实现基于userToken缓存加密文件 @yl-yue<br>
|
||||||
5. 实现加密word、ppt、excel文件预览 @yl-yue<br>
|
5. 实现加密word、ppt、excel文件预览 @yl-yue<br>
|
||||||
6. Linux & Docker镜像升级LibreOffice 7.3<br>
|
6. Linux & Docker镜像升级LibreOffice 7.3<br>
|
||||||
7. 其他升级优化 & 已知问题修复
|
7. 更新OFD预览组件、更新tif预览组件、更新PPT水印支持<br>
|
||||||
|
7. 大量其他升级优化 & 已知问题修复<br>
|
||||||
|
<br>
|
||||||
|
感谢 @yl-yue @wsd7747 @zhangzhen1979 @tomhusky @shenghuadun @kischn.sun 的代码贡献
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
Reference in New Issue
Block a user