From 1973789308604da716206dd220eaac75d73ebab9 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Wed, 9 Apr 2025 11:37:04 +0100 Subject: [PATCH 1/5] chore: documentation describing issue with obsidian-sync --- docs/.vitepress/config.mts | 1 + docs/faq/obsidian-sync.md | 3 +++ 2 files changed, 4 insertions(+) create mode 100644 docs/faq/obsidian-sync.md 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 From 2a9c6cadad045c0f7a8c616f8c4215f9682844f4 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Wed, 9 Apr 2025 14:33:30 +0100 Subject: [PATCH 2/5] docs: adding changelog entries --- CHANGELOG.md | 6 +++++- package.json | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 422b82f..173fdb9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ -# 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) + +# 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/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": { From 73dc96fd5fc64ce3214673fb181d14ab984bf588 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Thu, 10 Apr 2025 10:02:06 +0100 Subject: [PATCH 3/5] docs: added changelog for merged PRs --- CHANGELOG.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 173fdb9..6264aae 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ # 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) # 0.32.0 (2025-04-02) - feat: added text rendering for links, images and checkboxes (for MARKDOWN renderer) From 3d4a5f352fe9b013c4d15d0e926cfee0b1ccaf81 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Thu, 10 Apr 2025 10:02:35 +0100 Subject: [PATCH 4/5] chore: updated version --- manifest.json | 2 +- versions.json | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) 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/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 From 2dbb51246794930eb2ff7492164a744921a69639 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Thu, 10 Apr 2025 10:32:53 +0100 Subject: [PATCH 5/5] docs: added canvas fix to changelog --- CHANGELOG.md | 1 + 1 file changed, 1 insertion(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6264aae..8268b58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,7 @@ - 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)