Merge pull request #106 from h-sphere/fix/name-should-not-truncate-after-dot

feat: filenames are no longer truncated after the dots
This commit is contained in:
Kacper Kula 2025-03-15 15:41:49 +00:00 committed by GitHub
commit 79be354ca8
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.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

View file

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

View file

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

View file

@ -22,7 +22,7 @@ function fileData(file: TFile, { tags: _tags, ...frontmatter }: Record<string, a
...frontmatter,
id: file.path,
path: file.path,
name: file.name.replace(/\.[^/.]+$/, ""),
name: file.basename,
created_at: (new Date(file.stat.ctime)).toISOString(),
modified_at: (new Date(file.stat.mtime)).toISOString(),
file_size: file.stat.size

View file

@ -51,5 +51,6 @@
"0.27.0": "0.15.0",
"0.28.0": "0.15.0",
"0.28.1": "0.15.0",
"0.28.2": "0.15.0"
"0.28.2": "0.15.0",
"0.28.3": "0.15.0"
}