Skip to content

Commit fabf70d

Browse files
committed
Merge branch 'beta'
2 parents 4814f85 + 4b63b46 commit fabf70d

File tree

4 files changed

+52
-1
lines changed

4 files changed

+52
-1
lines changed

components/Page/Sponsors.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ export const Sponsors: React.FunctionComponent<ISponsorsProps> = (props: React.P
7575
href={sponsor.url}
7676
title={sponsor.title}
7777
className="mt-6 col-span-1 flex justify-center">
78-
<img className={sponsor.id === "Struyf-Consulting" ? "h-[25px]" : "h-12"} src={sponsor.image} alt={sponsor.alt} />
78+
<img className={sponsor.class || "h-12"} src={sponsor.image} alt={sponsor.alt} />
7979
</a>
8080
))
8181
}

content/changelog/CHANGELOG.md

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

3+
## [10.10.0] - 2025-xx-xx
4+
5+
- [#969](https://github.com/estruyf/vscode-front-matter/issues/969): Fix typo on welcome screen
6+
7+
## [10.9.0] - 2025-07-01 - [Release notes](https://beta.frontmatter.codes/updates/v10.9.0)
8+
9+
### 🎨 Enhancements
10+
11+
- [#962](https://github.com/estruyf/vscode-front-matter/issues/962): Added Simplified Chinese localization thanks to [Randerion(HaoJun0823)](https://github.com/HaoJun0823)
12+
13+
### ⚡️ Optimizations
14+
15+
- [#922](https://github.com/estruyf/vscode-front-matter/issues/922): Added the `{{slugifiedFileName}}` for better naming
16+
17+
### 🐞 Fixes
18+
19+
- [#933](https://github.com/estruyf/vscode-front-matter/issues/933): Timezone setting integration in the DateTime field
20+
- [#942](https://github.com/estruyf/vscode-front-matter/issues/942): Fix to typo on welcome screen thanks to [Stephanie Wertman](https://github.com/stephanie-wertman)
21+
- [#957](https://github.com/estruyf/vscode-front-matter/issues/957): Fix media assets retrieval where `mtime` is not defined. Fallback to the `mtimeMs` property if available.
22+
323
## [10.8.0] - 2025-02-27 - [Release notes](https://beta.frontmatter.codes/updates/v10.8.0)
424

525
### 🎨 Enhancements
Lines changed: 21 additions & 0 deletions
Loading

sponsors.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,15 @@
2222
}
2323
],
2424
"companies": [
25+
{
26+
"url": "https://www.coderabbit.ai/?utm_source=frontmatter&utm_campaign=oss",
27+
"title": "Supported by CodeRabbit",
28+
"image": "/assets/sponsors/coderabbit-dark.svg",
29+
"id": "CodeRabbit",
30+
"alt": "CodeRabbit - AI Code Reviews",
31+
"class": "h-[35px]",
32+
"active": true
33+
},
2534
{
2635
"url": "https://run.events/?utm_source=frontmatter&utm_campaign=oss",
2736
"title": "Supported by run.events",
@@ -52,6 +61,7 @@
5261
"image": "/struyf-consulting.webp",
5362
"id": "Struyf-Consulting",
5463
"alt": "Struyf Consulting",
64+
"class": "h-[25px]",
5565
"active": true
5666
}
5767
]

0 commit comments

Comments
 (0)