mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
Merge branch 'main' into feat/comments-and-more-coloring
This commit is contained in:
commit
774fc57249
4 changed files with 6 additions and 4 deletions
|
|
@ -1,4 +1,5 @@
|
|||
# Unreleased
|
||||
# 0.26.0 (2025-02-16)
|
||||
- Better language parser! Reworked from the ground up, now SQLSeal uses Ohm.js parser which works much better and opens much more possibilities (like syntax highlighting also introduced in this version).
|
||||
- Syntax highlighting! Your SQLSeal text is now being highlighted helping you spot potential syntax issues quickly. The highlighting will be iterated on so please join discussion on our Discord!
|
||||
- fix: database did not load properly when vault name consisted spaces or was in the subfolder (mostly causing issue on mobile)
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "sqlseal",
|
||||
"name": "SQLSeal",
|
||||
"version": "0.25.0",
|
||||
"version": "0.26.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.25.0",
|
||||
"version": "0.26.0",
|
||||
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -46,5 +46,6 @@
|
|||
"0.24.0": "0.15.0",
|
||||
"0.24.1": "0.15.0",
|
||||
"0.24.2": "0.15.0",
|
||||
"0.25.0": "0.15.0"
|
||||
"0.25.0": "0.15.0",
|
||||
"0.26.0": "0.15.0"
|
||||
}
|
||||
Loading…
Reference in a new issue