Skip to content

Commit

Permalink
Merge pull request #7 from GuoJikun/dev
Browse files Browse the repository at this point in the history
v0.4.0
  • Loading branch information
GuoJikun authored Nov 26, 2024
2 parents 7427521 + df6dbdd commit 5e5d964
Show file tree
Hide file tree
Showing 20 changed files with 686 additions and 353 deletions.
52 changes: 45 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,50 @@ pnpm tauri dev 运行项目
pnpm tauri build
```

## 支持预览文件
## TODO

> 未完全完成
> 带 √ 为已经完成
- Image: svg\png\apng\jpg\jpeg\gif\bmp\webp
- Markdown: md\markdown
- Doc: xlsx\xls\csv\ods\tsv\
- Syntx Highlight: txt\js\c++\h++\
- Font: ttf\otf\woff\woff2
- 支持的预览格式
- 图片:
- [x] svg
- [x] png
- [x] apng
- [x] jpg
- [x] jpeg
- [x] gif
- [x] bmp
- [x] webp
- Markdown:
- [x] md
- [x] markdown
- 文档:
- [ ] xlsx
- [ ] xls
- [ ] csv
- 代码文件(utf8):
- [x] html
- [x] css
- [x] js
- [x] ts
- [x] c
- [x] cpp
- [x] rs
- [x] py
- [x] json
- [x] yml
- 字体:
- [x] ttf
- [x] otf
- [x] woff
- [x] woff2
- 书籍:
- [x] pdf
- 压缩文件:
- [x] zip
- [ ] rar
- [ ] 7z
- 设置
- [ ] 支持格式的选择
- [ ] 版本显示以及更新
- [ ] 自启动
24 changes: 12 additions & 12 deletions index.html
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<link rel="icon" href="/favicon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
<!doctype html>
<html lang="zh_CN">
<head>
<meta charset="UTF-8" />
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Vite App</title>
</head>
<body>
<div id="app"></div>
<script type="module" src="/src/main.ts"></script>
</body>
</html>
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quicklook",
"version": "0.3.0",
"version": "0.4.0",
"description": "Windows 平台的文件预览工具",
"private": true,
"type": "module",
Expand Down
Loading

0 comments on commit 5e5d964

Please sign in to comment.