Skip to content

Commit 4823520

Browse files
committed
Added release notes
1 parent 97b3969 commit 4823520

File tree

11 files changed

+133
-30
lines changed

11 files changed

+133
-30
lines changed

content/changelog/v10.0.0.md

Lines changed: 107 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,107 @@
1+
---
2+
title: Version 10.0.0 release notes
3+
description: Discover the highly anticipated multilingual support in version 10.0.0 of our CMS, allowing you to manage content in multiple languages.
4+
date: 2024-02-22T12:13:07.119Z
5+
lastmod: 2024-02-22T12:31:03.966Z
6+
slug: v10.0.0
7+
type: changelog
8+
---
9+
10+
## Multilingual/i18n support
11+
12+
Probably the most requested feature is finally here: multilingual support.
13+
You can now define the languages and use the CMS to manage your content in multiple languages.
14+
15+
![Multilingual content](/releases/v10.0.0/multilingual-content.png)
16+
17+
The CMS also integrated its first third-party service to provide automatic translations
18+
for your content. In this release, we added support for [DeepL](https://www.deepl.com).
19+
20+
> **Info**: More information can be found in the [multilingual documentation](/docs/content-creation/multilingual).
21+
22+
## New taxonomy view to tag/untag taxonomy to multiple pages
23+
24+
We added a new taxonomy view action that allows you to tag/untag taxonomy to multiple pages at once.
25+
26+
![Tag your taxonomy](/releases/v10.0.0/taxonomy-tagging.webp)
27+
28+
> **Info**: More information can be found in the [taxonomy documentation](/docs/taxonomy-view#tag-content).
29+
30+
## Media Content Types
31+
32+
We had the request where users wanted to add custom metadata to their media files.
33+
In this version, we added support for content types for media files.
34+
35+
```json {{ "title": "Example of defining media content types" }}
36+
{
37+
"frontMatter.media.contentTypes": [{
38+
"name": "default",
39+
"fileTypes": ["png", "jpg", "jpeg", "gif"],
40+
"fields": [{
41+
"title": "Title",
42+
"name": "title",
43+
"type": "string"
44+
},
45+
{
46+
"title": "Author",
47+
"name": "author",
48+
"type": "string"
49+
},
50+
{
51+
"title": "Alt text",
52+
"name": "alt",
53+
"type": "string"
54+
}
55+
]
56+
}]
57+
}
58+
```
59+
60+
> **Info**: More information can be found in the [media content types documentation](/docs/dashboard/media-view#media-content-types).
61+
62+
## Define the content filters
63+
64+
You can now define the content filters that should be available in the CMS.
65+
66+
```json {{ "title": "Example of adding custom filters" }}
67+
{
68+
"frontMatter.content.filters": [
69+
"contentFolders",
70+
"tags",
71+
{
72+
"title": "My custom filter",
73+
"name": "field-name",
74+
}
75+
]
76+
}
77+
```
78+
79+
> **Info**: More information can be found in the [content filters documentation](/docs/dashboard/content-view#filters).
80+
81+
## Related issues/enhancements
82+
83+
### ✨ New features
84+
85+
- [#731](https://github.com/estruyf/vscode-front-matter/issues/731): Added the ability to map/unmap taxonomy to multiple pages at once
86+
- [#746](https://github.com/estruyf/vscode-front-matter/issues/746): Placeholder support added to to the `slug` field
87+
- [#749](https://github.com/estruyf/vscode-front-matter/issues/749): Ability to set your own filters on the content dashboard with the `frontMatter.content.filters` setting
88+
- [[#756](https://github.com/estruyf/vscode-front-matter/issues/756): i18n/multilingual content support
89+
90+
### 🎨 Enhancements
91+
92+
- [#673](https://github.com/estruyf/vscode-front-matter/pull/673): Added git settings to the welcome view and settings view
93+
- [#727](https://github.com/estruyf/vscode-front-matter/pull/727): Updated Japanese translations thanks to [mayumihara](https://github.com/mayumih387)
94+
- [#737](https://github.com/estruyf/vscode-front-matter/issues/737): Optimize the grid layout of the content and media dashboards
95+
- [#739](https://github.com/estruyf/vscode-front-matter/pull/739): New Git settings to disable and require a commit message
96+
- [#741](https://github.com/estruyf/vscode-front-matter/issues/741): Added message on the content dashboard when content is processed
97+
- [#747](https://github.com/estruyf/vscode-front-matter/issues/747): The `@frontmatter/extensibility` dependency now supports scripts for placeholders
98+
- [#752](https://github.com/estruyf/vscode-front-matter/issues/752): Placeholder support in default `list` field values
99+
100+
### 🐞 Fixes
101+
102+
- [#721](https://github.com/estruyf/vscode-front-matter/issues/721): Fix keywords regex to support unicode characters
103+
- [#725](https://github.com/estruyf/vscode-front-matter/issues/725): Fix for opening menu of pinned items
104+
- [#730](https://github.com/estruyf/vscode-front-matter/issues/730): Add debounce to the input fields
105+
- [#738](https://github.com/estruyf/vscode-front-matter/issues/738): Fix when re-opening the preview after closing it
106+
- [#743](https://github.com/estruyf/vscode-front-matter/issues/743): Fix for storing data in YAML data files
107+
- [#745](https://github.com/estruyf/vscode-front-matter/issues/745): Fix for date field values in `block` field type

content/changelog/v5.0.0.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
---
22
title: Version 5.0.0 release notes
33
description: In this v5.0.0 release of Front Matter we got some great new features to announce to you.
4-
date: '2021-10-07T12:15:27.770Z'
5-
lastmod: '2021-10-07T12:15:28.335Z'
4+
date: 2021-10-07T12:15:27.770Z
5+
lastmod: 2024-02-22T12:26:18.361Z
66
---
77

88
## Media dashboard redesigned + additional features
@@ -13,7 +13,7 @@ The media dashboard has been redesigned to have better folder support. It now al
1313

1414
### Metadata support for media files
1515

16-
You are now able to add your own metadata to the media files. This functionality comes in handy when you use it in combination with a snippet to insert your media files. More information at: [media view](/docs/dashboard#media-view).
16+
You are now able to add your own metadata to the media files. This functionality comes in handy when you use it in combination with a snippet to insert your media files. More information at: [media view](/docs/dashboard/media-view).
1717

1818
#### Setting metadata for media files
1919

content/changelog/v8.0.0.md

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Version 8.0.0 release notes
33
description: Check out the new features that version 8.0.0 of Front Matter has to offer.
44
date: 2022-07-11T12:06:13.215Z
5-
lastmod: 2022-07-11T12:06:13.594Z
5+
lastmod: 2024-02-22T12:23:43.986Z
66
type: changelog
77
alias:
88
- release-notes-v8
@@ -12,13 +12,13 @@ slug: v8.0.0
1212

1313
## Taxonomy dashboard
1414

15-
The taxonomy view is a powerful way to manage your taxonomy like categories, tags, or any other taxonomy.
15+
The taxonomy view is a powerful way to manage your taxonomy like categories, tags, or any other taxonomy.
1616

1717
On the taxonomy view, you can create, edit, delete, and move taxonomy terms from one type to another.
1818

1919
![Taxonomy dashboard view](/releases/v8.0.0/taxonomy-dashboard-changelog.png)
2020

21-
> **Info**: Read more about it in the [taxonomy view](/docs/dashboard#taxonomy-view) section.
21+
> **Info**: Read more about it in the [taxonomy view](/docs/dashboard/taxonomy-view) section.
2222
2323
## List field
2424

@@ -36,7 +36,6 @@ Previously, from the actions section in the Front Matter panel, you had the opti
3636

3737
> **Info**: Read more about it in the [slug field](/docs/content-creation/fields#slug) section.
3838
39-
4039
## Link a template to a content type
4140

4241
Since content types became the prefered option to create new content with Front Matter, we have introduced the ability to link a template to a content type. This is useful if you have some pre-defined content that you need to use in the content/pages you are creating.
@@ -45,7 +44,6 @@ Since content types became the prefered option to create new content with Front
4544

4645
> **Info**: Read more about it in the [using a template with the content type](/docs/content-creation/content-types#using-a-template-with-the-content-type) section.
4746
48-
4947
## Preview path configuration property for page folders
5048

5149
In this version we introduced a new `previewPath` property on the page folder setting level. This property allows you to define a custom preview path for all the pages in the given folder.
@@ -54,14 +52,12 @@ In this version we introduced a new `previewPath` property on the page folder se
5452

5553
With this change, you can now define the preview path on three levels: globally, on page folder level, and on content type level.
5654

57-
5855
## Media dashboard improvements
5956

6057
The media dashboard has been improved to group the folders/files by their type and parent folder.
6158

6259
![Media dashboard grouping](/releases/v8.0.0/media-dashboard-changelog.png)
6360

64-
6561
## Related issues/enhancements
6662

6763
### ✨ New Features
@@ -85,4 +81,4 @@ The media dashboard has been improved to group the folders/files by their type a
8581
- [#356](https://github.com/estruyf/vscode-front-matter/issues/356): Re-introduce the `labelField` to the `frontMatter.taxonomy.fieldGroups` setting
8682
- [#358](https://github.com/estruyf/vscode-front-matter/issues/358): Fix for relative path of the public folder
8783
- [#364](https://github.com/estruyf/vscode-front-matter/issues/364): Honour file ending rules in data files
88-
- [#365](https://github.com/estruyf/vscode-front-matter/issues/365): Show spinner on the initial load of the content dashboard
84+
- [#365](https://github.com/estruyf/vscode-front-matter/issues/365): Show spinner on the initial load of the content dashboard

content/changelog/v8.2.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Version 8.2.0 release notes
33
description: Check out the features/enhancements/fixes that we packed in version 8.2.0 of Front Matter.
44
date: 2022-12-08T15:45:51.509Z
5-
lastmod: 2023-03-25T20:24:45.405Z
5+
lastmod: 2024-02-22T12:25:46.273Z
66
type: changelog
77
alias:
88
- release-notes-v8.1
@@ -35,7 +35,7 @@ The `frontMatter.content.pageFolders` setting has two new properties which can b
3535

3636
Single data entry files are now supported. This means that you can now have a data file that contains a single entry, instead of an array of entries.
3737

38-
> **Info**: For more info, check out the [Data files](/docs/datafiles-view#creating-a-data-file) documentation.
38+
> **Info**: For more info, check out the [Data files](/doc/dashboard/datafiles-view#creating-a-data-file) documentation.
3939
4040
## Improved UX for inserting media files to your content
4141

content/changelog/v8.4.0.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Version 8.4.0 release notes
33
description: Get ready to level up your Front Matter CMS experience with the latest 8.4.0 release! 🚀 We've packed this update with a ton of new features including support for external UI scripts, implementation of Front Matter AI powered by mendable.ai, added taxonomy AI suggestions for GitHub sponsors, and more! 💪
44
date: 2023-04-03T15:00:03.981Z
5-
lastmod: 2023-12-12T15:37:03.329Z
5+
lastmod: 2024-02-22T12:25:49.096Z
66
slug: v8.4.0
77
type: changelog
88
---
@@ -134,7 +134,7 @@ In this release, we've added support for multiline strings support in the data v
134134
}
135135
```
136136

137-
> More information can be found in the [data view documentation](/docs/datafiles-view#defining-a-data-schema).
137+
> More information can be found in the [data view documentation](/docs/dashboard/datafiles-view#defining-a-data-schema).
138138
139139
## Support for Astro
140140

content/docs/dashboard/content-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Content view
3-
slug: content-view
3+
slug: dashboard/content-view
44
description: null
55
date: 2022-11-28T14:55:04.221Z
6-
lastmod: 2024-02-22T10:46:27.387Z
6+
lastmod: 2024-02-22T12:24:21.051Z
77
weight: 300.1
88
---
99

content/docs/dashboard/datafiles-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Data files view
3-
slug: datafiles-view
3+
slug: dashboard/datafiles-view
44
description: null
55
date: 2022-11-28T14:55:04.221Z
6-
lastmod: 2023-04-01T09:56:59.435Z
6+
lastmod: 2024-02-22T12:23:03.653Z
77
weight: 300.3
88
---
99

content/docs/dashboard/media-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Media view
3-
slug: media-view
3+
slug: dashboard/media-view
44
description: null
55
date: 2022-11-28T14:55:04.221Z
6-
lastmod: 2024-02-22T12:11:35.782Z
6+
lastmod: 2024-02-22T12:23:07.490Z
77
weight: 300.2
88
---
99

content/docs/dashboard/taxonomy-view.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
22
title: Taxonomy view
3-
slug: taxonomy-view
3+
slug: dashboard/taxonomy-view
44
description: null
55
date: 2022-11-28T14:55:04.221Z
6-
lastmod: 2024-02-22T10:00:42.445Z
6+
lastmod: 2024-02-22T12:23:10.461Z
77
weight: 300.4
88
---
99

content/docs/settings/available-settings.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: Settings overview
33
slug: settings/overview
44
description: null
55
date: 2023-02-13T16:44:09.618Z
6-
lastmod: 2024-02-22T12:11:12.333Z
6+
lastmod: 2024-02-22T12:27:07.174Z
77
weight: 1100.2
88
---
99

@@ -824,8 +824,8 @@ This setting is used to define the modified date field of your articles.
824824
[06]: /docs/content-creation/content-folders
825825
[07]: /docs/content-creation/placeholders
826826
[08]: /docs/custom-actions
827-
[09]: /docs/dashboard#card-tags
828-
[10]: /docs/dashboard#data-files-view
827+
[09]: /docs/dashboard/content-view#card-tags
828+
[10]: /docs/dashboard/content-view#data-files-view
829829
[11]: /docs/content-creation/additional-config#preserve-casing-of-file-names
830830
[12]: /docs/panel#define-view-modes
831831
[13]: /docs/content-creation/content-types#changing-the-default-content-type
@@ -837,7 +837,7 @@ This setting is used to define the modified date field of your articles.
837837
[19]: /docs/snippets#snippet-wrapper
838838
[20]: /docs/settings#extending-with-code
839839
[21]: /docs/content-creation/multilingual
840-
[22]: /docs/content-view#sorting
841-
[23]: /docs/content-view#filters
842-
[24]: /docs/media-view#metadata
843-
[25]: /docs/media-view#define-the-media-folder
840+
[22]: /docs/dashboard/content-view#sorting
841+
[23]: /docs/dashboard/content-view#filters
842+
[24]: /docs/dashboard/media-view#metadata
843+
[25]: /docs/dashboard/media-view#define-the-media-folder

0 commit comments

Comments
 (0)