Skip to content

Commit 9d51531

Browse files
authored
Merge pull request #871 from estruyf/beta
Prep v10.5.0 release
2 parents 788d024 + 0cb7d24 commit 9d51531

File tree

141 files changed

+10343
-4353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

141 files changed

+10343
-4353
lines changed

.eslintrc.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313
"no-unused-expressions": "error",
1414
"curly": "error",
1515
"class-methods-use-this": "warn",
16-
"no-console": "warn"
16+
"no-console": "warn",
17+
"@typescript-eslint/no-empty-interface": "off",
18+
"no-extra-boolean-cast": "off"
1719
}
1820
}

.github/actions/localization/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ runs:
2020
steps:
2121
- uses: actions/setup-node@v4
2222
with:
23-
node-version: 18
23+
node-version: 20
2424
registry-url: https://registry.npmjs.org/
2525
cache: 'npm'
2626

.github/workflows/release-beta.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- uses: actions/setup-node@v4
4343
with:
44-
node-version: 18
44+
node-version: 20
4545
registry-url: https://registry.npmjs.org/
4646
cache: 'npm'
4747

@@ -69,7 +69,7 @@ jobs:
6969

7070
- uses: actions/setup-node@v4
7171
with:
72-
node-version: 18
72+
node-version: 20
7373
registry-url: https://registry.npmjs.org/
7474
cache: 'npm'
7575

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
- uses: actions/setup-node@v4
4343
with:
44-
node-version: 18
44+
node-version: 20
4545
registry-url: https://registry.npmjs.org/
4646
cache: 'npm'
4747

@@ -69,7 +69,7 @@ jobs:
6969

7070
- uses: actions/setup-node@v4
7171
with:
72-
node-version: 18
72+
node-version: 20
7373
registry-url: https://registry.npmjs.org/
7474
cache: 'npm'
7575

CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,20 @@
11
# Change Log
22

3+
## [10.5.0] - 2024-10-21 - [Release notes](https://beta.frontmatter.codes/updates/v10.5.0)
4+
5+
### 🎨 Enhancements
6+
7+
- [#840](https://github.com/estruyf/vscode-front-matter/issues/840): Added the `excludePaths` option for the content folder settings
8+
- [#850](https://github.com/estruyf/vscode-front-matter/issues/850): Extended the i18n/language button to open or create new language files (thanks to [Dennis Zoma](https://github.com/wottpal))
9+
- [#851](https://github.com/estruyf/vscode-front-matter/issues/851): Added `sameContentLocale` option to `contentRelationship` field (thanks to [Dennis Zoma](https://github.com/wottpal))
10+
- [#866](https://github.com/estruyf/vscode-front-matter/issues/866): Support Markdown in the WYSIWYG `string` field
11+
12+
### 🐞 Fixes
13+
14+
- [#858](https://github.com/estruyf/vscode-front-matter/issues/858): Fix button styling on the data screen
15+
- [#860](https://github.com/estruyf/vscode-front-matter/issues/860): Fix typo on the data screen
16+
- [#870](https://github.com/estruyf/vscode-front-matter/issues/870): Fix data number field styling
17+
318
## [10.4.1] - 2024-09-27
419

520
- [#855](https://github.com/estruyf/vscode-front-matter/issues/855): Fix in panel sections

l10n/bundle.l10n.json

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@
144144
"dashboard.dataView.dataView.selectDataFolder": "Select data folder",
145145
"dashboard.dataView.dataView.closeSelectedDataFile": "Close data file",
146146

147-
"dashboard.dataView.emptyView.heading": "Select your date type first",
147+
"dashboard.dataView.emptyView.heading": "Select your data type first",
148148
"dashboard.dataView.emptyView.heading.create": "Start by creating a new data file",
149149

150150
"dashboard.dataView.sortableItem.editButton.title": "Edit \"{0}\"",
@@ -583,8 +583,13 @@
583583
"commands.i18n.create.success.created": "Created \"{0}\" i18n content file.",
584584
"commands.i18n.create.quickPick.title": "Create content for locale",
585585
"commands.i18n.create.quickPick.placeHolder": "To which locale do you want to create a new content?",
586+
"commands.i18n.createOrOpen.quickPick.title": "Open or create translation",
587+
"commands.i18n.createOrOpen.quickPick.category.existing": "Existing translations",
588+
"commands.i18n.createOrOpen.quickPick.action.open": "Open \"{0}\"",
589+
"commands.i18n.createOrOpen.quickPick.category.new": "New translations",
590+
"commands.i18n.createOrOpen.quickPick.action.create": "Create \"{0}\"",
586591
"commands.i18n.translate.progress.title": "Translating content...",
587-
592+
588593
"commands.preview.panel.title": "Preview: {0}",
589594
"commands.preview.askUserToPickFolder.title": "Select the folder of the article to preview",
590595

0 commit comments

Comments
 (0)