Skip to content

Commit

Permalink
4.2.1 bugfix release
Browse files Browse the repository at this point in the history
  • Loading branch information
klboke committed Apr 18, 2023
1 parent d3f92b1 commit 0aabf83
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 7 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
FROM keking/kkfileview-jdk:4.1.1
MAINTAINER chenjh "842761733@qq.com"
ADD server/target/kkFileView-*.tar.gz /opt/
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.2.0/bin
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.2.0/config/application.properties","-jar","/opt/kkFileView-4.2.0/bin/kkFileView-4.2.0.jar"]
ENV KKFILEVIEW_BIN_FOLDER /opt/kkFileView-4.2.1/bin
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dspring.config.location=/opt/kkFileView-4.2.1/config/application.properties","-jar","/opt/kkFileView-4.2.1/bin/kkFileView-4.2.1.jar"]
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<groupId>cn.keking</groupId>
<artifactId>kkFileView-parent</artifactId>
<version>4.2.0</version>
<version>4.2.1</version>

<properties>
<java.version>1.8</java.version>
Expand Down
2 changes: 1 addition & 1 deletion server/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<parent>
<artifactId>kkFileView-parent</artifactId>
<groupId>cn.keking</groupId>
<version>4.2.0</version>
<version>4.2.1</version>
</parent>

<artifactId>kkFileView</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/bin/startup.bat
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ echo Please check log file in ../log/kkFileView.log for more information
echo You can get help in our official home site: https://kkview.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
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.2.0.jar -> ..\log\kkFileView.log
java -Dspring.config.location=..\config\application.properties -jar kkFileView-4.2.1.jar -> ..\log\kkFileView.log
2 changes: 1 addition & 1 deletion server/src/main/bin/startup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ else

## 启动kkFileView
echo "Starting kkFileView..."
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.2.0.jar > ../log/kkFileView.log 2>&1 &
nohup java -Dfile.encoding=UTF-8 -Dspring.config.location=../config/application.properties -jar kkFileView-4.2.1.jar > ../log/kkFileView.log 2>&1 &
echo "Please execute ./showlog.sh to check log for more information"
echo "You can get help in our official home site: https://kkview.cn"
echo "If you need further help, please join our kk opensource community: https://t.zsxq.com/09ZHSXbsQ"
Expand Down
2 changes: 1 addition & 1 deletion server/src/main/resources/banner.txt
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
|_|\_\ |_|\_\ |_| |_| |_| \___| \/ |_| \___| \_/\_/

=> Spring Boot :: ${spring-boot.version}
=> kkFileView :: 4.2.0
=> kkFileView :: 4.2.1
=> Home site :: https://kkview.cn
=> Github :: https://github.com/kekingcn/kkFileView
=> Gitee :: https://gitee.com/kekingcn/file-online-preview
Expand Down
10 changes: 10 additions & 0 deletions server/src/main/resources/web/main/record.ftl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,16 @@
<div class="page-header">
<h1>版本发布记录</h1>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">20230418日,v4.2.1 版本</h3>
</div>
<div class="panel-body">
<div>
1. 修复 dwgCAD 类型文件报空指针的 bug<br>
</div>
</div>
</div>
<div class="panel panel-success">
<div class="panel-heading">
<h3 class="panel-title">20230413日,v4.2.0 版本</h3>
Expand Down

0 comments on commit 0aabf83

Please sign in to comment.