diff --git a/CHANGELOG.md b/CHANGELOG.md index 422b82f..8268b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,11 @@ -# 0.31.0 (2025-04-02) +# 0.33.0 (2025-04-09) +- fix: better text links for images (by @satkowski) +- fix: lists are now rendered properly (by @satkowski) +- chore: exposing filename in the renderer (by @satkowski) +- fix: numbers are now properly handled (by @satkowski) +- fix: SQLSeal results are now properly rendered on canvas + +# 0.32.0 (2025-04-02) - feat: added text rendering for links, images and checkboxes (for MARKDOWN renderer) - fix: fixed issue with rendering numbers - fix: fixed how grid renders columns - now they automatically match content and don't truncate the text diff --git a/docs/.vitepress/config.mts b/docs/.vitepress/config.mts index 8905dcd..961e3a5 100644 --- a/docs/.vitepress/config.mts +++ b/docs/.vitepress/config.mts @@ -65,6 +65,7 @@ export default defineConfig({ text: 'FAQ', items: [ { text: 'Comparison with Dataview', link: '/faq/comparison-with-dataview' }, + { text: 'SQLSeal with Obsidian Sync', link: '/faq/obsidian-sync' }, { text: 'Understanding Tags', link: '/faq/understanding-tags'} ] diff --git a/docs/faq/obsidian-sync.md b/docs/faq/obsidian-sync.md new file mode 100644 index 0000000..2f79fad --- /dev/null +++ b/docs/faq/obsidian-sync.md @@ -0,0 +1,3 @@ +# Using SQLSeal with Obsidian Sync +It's been reported that SQLSeal does not work with Obsidian Sync due to file limit during synchronisation. Because of that the main script of the plugin is not getting synchronised. +The only workaround for now now is to copy `.obsidian/sql-seal/main.js` manually. You will need to do it after every plugin update you perform. \ No newline at end of file diff --git a/manifest.json b/manifest.json index d19f4d7..2b4638e 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "sqlseal", "name": "SQLSeal", - "version": "0.32.0", + "version": "0.33.0", "minAppVersion": "0.15.0", "description": "Use SQL in your notes to query your vault files and CSV content.", "author": "hypersphere", diff --git a/package.json b/package.json index 030dcfe..1710693 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlseal", - "version": "0.32.0", + "version": "0.33.0", "description": "A plugin for Obsidian that allows you to run SQL queries on your notes.", "main": "main.js", "scripts": { diff --git a/versions.json b/versions.json index c2b7c22..25e3cf8 100644 --- a/versions.json +++ b/versions.json @@ -58,5 +58,6 @@ "0.30.0": "0.15.0", "0.30.1": "0.15.0", "0.31.0": "0.15.0", - "0.32.0": "0.15.0" + "0.32.0": "0.15.0", + "0.33.0": "0.15.0" } \ No newline at end of file