mirror of
https://github.com/h-sphere/sql-seal.git
synced 2026-07-22 10:10:28 +00:00
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:
commit
79be354ca8
5 changed files with 8 additions and 4 deletions
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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"
|
||||
}
|
||||
Loading…
Reference in a new issue