mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
commit
cd0bcfd8e2
6 changed files with 16 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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'}
|
||||
|
||||
]
|
||||
|
|
|
|||
3
docs/faq/obsidian-sync.md
Normal file
3
docs/faq/obsidian-sync.md
Normal 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.
|
||||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in a new issue