Skip to content

Releases: vertis/obsidian-image-layouts

0.15.4

11 Feb 15:08
Compare
Choose a tag to compare

[fix]: all the attempts at polyfills led to other errors. This uses a different package for reading.

0.15.3

11 Feb 13:20
Compare
Choose a tag to compare

[fix]: previous polyfilling attempts haven't worked, this one does. Unfortunately it's a bit heavy.

0.15.2

11 Feb 13:09
Compare
Choose a tag to compare

[fix]: another attempt at polyfilling based on: https://github.com/vitejs/vite/discussions/2785

0.15.1

11 Feb 13:00
Compare
Choose a tag to compare

[fix]: gray-matter doesn't work unless it has access to buffer, which it doesn't on Android - see jonschlinkert/gray-matter#143

0.15.0

09 Feb 21:21
Compare
Choose a tag to compare

[feat]: Tentative support for carousels - see documentation

0.14.2

09 Feb 19:34
Compare
Choose a tag to compare

[chore]: make it possible to set the permanent overlay in settings

0.14.1

09 Feb 17:38
Compare
Choose a tag to compare

[fix]: handle dark mode in the captions

0.14.0

09 Feb 14:42
Compare
Choose a tag to compare

fix: #10 the overlays were blocking clicks on the image and therefore stopping the Image Toolkit plugin from working
feat: #11 Overlay now takes the markdown [Text](image.jpg) if it exists and uses it as the overlay
feat: #11 added the ability to add permanentOverlay: true to the frontmatter and have the overlays show up permanently rather than on hover
feat: #11 captions and overlays now work on the Masory layouts

0.12.0

30 Jan 14:18
Compare
Choose a tag to compare

This release fixes an issue where markdown likes ![Image](image.jpg) wouldn't work with the local repository. It now checks for http and works correctly with this type of link.

0.11.0

28 Jan 13:43
Compare
Choose a tag to compare

Changelog

  • A single caption can now be added using YAML front matter, it will display below the images.
  • A list of image descriptions can be added as an Array to the YAML front matter, it should be ordered in the same way as the images. This is a bit clunky, but I'm not sure how to make it easier.

For example:

\```image-layout-b
---
caption: Image Layout B
descriptions:
  - Something
  - Another thing
---
![](https://images.unsplash.com/photo-1452065656801-6c60b6e7cbc5?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=3174&q=80)
![](https://images.unsplash.com/photo-1592634244339-809d45f1dd25?ixlib=rb-4.0.3&ixid=MnwxMjA3fDB8MHxzZWFyY2h8MjZ8fHNhaWxpbmd8ZW58MHx8MHx8&auto=format&fit=crop&w=900&q=60)
\```

Important

This is a pretty heavy rewrite into Svelte. It will allow future modification in the next few releases. If you notice any issues PLEASE report them.