Skip to content

Commit 4b8aa44

Browse files
authored
Merge pull request #32 from FrontMatter/beta
Added v10.6.0 release notes
2 parents 21a02af + 893f180 commit 4b8aa44

File tree

7 files changed

+71
-12
lines changed

7 files changed

+71
-12
lines changed

.frontmatter/database/mediaDb.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

components/Links/TopLevelNavItem.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ export const TopLevelNavItem: React.FunctionComponent<React.PropsWithChildren<IT
1313
<Link
1414
href={href}
1515
title={title}
16-
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
16+
className="text-base font-medium text-whisper-500 hover:text-teal-500"
1717
rel={blank ? "noopener noreferrer" : ""}
1818
target={blank ? "_blank" : "_self"}
1919
>

components/Navigation/SocialNavigation.tsx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import * as React from 'react';
22
import { navigation } from '../../constants/navigation';
33
import { Stargazers } from '../GitHub/Stargazers';
44

5-
export interface ISocialNavigationProps {}
5+
export interface ISocialNavigationProps { }
66

77
export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> = (props: React.PropsWithChildren<ISocialNavigationProps>) => {
88
return (
@@ -15,19 +15,19 @@ export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> =
1515
<ul className='flex justify-center gap-6'>
1616
{navigation.social.map((item) => (
1717
<li key={item.name}>
18-
<a
19-
title={item.title}
20-
href={item.href}
21-
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
22-
target="_blank"
18+
<a
19+
title={item.title}
20+
href={item.href}
21+
className="text-base font-medium text-whisper-500 hover:text-teal-500"
22+
target="_blank"
2323
rel={`noopener noreferrer`}>
2424
<span className="sr-only">{item.name}</span>
2525
<item.icon className="h-6 w-6" aria-hidden="true" />
2626
</a>
2727
</li>
2828
))}
2929
</ul>
30-
30+
3131
<Stargazers />
3232
</nav>
3333
);

components/Page/Footer.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props
2929
<nav className="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer">
3030
{navigation.main.map((item) => (
3131
<div key={item.name} className="px-5 py-2">
32-
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
32+
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
3333
{item.name}
3434
</a>
3535
</div>
3636
))}
3737
{navigation.footer.map((item) => (
3838
<div key={item.name} className="px-5 py-2">
39-
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
39+
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
4040
{item.name}
4141
</a>
4242
</div>
@@ -60,7 +60,7 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props
6060

6161
<div className="mt-8 flex justify-center space-x-6">
6262
{navigation.social.map((item) => (
63-
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-gray-500" target="_blank" rel={`noopener noreferrer`}>
63+
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-teal-500" target="_blank" rel={`noopener noreferrer`}>
6464
<span className="sr-only">{item.name}</span>
6565
<item.icon className="h-6 w-6" aria-hidden="true" />
6666
</a>

content/changelog/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.6.0] - 2024-11-06 - [Release notes](https://beta.frontmatter.codes/updates/v10.6.0)
4+
5+
### 🎨 Enhancements
6+
7+
- [#878](https://github.com/estruyf/vscode-front-matter/issues/878): Allow the `select all` button to work on other pages when there is a selection present
8+
- [#882](https://github.com/estruyf/vscode-front-matter/issues/882): Dynamic evaluation of the `node` executable path
9+
- [#884](https://github.com/estruyf/vscode-front-matter/issues/884): Hide WYSIWYG actions when the file is in git diff mode
10+
11+
### 🐞 Fixes
12+
13+
- [#859](https://github.com/estruyf/vscode-front-matter/issues/859): Fix label in the data view dropdown field
14+
- [#876](https://github.com/estruyf/vscode-front-matter/issues/876): Fix snippet type on the snippet card
15+
- [#879](https://github.com/estruyf/vscode-front-matter/issues/879): Fix for auto updating last modified date on save
16+
- [#885](https://github.com/estruyf/vscode-front-matter/issues/885): Fix content relationship for none i18n content
17+
318
## [10.5.1] - 2024-10-23
419

520
### 🎨 Enhancements

content/changelog/v10.6.0.md

Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
---
2+
title: Version 10.6.0 release notes
3+
description: Discover the key updates in Version 10.6.0, including enhanced navigation, dynamic node path evaluation, and improved git diff mode functionality.
4+
date: 2024-11-06T09:53:37.985Z
5+
lastmod: 2024-11-06T09:53:47.913Z
6+
slug: v10.6.0
7+
fmContentType: changelog
8+
---
9+
10+
## Select all button works while navigating through pages
11+
12+
The `select all` button now works while navigating through pages. This means that if you have a selection present and you navigate to another page, you can still use the `select all` button or select individual articles.
13+
14+
![Select all when navigating through pages](/releases/v10.6.0/select-all.webp)
15+
16+
## Dynamic evaluation of the node executable path
17+
18+
The extension now dynamically tries to evaluate the `node` executable path. The extension tries to load the terminal profile which can be configured in one of the following settings:
19+
20+
- `terminal.integrated.automationProfile.<platform>`
21+
- `terminal.integrated.defaultProfile.<platform>`
22+
- `terminal.integrated.profiles.<platform>`
23+
- `terminal.integrated.shell.<platform>`
24+
25+
If the terminal profile is not found, the extension will use the default `node` executable path.
26+
27+
## Hide WYSIWYG actions when the file is in git diff mode
28+
29+
The WYSIWYG actions are now hidden when the file is in git diff mode. We have added this change so that you can make use of the git diff actions that VS Code provides.
30+
31+
## Related issues/enhancements
32+
33+
### 🎨 Enhancements
34+
35+
- [#878](https://github.com/estruyf/vscode-front-matter/issues/878): Allow the `select all` button to work on other pages when there is a selection present
36+
- [#882](https://github.com/estruyf/vscode-front-matter/issues/882): Dynamic evaluation of the `node` executable path
37+
- [#884](https://github.com/estruyf/vscode-front-matter/issues/884): Hide WYSIWYG actions when the file is in git diff mode
38+
39+
### 🐞 Fixes
40+
41+
- [#859](https://github.com/estruyf/vscode-front-matter/issues/859): Fix label in the data view dropdown field
42+
- [#876](https://github.com/estruyf/vscode-front-matter/issues/876): Fix snippet type on the snippet card
43+
- [#879](https://github.com/estruyf/vscode-front-matter/issues/879): Fix for auto updating last modified date on save
44+
- [#885](https://github.com/estruyf/vscode-front-matter/issues/885): Fix content relationship for none i18n content
14.4 KB
Binary file not shown.

0 commit comments

Comments
 (0)