mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
commit
96ff64cf49
5 changed files with 9 additions and 6 deletions
|
|
@ -1,5 +1,7 @@
|
|||
# Unreleased
|
||||
# 0.30.0 (2025-03-26)
|
||||
- feat: added ability to reference tables from the other files in `table()` functions
|
||||
- feat: added ability to reference tables by their header name
|
||||
- feat: new heading and heading_level columns in tasks table (by @kDCYorke)
|
||||
|
||||
# 0.29.0 (2025-03-19)
|
||||
- feat: LIST views with single column are rendered as a regular list (rather than nested one) (by @kDCYorke)
|
||||
|
|
|
|||
|
|
@ -48,8 +48,8 @@ Tasks table consists of the following columns:
|
|||
| `filePath` | (deprecated) same like `path`. Name changed for compatibility with other tables. Will get removed in the future versions | |
|
||||
| `checkbox` | Interactive checkbox for the task that can be clicked to toggle completion state | 0.29.0 |
|
||||
| `position` | Line number where the task appears in the original file | 0.29.0 |
|
||||
| `heading` | The name of the heading this task appears under (if any) | |
|
||||
| `heading_level` | The level of the heading this task appears under (if any), i.e., the number of # in the heading declaration | |
|
||||
| `heading` | The name of the heading this task appears under (if any) | 0.30.0 |
|
||||
| `heading_level` | The level of the heading this task appears under (if any), i.e., the number of # in the heading declaration | 0.30.0 |
|
||||
|
||||
### `links` table
|
||||
Table containing all the links between files.
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "sqlseal",
|
||||
"name": "SQLSeal",
|
||||
"version": "0.29.0",
|
||||
"version": "0.30.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.29.0",
|
||||
"version": "0.30.0",
|
||||
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -54,5 +54,6 @@
|
|||
"0.28.2": "0.15.0",
|
||||
"0.28.3": "0.15.0",
|
||||
"0.28.4": "0.15.0",
|
||||
"0.29.0": "0.15.0"
|
||||
"0.29.0": "0.15.0",
|
||||
"0.30.0": "0.15.0"
|
||||
}
|
||||
Loading…
Reference in a new issue