Merge pull request #24 from h-sphere/fix/completed-reverse-flag

fix: fixing completed flag in tasks being reversed
This commit is contained in:
Kacper Kula 2024-12-20 14:02:00 +00:00 committed by GitHub
commit 0f4f381e1f
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
5 changed files with 8 additions and 4 deletions

View file

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

View file

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

View file

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

View file

@ -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];

View file

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