Skip to content

Commit 807ada0

Browse files
authored
4.0.0版本
4.0.0版本
2 parents 8a1eebb + 216c35c commit 807ada0

File tree

14,750 files changed

+2194863
-551813
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

14,750 files changed

+2194863
-551813
lines changed

Dockerfile

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM ubuntu:20.04
22
MAINTAINER chenjh "[email protected]"
33
ADD server/target/kkFileView-*.tar.gz /opt/
4-
COPY fonts/* /usr/share/fonts/chienes/
4+
COPY fonts/* /usr/share/fonts/chinese/
55
RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-security main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-updates main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-proposed main restricted universe multiverse\ndeb http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse\ndeb-src http://mirrors.aliyun.com/ubuntu/ focal-backports main restricted universe multiverse" > /etc/apt/sources.list &&\
66
apt-get clean && apt-get update &&\
77
apt-get install -y locales && apt-get install -y language-pack-zh-hans &&\
@@ -17,18 +17,18 @@ RUN echo "deb http://mirrors.aliyun.com/ubuntu/ focal main restricted universe m
1717
tar -zxf /tmp/server-jre-8u251-linux-x64.tar.gz && mv /tmp/jdk1.8.0_251 /usr/local/ &&\
1818

1919
# 安装 OpenOffice
20-
wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz &&\
21-
tar -zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS &&\
22-
dpkg -i *.deb && dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb &&\
20+
# wget https://kkfileview.keking.cn/Apache_OpenOffice_4.1.6_Linux_x86-64_install-deb_zh-CN.tar.gz -cO openoffice_deb.tar.gz &&\
21+
# tar -zxf /tmp/openoffice_deb.tar.gz && cd /tmp/zh-CN/DEBS &&\
22+
# dpkg -i *.deb && dpkg -i desktop-integration/openoffice4.1-debian-menus_4.1.6-9790_all.deb &&\
2323

2424
# 安装 libreoffice
25-
# apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1 &&\
26-
# wget https://mirrors.cloud.tencent.com/libreoffice/libreoffice/stable/7.1.3/deb/x86_64/LibreOffice_7.1.3_Linux_x86-64_deb.tar.gz -cO libreoffice_deb.tar.gz &&\
27-
# tar -zxf /tmp/libreoffice_deb.tar.gz && cd /tmp/LibreOffice_7.1.3.2_Linux_x86-64_deb/DEBS &&\
28-
# dpkg -i *.deb &&\
25+
apt-get install -y libxinerama1 libcairo2 libcups2 libx11-xcb1 &&\
26+
wget https://kkfileview.keking.cn/LibreOffice_7.1.4_Linux_x86-64_deb.tar.gz -cO libreoffice_deb.tar.gz &&\
27+
tar -zxf /tmp/libreoffice_deb.tar.gz && cd /tmp/LibreOffice_7.1.4.2_Linux_x86-64_deb/DEBS &&\
28+
dpkg -i *.deb &&\
2929

3030
rm -rf /tmp/* && rm -rf /var/lib/apt/lists/* &&\
31-
cd /usr/share/fonts/chienes &&\
31+
cd /usr/share/fonts/chinese &&\
3232
mkfontscale &&\
3333
mkfontdir &&\
3434
fc-cache -fv
@@ -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-3.6.0/bin
41-
ENTRYPOINT ["java","-Dfile.encoding=UTF-8","-Dsun.java2d.cmm=sun.java2d.cmm.kcms.KcmsServiceProvider","-Dspring.config.location=/opt/kkFileView-3.6.0/config/application.properties","-jar","/opt/kkFileView-3.6.0/bin/kkFileView-3.6.0.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>3.6.0</version>
10+
<version>4.0.0</version>
1111
</parent>
1212

1313
<artifactId>office-plugin</artifactId>

office-plugin/src/main/java/org/artofsolving/jodconverter/office/OfficeUtils.java

+7-3
Original file line numberDiff line numberDiff line change
@@ -87,9 +87,10 @@ public static File getDefaultOfficeHome() {
8787
programFiles = System.getenv("ProgramFiles");
8888
}
8989
return findOfficeHome(
90-
programFiles + File.separator + "OpenOffice 4",
91-
programFiles + File.separator + "LibreOffice 4",
92-
officePluginPath + File.separator + "windows-office"
90+
officePluginPath + File.separator + "windows-office",
91+
programFiles + File.separator + "LibreOffice",
92+
programFiles + File.separator + "OpenOffice 4",
93+
programFiles + File.separator + "LibreOffice 4"
9394
);
9495
} else if (PlatformUtils.isMac()) {
9596
return findOfficeHome(
@@ -103,6 +104,9 @@ public static File getDefaultOfficeHome() {
103104
"/opt/openoffice.org3",
104105
"/opt/openoffice",
105106
"/opt/libreoffice",
107+
"/opt/libreoffice6.1",
108+
"/opt/libreoffice7.0",
109+
"/opt/libreoffice7.1",
106110
"/opt/openoffice4",
107111
"/usr/lib/openoffice",
108112
"/usr/lib/libreoffice"

0 commit comments

Comments
 (0)