Merge pull request #144 from h-sphere/release/0.33.0

Release 0.33.0
This commit is contained in:
Kacper Kula 2025-04-10 10:33:45 +01:00 committed by GitHub
commit cd0bcfd8e2
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
6 changed files with 16 additions and 4 deletions

View file

@ -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

View file

@ -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'}
]

View file

@ -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.

View file

@ -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",

View file

@ -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": {

View file

@ -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"
}