Skip to content

Commit

Permalink
release: 0.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
RyotaUshio committed Dec 25, 2023
1 parent 59761c4 commit 6cb40a0
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 8 deletions.
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.10.0",
"version": "0.10.1",
"minAppVersion": "1.3.5",
"description": "Enhance PDF viewer & embeds.",
"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.10.0",
"version": "0.10.1",
"description": "An Obsidian.md plugin to enhance PDF viewer & embeds.",
"scripts": {
"dev": "node esbuild.config.mjs",
Expand Down
6 changes: 2 additions & 4 deletions src/backlink.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,6 @@ export class BacklinkPanePDFPageTracker extends Component {
}

onload() {
console.log('load');
this.renderer.backlinkDom.filter = undefined;

const view = getExistingPDFViewOfFile(this.app, this.file);
Expand All @@ -93,7 +92,6 @@ export class BacklinkPanePDFPageTracker extends Component {
}

onunload() {
console.log('unload');
this.renderer.backlinkDom.filter = undefined;
this.updateBacklinkDom();
}
Expand Down Expand Up @@ -125,6 +123,6 @@ export class BacklinkPanePDFPageTracker extends Component {
const page = +params.get('page')!
return page === pageNumber;
}
return true;
return false;
}
}
}

0 comments on commit 6cb40a0

Please sign in to comment.