Skip to content

Commit

Permalink
[Bugfix] properly support alternative headings (#14)
Browse files Browse the repository at this point in the history
* Fix support for alternative section headings

* Bump version
  • Loading branch information
liamcain authored Apr 28, 2021
1 parent 32963d8 commit 4527594
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"id": "things-logbook",
"name": "Things Logbook",
"description": "Sync your Things.app Logbook with Daily Notes",
"version": "0.1.11",
"version": "0.1.12",
"author": "Liam Cain",
"authorUrl": "https://github.com/liamcain/",
"isDesktopOnly": true,
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "obsidian-things-logbook-plugin",
"version": "0.1.11",
"version": "0.1.12",
"description": "Sync Things.app Logbook with Obsidian",
"author": "liamcain",
"main": "main.js",
Expand Down
2 changes: 1 addition & 1 deletion src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ export default class ThingsLogbookPlugin extends Plugin {
await updateSection(
this.app,
dailyNote,
"## Logbook",
this.options.sectionHeading,
logbookRenderer.render(tasks)
);
}
Expand Down

0 comments on commit 4527594

Please sign in to comment.