From 0fe0d284576b72e2f52e39a75b7a0e06f147a862 Mon Sep 17 00:00:00 2001 From: Kacper Kula Date: Sat, 15 Mar 2025 15:40:12 +0000 Subject: [PATCH] feat: filenames are no longer truncated after the dots --- CHANGELOG.md | 3 +++ manifest.json | 2 +- package.json | 2 +- src/vaultSync/tables/filesTable.ts | 2 +- versions.json | 3 ++- 5 files changed, 8 insertions(+), 4 deletions(-) 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