mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
fix: fixing completed flag in tasks being reversed
This commit is contained in:
parent
6b14843516
commit
098a832a75
5 changed files with 8 additions and 4 deletions
|
|
@ -1,3 +1,6 @@
|
|||
# 0.12.3
|
||||
- fix: Fixing completed flag in tasks being reversed
|
||||
|
||||
# 0.12.2
|
||||
fix: Fixed issue with CTE table names being incorrectly processed causing error
|
||||
|
||||
|
|
|
|||
|
|
@ -1,7 +1,7 @@
|
|||
{
|
||||
"id": "sqlseal",
|
||||
"name": "SQLSeal",
|
||||
"version": "0.12.2",
|
||||
"version": "0.12.3",
|
||||
"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.12.2",
|
||||
"version": "0.12.3",
|
||||
"description": "A plugin for Obsidian that allows you to run SQL queries on your notes.",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -29,7 +29,7 @@ export class TasksFileSyncTable extends AFileSyncTable {
|
|||
// Check if it's a task
|
||||
if (!listItem.task) return;
|
||||
|
||||
const status = listItem.task === ' '
|
||||
const status = listItem.task !== ' '
|
||||
|
||||
// Get the full line content
|
||||
const lineContent = lines[listItem.position.start.line];
|
||||
|
|
|
|||
|
|
@ -16,5 +16,6 @@
|
|||
"0.11.0": "0.15.0",
|
||||
"0.12.0": "0.15.0",
|
||||
"0.12.1": "0.15.0",
|
||||
"0.12.2": "0.15.0"
|
||||
"0.12.2": "0.15.0",
|
||||
"0.12.3": "0.15.0"
|
||||
}
|
||||
Loading…
Reference in a new issue