Skip to content

Releases: oleeskild/digitalgarden

Release 1.55.1

01 Oct 13:06
0a98901
Compare
Choose a tag to compare

Fixed image scaling on mobile

Images that would overflow on smaller screens, like on mobile, should be fixed.

Relese 1.55.0

30 Sep 15:47
Compare
Choose a tag to compare

Better theme flexibility

Some themes allow you to customize images and callouts with metadata after a "|" symbol. For example this in the ITS theme:
> [!infobox|wikipedia]
![[image.png|banner|200]]

This release adds support for this syntax. You also need to update the plugin for this to work properly.

Release 1.54.3

21 Sep 13:26
Compare
Choose a tag to compare

🐞 Bug squashing

Removed the nunjuck rendering of markdown files. Previously, if your file contained a text line on the form "{{ some text }}", it would crash due to nunjuck trying to render it. This could often happen when writing Latex expressions.

Release 1.54.2

09 Jul 22:15
Compare
Choose a tag to compare

🐞 Cosmetic bugfix

  • The fullscreen global graph would sometime flash for a moment when initially loading a page. This should no longer happen.

Release 1.54.1

26 Jun 14:51
a64f5e2
Compare
Choose a tag to compare

🐞 Bug squashing

  • Note icons on links should now work again (#184)
  • Searching tags defined in frontmatter was broken after version 1.53. It should now be working again. (#171)

Release 1.54.0

26 Jun 14:36
Compare
Choose a tag to compare

Linkify 🔗

  • URL-like text is now automatically converted to a clickable link (Issue 317)

Release 1.53.1

26 May 10:44
Compare
Choose a tag to compare

🐞 Bug squasing

  • SVGs should no longer break the styling of a note when embedded
  • Scaling images with the pipe operator (![[myimage.png|200]]) should now be working again.
  • Smaller images that previously would disappear should now appear again.

Release 1.53.0

23 May 20:26
48b7162
Compare
Choose a tag to compare

🔎 Search enhancements

The search should now be significantly faster, and support other languages aside from just english. It should also be much better at finding relevant pages.

Technical explanation:
Lunr.js has been replaced by FlexSearch. Additionally the search is no longer done serverside using serverless functions, but instead done locally on the user's browser using a generated search index formatted as json. The search index is only downloaded once, then cached in the user's localstorage. It will be re-downloaded as soon as a new build is triggered (i.e. a page has been published).
Additionally the 404 page redirection is handled in the build step. It is no longer dependent on vendor specific rewrite rules. This means the garden can very easily be deployed to any static site host provider.

Release 1.52.0

22 May 15:29
Compare
Choose a tag to compare

Bug squashing 🐛

  • The garden now uses a CDN that's available in China, meaning things like the note graph should also work when visiting from China (#156 by @1244919208)
  • Admonitions containing metadata like icon, and collapse should now render properly (#150 by @bayang)
  • Dataview queries that results in an empty result should no longer throw an error (#157 by @ransurf)
  • The plugin used to show the favicon was dependent on packages with known vulnerabilities. It has been replaced with an alternativ one. The npm packages should now contain zero known vulnerabilities (#159 by @anantshri)

Thanks to all the contributors for creating PRs that benefits everyone using the plugin 🙌

Release 1.51.0

02 May 15:32
370f0fe
Compare
Choose a tag to compare

The casing of folders and note names will no longer be changed. (Previously they were always Titlecased). (PR #143 by @codyburleson)