Skip to content
This repository has been archived by the owner on Sep 14, 2023. It is now read-only.

Commit

Permalink
1. 增加视频和音频文件的预览
Browse files Browse the repository at this point in the history
2. 增加非指定文件的预览, 即在插件预览中除了原来的四大类型(图片, 音频, 视频, 文本)之外的部分文件也通过截图的方式实现预览, 如pdf, 但毕竟electron就是electron, 受限于性能, 这部分的预览只提供部分内容, 如pdf只预览第一页, 更多的内容通过原生预览操作
  • Loading branch information
lanyuanxiaoyao committed Sep 3, 2019
1 parent 2896993 commit ac1bcce
Show file tree
Hide file tree
Showing 14 changed files with 286 additions and 137 deletions.
4 changes: 4 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@ utools 插件, 用于在 macOS 提供与 Windows 中 Everything 插件类似的
另外科普一下, Everything 是基于 NTFS 文件系统的特性实现实时搜索, 在 macOS 上无论如何也是很难达到 Everything 的速度的, 所以插件直接使用了『回合制搜索』(即输入完成后需要按一下回车再开始搜索)而不是『实时搜索』, 反正也做不到干脆放弃.

# 版本
- `0.1.4`
插件预览可以预览非指定文件了!
1. 增加视频和音频文件的预览
2. 增加非指定文件的预览, 即在插件预览中除了原来的四大类型(图片, 音频, 视频, 文本)之外的部分文件也通过截图的方式实现预览, 如pdf, 但毕竟electron就是electron, 受限于性能, 这部分的预览只提供部分内容, 如pdf只预览第一页, 更多的内容通过原生预览操作
- `0.1.3`
1. 右键菜单增加复制文件和删除文件的操作, 对应快捷键`c``delete`
2. 增加在插件预览的时候, 鼠标可以直接操作搜索结果, 切换预览的文件
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "utools-find",
"version": "0.1.3",
"version": "0.1.4",
"private": true,
"scripts": {
"serve": "vue-cli-service serve",
Expand Down
Binary file modified public/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 1 addition & 1 deletion public/plugin.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"author": "lanyuanxiaoyao",
"homepage": "http://lanyuanxiaoyao.com",
"description": "Mac 上的 Everything",
"version": "0.1.3",
"version": "0.1.4",
"logo": "logo.png",
"main": "index.html",
"preload": "preload.js",
Expand Down
21 changes: 21 additions & 0 deletions public/preload.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit ac1bcce

Please sign in to comment.