Skip to content

Commit 5eef591

Browse files
committed
Merge branch 'beta'
2 parents 33d4c06 + a8c2f15 commit 5eef591

File tree

4 files changed

+69
-1
lines changed

4 files changed

+69
-1
lines changed

components/Page/Sponsors.tsx

+22
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ import { useEffect, useState } from 'react';
44
import { useTranslation } from 'react-i18next';
55
import { Sponsor, SponsorData } from '../../models/SponsorData';
66
import sponsors from '../../sponsors.json';
7+
import contributors from '../../contributors.json';
78
import { CONFIG } from '../../constants';
89

910
export interface ISponsorsProps { }
@@ -82,6 +83,27 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
8283
)
8384
}
8485
</div>
86+
87+
<div className="max-w-7xl mx-auto pt-12 px-4 sm:px-6 lg:px-8 xl:px-0">
88+
<p className="text-center text-sm font-semibold uppercase text-whisper-900 tracking-wide">
89+
{strings(`contributors_title`) as string}
90+
<div className="flex justify-center space-x-4 flex-wrap">
91+
{
92+
contributors.map((contributor) => (
93+
<a
94+
key={contributor.id}
95+
target={`_blank`}
96+
rel={`noopener noreferrer`}
97+
href={contributor.url}
98+
title={contributor.name}
99+
className="mt-6 col-span-1 flex justify-center">
100+
<img className="h-12 rounded-full border-[2px] border-white" src={contributor.avatar} alt={contributor.name} />
101+
</a>
102+
))
103+
}
104+
</div>
105+
</p>
106+
</div>
85107
</div>
86108
);
87109
};

content/changelog/CHANGELOG.md

+28-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,27 @@
11
# Change Log
22

3-
## [10.4.0] - 2024-xx-xx
3+
## [10.5.0] - 2024-xx-xx
4+
5+
### ✨ New features
6+
7+
### 🎨 Enhancements
8+
9+
- [#840](https://github.com/estruyf/vscode-front-matter/issues/840): Added the `excludePaths` option for the content folder settings
10+
- [#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))
11+
- [#851](https://github.com/estruyf/vscode-front-matter/issues/851): Added `sameContentLocale` option to `contentRelationship` field (thanks to [Dennis Zoma](https://github.com/wottpal))
12+
13+
### ⚡️ Optimizations
14+
15+
### 🐞 Fixes
16+
17+
- [#858](https://github.com/estruyf/vscode-front-matter/issues/858): Fix button styling on the data screen
18+
- [#860](https://github.com/estruyf/vscode-front-matter/issues/860): Fix typo on the data screen
19+
20+
## [10.4.1] - 2024-09-27
21+
22+
- [#855](https://github.com/estruyf/vscode-front-matter/issues/855): Fix in panel sections
23+
24+
## [10.4.0] - 2024-09-25 - [Release notes](https://beta.frontmatter.codes/updates/v10.4.0)
425

526
### ✨ New features
627

@@ -18,6 +39,12 @@
1839

1940
- [#842](https://github.com/estruyf/vscode-front-matter/issues/842): Allow to set the `frontMatter.taxonomy.slugTemplate` setting to an empty string
2041
- [#845](https://github.com/estruyf/vscode-front-matter/issues/845): Fix empty values for number fields
42+
- [#849](https://github.com/estruyf/vscode-front-matter/issues/849): Show fields which are not empty in the metadata panel
43+
- [#853](https://github.com/estruyf/vscode-front-matter/issues/853): Allow empty values in date fields
44+
45+
### 🚧 Work in progress
46+
47+
- [#837](https://github.com/estruyf/vscode-front-matter/issues/837): Replacing the VSCode Webview UI Toolkit with [vscrui](https://github.com/estruyf/vscrui) due to the deprecation of the VSCode Webview UI Toolkit library
2148

2249
## [10.3.0] - 2024-08-13 - [Release notes](https://beta.frontmatter.codes/updates/v10.3.0)
2350

contributors.json

+16
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
[{
2+
"id": "wottpal",
3+
"url": "https://zoma.dev/",
4+
"name": "Dennis Zoma",
5+
"avatar": "https://avatars.githubusercontent.com/u/3930150?v=4"
6+
}, {
7+
"id": "davidsneighbour",
8+
"url": "https://github.com/davidsneighbour",
9+
"name": "Patrick Kollitsch",
10+
"avatar": "https://avatars.githubusercontent.com/u/83281?v=4"
11+
}, {
12+
"id": "mayumih387",
13+
"url": "https://github.com/mayumih387",
14+
"name": "mayumihara",
15+
"avatar": "https://avatars.githubusercontent.com/u/67089907?v=4"
16+
}]

locale/en.ts

+3
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,9 @@ export const strings = {
8888
// Sponsors
8989
sponsors_title: "Special thanks to our backers & sponsors",
9090

91+
// Contributors
92+
contributors_title: "Contributors",
93+
9194
// Documentation
9295
documentation_title: "Documentation",
9396
documentation_description: `Get to know more about how you can use ${Extension.name} with our documentation.`,

0 commit comments

Comments
 (0)