Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Prep v10.5.0 release #871

Merged
merged 28 commits into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
6fd526e
Added eslint to webpack config
estruyf Sep 27, 2024
3d8c550
10.5.0
estruyf Sep 27, 2024
8d8e3fe
fix: typo
davidsneighbour Oct 2, 2024
179a71d
Merge pull request #861 from davidsneighbour/patch-1
estruyf Oct 5, 2024
aea87a6
feat: Add action to create or open translation file dynamically
wottpal Oct 7, 2024
ba1cf95
feat: Show slug in content relationship combobox option
wottpal Oct 7, 2024
2020198
fix: Fix issue of filtering incorrect content types
wottpal Oct 7, 2024
39704f3
feat: Add option to filter content relationship options by active locale
wottpal Oct 7, 2024
38f128e
Merge branch 'issue/850' of github.com:wottpal/vscode-front-matter in…
estruyf Oct 7, 2024
63ea564
#863 fix empty page folder cache
estruyf Oct 7, 2024
1c00362
Updated localization
estruyf Oct 7, 2024
d6dfa8c
Merge branch 'wottpal-issue/850' into beta
estruyf Oct 7, 2024
73609ca
Update changelog
estruyf Oct 7, 2024
17860a1
Merge branch 'issue/851' of github.com:wottpal/vscode-front-matter in…
estruyf Oct 7, 2024
a377f27
Update changelog
estruyf Oct 7, 2024
0f3c43e
Fix button styling on the data screen #858
estruyf Oct 8, 2024
4282ec8
Add excludePaths option #840
estruyf Oct 8, 2024
8c2d243
WIP
estruyf Oct 8, 2024
6d7df42
#840 - Fix win path
estruyf Oct 8, 2024
bdcd901
Merge branch 'beta' into issue/865
estruyf Oct 9, 2024
2269994
separate the wysiwyg field
estruyf Oct 9, 2024
8660f5f
Update type #840
estruyf Oct 9, 2024
3b7671a
Update schema
estruyf Oct 10, 2024
305c95f
Merge branch 'issue/865' into beta
estruyf Oct 10, 2024
fa3215f
Enhancement: Support Markdown in the WYSIWYG field #866
estruyf Oct 10, 2024
c11efa5
#870 NumField component styles
estruyf Oct 17, 2024
ceeb1bf
Updated changelog
estruyf Oct 21, 2024
0cb7d24
Update workflows
estruyf Oct 21, 2024
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
4 changes: 3 additions & 1 deletion .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@
"no-unused-expressions": "error",
"curly": "error",
"class-methods-use-this": "warn",
"no-console": "warn"
"no-console": "warn",
"@typescript-eslint/no-empty-interface": "off",
"no-extra-boolean-cast": "off"
}
}
2 changes: 1 addition & 1 deletion .github/actions/localization/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ runs:
steps:
- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-beta.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'

Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:

- uses: actions/setup-node@v4
with:
node-version: 18
node-version: 20
registry-url: https://registry.npmjs.org/
cache: 'npm'

Expand Down
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [10.5.0] - 2024-10-21 - [Release notes](https://beta.frontmatter.codes/updates/v10.5.0)

### 🎨 Enhancements

- [#840](https://github.com/estruyf/vscode-front-matter/issues/840): Added the `excludePaths` option for the content folder settings
- [#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))
- [#851](https://github.com/estruyf/vscode-front-matter/issues/851): Added `sameContentLocale` option to `contentRelationship` field (thanks to [Dennis Zoma](https://github.com/wottpal))
- [#866](https://github.com/estruyf/vscode-front-matter/issues/866): Support Markdown in the WYSIWYG `string` field

### 🐞 Fixes

- [#858](https://github.com/estruyf/vscode-front-matter/issues/858): Fix button styling on the data screen
- [#860](https://github.com/estruyf/vscode-front-matter/issues/860): Fix typo on the data screen
- [#870](https://github.com/estruyf/vscode-front-matter/issues/870): Fix data number field styling

## [10.4.1] - 2024-09-27

- [#855](https://github.com/estruyf/vscode-front-matter/issues/855): Fix in panel sections
Expand Down
9 changes: 7 additions & 2 deletions l10n/bundle.l10n.json
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@
"dashboard.dataView.dataView.selectDataFolder": "Select data folder",
"dashboard.dataView.dataView.closeSelectedDataFile": "Close data file",

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

"dashboard.dataView.sortableItem.editButton.title": "Edit \"{0}\"",
Expand Down Expand Up @@ -583,8 +583,13 @@
"commands.i18n.create.success.created": "Created \"{0}\" i18n content file.",
"commands.i18n.create.quickPick.title": "Create content for locale",
"commands.i18n.create.quickPick.placeHolder": "To which locale do you want to create a new content?",
"commands.i18n.createOrOpen.quickPick.title": "Open or create translation",
"commands.i18n.createOrOpen.quickPick.category.existing": "Existing translations",
"commands.i18n.createOrOpen.quickPick.action.open": "Open \"{0}\"",
"commands.i18n.createOrOpen.quickPick.category.new": "New translations",
"commands.i18n.createOrOpen.quickPick.action.create": "Create \"{0}\"",
"commands.i18n.translate.progress.title": "Translating content...",

"commands.preview.panel.title": "Preview: {0}",
"commands.preview.askUserToPickFolder.title": "Select the folder of the article to preview",

Expand Down
Loading
Loading