Skip to content

Releases: oleeskild/obsidian-digital-garden

Release 2.35.6

08 Feb 07:41
Compare
Choose a tag to compare
  • Removed Netlify reference (Closes #185)

Release 2.35.5

03 Feb 13:58
Compare
Choose a tag to compare
  • Fix bug where you would need to explicitly set a theme after installing the plugin for other settings to work

Release 2.35.4

27 Jan 09:55
Compare
Choose a tag to compare
  • Fix a bug where the following syntax in frontmatter would break the site: (#99)
tags:
 - []

Release 2.35.3

23 Jan 16:31
Compare
Choose a tag to compare
  • Fix issue where publication center wouldn't work if the branch name of the garden in GitHub was something different than "main" (Closes #171)

Release 2.35.2

21 Jan 10:54
Compare
Choose a tag to compare

Excalidraw enhancements

  • Fix issues that occured when drawings were in blockquotes
  • Add support for comressed drawings

Huge thanks to @Luke-zhang-04 for implementing this 🎉

Release 2.35.1

18 Jan 14:31
Compare
Choose a tag to compare

Fixes a bug where embedded images using the ![](image%20path.png) syntax would not work if the path had any spaces in it. (This fixes DigitalGarden PR 37)

Release 2.35.0

18 Jan 13:14
Compare
Choose a tag to compare

The favicon setting now shows a searchable dropdown menu with all svg files in the vault, to make it easier to input the correct file path.

Release 2.34.0

17 Jan 11:50
Compare
Choose a tag to compare

Previously you would get a build error when updating the template if any files had changed, and you hadn't updated to the latest plugin version first. This release fixes this, so that you are no longer dependent on having the latest plugin version when updating the template.

Release 2.33.0

09 Jan 17:15
Compare
Choose a tag to compare

Tag support

A new setting has been added, allowing you to show tags from your frontmatter at the top of a note.
If search is enabled, clicking a tag will bring up a search, showing all notes with the same tag.
Note that you will need to update the template as well for this to work.

Huge thanks to @uroybd for doing most of the work on this

Release 2.32.0

08 Jan 13:36
Compare
Choose a tag to compare

Support metatags

Adding a dg-meta-tag with key-value pairs as children to a note will now add those values as meta tags in your header.
Note that you also need to update the template to the latest version for this to work .

Example:

dg-meta-tags:
 description: "some description"
 "og:image": "https://imagelink...."

Thanks to @uroybd for the implementation