Skip to content

Commit

Permalink
release: 0.39.2
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Mar 22, 2024
1 parent c93c26e commit 7e44fab
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 6 deletions.
2 changes: 1 addition & 1 deletion manifest-beta.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "pdf-plus",
"name": "PDF++",
"version": "0.39.1",
"version": "0.39.2",
"minAppVersion": "1.4.16",
"description": "The most Obsidian-native PDF annotation tool ever.",
"author": "Ryota Ushio",
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"id": "pdf-plus",
"name": "PDF++",
"version": "0.39.1",
"version": "0.39.2",
"minAppVersion": "1.4.16",
"description": "The most Obsidian-native PDF annotation tool ever.",
"author": "Ryota Ushio",
Expand Down
4 changes: 2 additions & 2 deletions 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": "obsidian-pdf-plus",
"version": "0.39.1",
"version": "0.39.2",
"description": "The most Obsidian-native PDF annotation tool ever.",
"scripts": {
"dev": "node esbuild.config.mjs",
Expand Down
4 changes: 3 additions & 1 deletion src/pdf-backlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,9 @@ export class BacklinkPanePDFPageTracker extends PDFPlusComponent {
// Otherwise, it causes all the backlink file DOMs to be removed.
// https://github.com/RyotaUshio/obsidian-pdf-plus/issues/121
for (const resultEl of this.renderer.backlinkDom.el.querySelectorAll('.tree-item.search-result:not(:has( .search-result-file-match))')) {
resultEl.remove();
if (!resultEl.hasClass('is-collapsed')) {
resultEl.remove();
}
}
} else {
// The following rules work even when `this.renderer.collapseAll` is `true`.
Expand Down

0 comments on commit 7e44fab

Please sign in to comment.