Skip to content

Commit c0f7d60

Browse files
gitchenjhklboke
authored andcommitted
新增:更新日志
1 parent bf83a08 commit c0f7d60

3 files changed

Lines changed: 63 additions & 2 deletions

File tree

README.en.md

Lines changed: 22 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,14 @@ special thanks to the supports of @唐老大 and the contributions of @端木详
1616
- REST API
1717
- Abstract file preview interface so that it is easy to extend more file extensions and develop this project on your own
1818

19+
### Official website and DOCS
20+
21+
URL:[https://kkfileview.keking.cn](https://kkfileview.keking.cn)
22+
1923
### Live demo
2024
> Please treat public service kindly, or this would stop at any time.
2125
22-
URL:http://file.keking.cn/
26+
URL:[https://file.keking.cn](https://file.keking.cn)
2327

2428
### Documentation
2529
1. 中文文档:https://gitee.com/kekingcn/file-online-preview/blob/master/README.md
@@ -67,6 +71,23 @@ If everything is ok,you will see the picture below.
6771
![输入图片说明](https://gitee.com/uploads/images/2017/1213/100221_ea15202e_492218.png "屏幕截图.png")
6872

6973
### Changelog
74+
> May 20th 2020 :
75+
1. Support for global watermark and dynamic change of watermark content through parameters
76+
2. Support for CAD file Preview
77+
3. Add configuration item base.url, support using nginx reverse proxy and set context-path
78+
4. All configuration items can be read from environment variables, which is convenient for docker image deployment and large-scale use in cluster
79+
5. Support the configuration of TrustHost (only the file source from the trust site can be previewed), and protect the preview service from abuse
80+
6. Support configuration of customize cache cleanup time (cron expression)
81+
7. All recognizable plain text can be previewed directly without downloading, such as .md .java .py, etc
82+
8. Support configuration to limit PDF file download after conversion
83+
9. Optimize Maven packaging configuration to solve the problem of line break in .sh script
84+
10. Place all CDN dependencies on the front end locally for users without external network connection
85+
11. Comment Service on home page switched from Sohu ChangYan to gitalk
86+
12. Fixed preview exceptions that may be caused by special characters in the URL
87+
13. Fixed the addtask exception of the transformation file queue
88+
14. Fixed other known issues
89+
15. Official website build: [https://kkfileview.keking.cn](https://kkfileview.keking.cn)
90+
16. Official docker image repository build: [https://hub.docker.com/r/keking/kkfileview](https://hub.docker.com/r/keking/kkfileview)
7091

7192
> June 18th 2019 :
7293
1. Support automatic cleaning of cache and preview files

README.md

Lines changed: 23 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,10 +11,14 @@
1111
1. 抽象预览服务接口,方便二次开发,非常方便添加其他类型文件预览支持
1212
1. 最最重要Apache协议开源,代码pull下来想干嘛就干嘛
1313

14+
### 官网及文档
15+
16+
地址:[https://kkfileview.keking.cn](https://kkfileview.keking.cn)
17+
1418
### 在线体验
1519
> 请善待公共服务,会不定时停用
1620
17-
地址:http://file.keking.cn/
21+
地址:[https://file.keking.cn](https://file.keking.cn)
1822

1923
### 项目文档(Project documentation)
2024
1. 详细wiki文档:https://gitee.com/kekingcn/file-online-preview/wikis/pages
@@ -62,6 +66,24 @@ QQ群号:613025121
6266

6367
### 历史更新记录
6468

69+
> 2020年05月20日 :
70+
1. 新增支持全局水印,并支持通过参数动态改变水印内容
71+
2. 新增支持CAD文件预览
72+
3. 新增base.url配置,支持使用nginx反向代理和使用context-path
73+
4. 支持所有配置项支持从环境变量里读取,方便Docker镜像部署和集群中大规模使用
74+
5. 支持配置限信任站点(只能预览来自信任点的文件源),保护预览服务不被滥用
75+
6. 支持配置自定义缓存清理时间(cron表达式)
76+
7. 全部能识别的纯文本直接预览,不用再转跳下载,如.md .java .py等
77+
8. 支持配置限制转换后的PDF文件下载
78+
9. 优化maven打包配置,解决 .sh 脚本可能出现换行符问题
79+
10. 将前端所有CDN依赖放到本地,方便没有外网连接的用户使用
80+
11. 首页评论服务由搜狐畅言切换到Gitalk
81+
12. 修复url中包含特殊字符可能会引起的预览异常
82+
13. 修复转换文件队列addTask异常
83+
14. 修复其他已经问题
84+
15. 官网建设:[https://kkfileview.keking.cn](https://kkfileview.keking.cn)
85+
16. 官方Docker镜像仓库建设:[https://hub.docker.com/r/keking/kkfileview](https://hub.docker.com/r/keking/kkfileview)
86+
6587
> 2019年06月18日 :
6688
1. 支持自动清理缓存及预览文件
6789
2. 支持http/https下载流url文件预览

jodconverter-web/src/main/resources/web/index.ftl

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,24 @@ window.open('http://127.0.0.1:8012/picturesPreview?urls='+encodeURIComponent(fil
8484
<div id="collapseThree" class="panel-collapse collapse in">
8585
<div class="panel-body">
8686
<div>
87+
2020年05月20日 :<br>
88+
1. 新增支持全局水印,并支持通过参数动态改变水印内容<br>
89+
2. 新增支持CAD文件预览<br>
90+
3. 新增base.url配置,支持使用nginx反向代理和使用context-path<br>
91+
4. 支持所有配置项支持从环境变量里读取,方便Docker镜像部署和集群中大规模使用<br>
92+
5. 支持配置限信任站点(只能预览来自信任点的文件源),保护预览服务不被滥用<br>
93+
6. 支持配置自定义缓存清理时间(cron表达式)<br>
94+
7. 全部能识别的纯文本直接预览,不用再转跳下载,如.md .java .py等<br>
95+
8. 支持配置限制转换后的PDF文件下载<br>
96+
9. 优化maven打包配置,解决 .sh 脚本可能出现换行符问题<br>
97+
10. 将前端所有CDN依赖放到本地,方便没有外网连接的用户使用<br>
98+
11. 首页评论服务由搜狐畅言切换到Gitalk<br>
99+
12. 修复url中包含特殊字符可能会引起的预览异常<br>
100+
13. 修复转换文件队列addTask异常<br>
101+
14. 修复其他已经问题<br>
102+
15. 官网建设:<a href="https://kkfileview.keking.cn">https://kkfileview.keking.cn</a><br>
103+
16. 官方Docker镜像仓库建设:<a href="https://hub.docker.com/r/keking/kkfileview">https://hub.docker.com/r/keking/kkfileview</a><br><br>
104+
87105
2019年06月18日 :<br>
88106
1. 支持自动清理缓存及预览文件<br>
89107
2. 支持http/https下载流url文件预览<br>

0 commit comments

Comments
 (0)