Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:JackGruber/joplin-plugin-notelis…
Browse files Browse the repository at this point in the history
…tpreview into develop
  • Loading branch information
JackGruber committed Apr 9, 2024
2 parents 8d38c3d + 29168d6 commit 430b19d
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@

- Fix: Display HTML entities in preview #21
- Add: Thumbnail support for PDFs #15
- Fix: Images with mime type `image/jpg` are not displayed #22

## v0.4.1 (2024-02-17)

Expand Down
2 changes: 1 addition & 1 deletion src/manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 1,
"id": "io.github.jackgruber.notelistpreview",
"app_min_version": "2.13",
"app_min_version": "2.13.2",
"version": "0.4.1",
"name": "Note list (Preview)",
"description": "Displays a note preview in the note list",
Expand Down
1 change: 1 addition & 0 deletions src/notelist.ts
Original file line number Diff line number Diff line change
Expand Up @@ -918,6 +918,7 @@ class Notelist {
if (
resourceItem.mime.includes("image/png") ||
resourceItem.mime.includes("image/jpeg") ||
resourceItem.mime.includes("image/jpg") ||
resourceItem.mime.includes("application/pdf")
) {
thumbnailPath = await this.genResourcePreviewImage(
Expand Down

0 comments on commit 430b19d

Please sign in to comment.