Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 10 additions & 1 deletion .frontmatter/database/mediaDb.json
Original file line number Diff line number Diff line change
@@ -1 +1,10 @@
{"assets":{"v7.0.0":{"snippets-dashboard.png":{"caption":"Snippets dashboard","alt":"Snippets dashboard"}}}}
{
"assets": {
"v7.0.0": {
"snippets-dashboard.png": {
"alt": "Snippets dashboard",
"caption": "Snippets dashboard"
}
}
}
}
2 changes: 1 addition & 1 deletion .frontmatter/database/pinnedItemsDb.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}
2 changes: 1 addition & 1 deletion .frontmatter/database/taxonomyDb.json
Original file line number Diff line number Diff line change
@@ -1 +1 @@
{}
{}
14 changes: 14 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,19 @@
# Change Log

## [10.12.0] - 2026-08-21 - [Release notes](https://beta.frontmatter.codes/updates/v10.12.0)

### 🎨 Enhancements

- [#1053](https://github.com/estruyf/vscode-front-matter/issues/1053): Support pasting images directly into Markdown/MDX files
- [#1055](https://github.com/estruyf/vscode-front-matter/issues/1055): Added the `translate` property on content type fields to define which front matter fields need to be machine translated. The title and description fields are translated by default, set `translate: false` to exclude them
- The `.frontmatter/database` files are now stored in a human readable format with sorted keys, so that Git can merge them line by line instead of conflicting on a single line. Existing files are reformatted once, when the extension activates

### 🐞 Fixes

- [#1043](https://github.com/estruyf/vscode-front-matter/issues/1043): Fix issue with last modified date in content health freshness checks
- [#1054](https://github.com/estruyf/vscode-front-matter/issues/1054): Fix the "Could not retrieve the locale for the current file" error for multilingual content nested in subfolders (ex. `content/de/posts/2024/07/my-post/index.md`). Translations are now created with the same folder structure as the source file
- Show an error notification when one of the `.frontmatter/database` files contains invalid JSON or unresolved Git conflict markers, instead of failing silently

## [10.11.0] - 2026-07-02 - [Release notes](https://beta.frontmatter.codes/updates/v10.11.0)

### 🎨 Enhancements
Expand Down
19 changes: 18 additions & 1 deletion l10n/bundle.l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -236,6 +236,18 @@

"dashboard.media.dialog.title": "View details",
"dashboard.media.panel.close": "Close panel",
"dashboard.media.paste.title": "Paste media",
"dashboard.media.paste.description": "Browse to the folder you want to store the image in.",
"dashboard.media.paste.storeIn": "Store in: {0}",
"dashboard.media.paste.noFolder": "Select a folder to store the image in.",
"dashboard.media.paste.store": "Store image",
"dashboard.media.paste.storing": "Storing the image...",
"dashboard.media.paste.error": "The image could not be stored. Please try again.",
"dashboard.media.paste.saveAndInsert": "Save and insert",
"dashboard.media.paste.snippetTitle": "Insert the image",
"dashboard.media.paste.snippetDescription": "Select how you want to insert the image into your content.",
"dashboard.media.paste.snippetNone": "Without snippet",

"dashboard.media.metadata.panel.title": "Update metadata",
"dashboard.media.metadata.panel.description": "Please specify the metadata you want to set for the file.",
"dashboard.media.metadata.panel.field.fileName": "Filename",
Expand Down Expand Up @@ -751,6 +763,8 @@

"helpers.mediaLibrary.remove.warning": "The name \"{0}\" already exists at the file location.",
"helpers.mediaLibrary.remove.error": "Sorry, something went wrong updating \"{0}\" to \"{1}\".",
"helpers.jsonDbHelper.conflict.error": "The \"{0}\" file still contains Git conflict markers. Resolve the conflict in the file to make Front Matter read it again.",
"helpers.jsonDbHelper.parse.error": "The \"{0}\" file could not be read, as it does not contain valid JSON: {1}",

"helpers.openFileInEditor.error": "Couldn't open the file.",

Expand Down Expand Up @@ -856,5 +870,8 @@
"services.sponsorAi.getDescription.warning": "The AI description generation took too long. Please try again later.",
"services.sponsorAi.getTaxonomySuggestions.warning": "The AI taxonomy generation took too long. Please try again later.",

"services.terminal.openLocalServerTerminal.terminalOption.message": "Starting local server"
"services.terminal.openLocalServerTerminal.terminalOption.message": "Starting local server",

"providers.mediaPaste.title": "Insert media with Front Matter",
"providers.mediaPaste.saveFailed": "Front Matter: the pasted media could not be stored in \"{0}\"."
}
Loading
Loading