Merge branch 'main' into feat/comments-and-more-coloring

This commit is contained in:
Kacper Kula 2025-02-17 10:11:30 +00:00
commit 774fc57249
4 changed files with 6 additions and 4 deletions

View file

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

View file

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

View file

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

View file

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