diff --git a/CHANGELOG.md b/CHANGELOG.md index 52cf6b3..046087f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,6 @@ +# 0.28.3 (2025-03-15) +- Fix: Filename field in files column no longer truncates name after dot + # 0.28.2 (2025-03-14) - Added ability to define default view (Grid, HTML or Markdown) - Added ability to configure default page size for the GRID view diff --git a/manifest.json b/manifest.json index 2ab39fd..56a2965 100644 --- a/manifest.json +++ b/manifest.json @@ -1,7 +1,7 @@ { "id": "sqlseal", "name": "SQLSeal", - "version": "0.28.2", + "version": "0.28.3", "minAppVersion": "0.15.0", "description": "Use SQL in your notes to query your vault files and CSV content.", "author": "hypersphere", diff --git a/package.json b/package.json index 371c3c4..0457d37 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "sqlseal", - "version": "0.28.2", + "version": "0.28.3", "description": "A plugin for Obsidian that allows you to run SQL queries on your notes.", "main": "main.js", "scripts": { diff --git a/src/vaultSync/tables/filesTable.ts b/src/vaultSync/tables/filesTable.ts index 58a57c0..d34b06c 100644 --- a/src/vaultSync/tables/filesTable.ts +++ b/src/vaultSync/tables/filesTable.ts @@ -22,7 +22,7 @@ function fileData(file: TFile, { tags: _tags, ...frontmatter }: Record