Skip to content

Commit

Permalink
fix bug
Browse files Browse the repository at this point in the history
  • Loading branch information
troyeguo committed Sep 2, 2023
1 parent 714d0b1 commit 12299d4
Show file tree
Hide file tree
Showing 14 changed files with 15,680 additions and 6 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

- Format support:
- EPUB (**.epub**)
- Scanned document (**.pdf**)
- Scanned document (**.pdf**, **.djvu**)
- DRM-free Mobipocket (**.mobi**) and Kindle (**.azw3**, **.azw**)
- Plain text (**.txt**)
- FictionBook (**.fb2**)
Expand Down
2 changes: 1 addition & 1 deletion README_cn.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@

- 支持阅读格式:
- EPUB (**.epub**)
- 扫描文档 (**.pdf**)
- 扫描文档 (**.pdf**, **.djvu**)
- Kindle (**.azw3**, **.mobi**, **.azw**)
- 纯文本 (**.txt**)
- 漫画 (**.cbr**, **.cbz**, **.cbt**, **.cb7**)
Expand Down
2 changes: 1 addition & 1 deletion README_pt.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@

- Formatos suportados:
- EPUB (**.epub**)
- Documento scaneados (**.pdf**)
- Documento scaneados (**.pdf**, **.djvu**)
- Formato sem DRM (**.mobi**) e Kindle (**.azw3**, **.azw**)
- Texto puro (**.txt**)
- FictionBook (**.fb2**)
Expand Down
6 changes: 6 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -120,6 +120,12 @@
"role": "Viewer",
"mimeType": "application/pdf"
},
{
"ext": "djvu",
"icon": "assets/icons/pdf",
"role": "Viewer",
"mimeType": "image/vnd.djvu"
},
{
"ext": "mobi",
"icon": "assets/icons/mobi",
Expand Down
5 changes: 5 additions & 0 deletions public/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,11 @@
type="text/javascript"
src="%PUBLIC_URL%/lib/Rangy/rangy-textrange.js"
></script>
<script type="text/javascript" src="%PUBLIC_URL%/lib/djvu/djvu.js"></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/djvu/djvu_viewer.js"
></script>
<script
type="text/javascript"
src="%PUBLIC_URL%/lib/Hammer/hammer.min.js"
Expand Down
Loading

0 comments on commit 12299d4

Please sign in to comment.