Skip to content

Commit

Permalink
Merge pull request #32 from FrontMatter/beta
Browse files Browse the repository at this point in the history
Added v10.6.0 release notes
  • Loading branch information
estruyf authored Nov 6, 2024
2 parents 21a02af + 893f180 commit 4b8aa44
Show file tree
Hide file tree
Showing 7 changed files with 71 additions and 12 deletions.
2 changes: 1 addition & 1 deletion .frontmatter/database/mediaDb.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion components/Links/TopLevelNavItem.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export const TopLevelNavItem: React.FunctionComponent<React.PropsWithChildren<IT
<Link
href={href}
title={title}
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
className="text-base font-medium text-whisper-500 hover:text-teal-500"
rel={blank ? "noopener noreferrer" : ""}
target={blank ? "_blank" : "_self"}
>
Expand Down
14 changes: 7 additions & 7 deletions components/Navigation/SocialNavigation.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import * as React from 'react';
import { navigation } from '../../constants/navigation';
import { Stargazers } from '../GitHub/Stargazers';

export interface ISocialNavigationProps {}
export interface ISocialNavigationProps { }

export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> = (props: React.PropsWithChildren<ISocialNavigationProps>) => {
return (
Expand All @@ -15,19 +15,19 @@ export const SocialNavigation: React.FunctionComponent<ISocialNavigationProps> =
<ul className='flex justify-center gap-6'>
{navigation.social.map((item) => (
<li key={item.name}>
<a
title={item.title}
href={item.href}
className="text-base font-medium text-whisper-500 hover:text-whisper-900"
target="_blank"
<a
title={item.title}
href={item.href}
className="text-base font-medium text-whisper-500 hover:text-teal-500"
target="_blank"
rel={`noopener noreferrer`}>
<span className="sr-only">{item.name}</span>
<item.icon className="h-6 w-6" aria-hidden="true" />
</a>
</li>
))}
</ul>

<Stargazers />
</nav>
);
Expand Down
6 changes: 3 additions & 3 deletions components/Page/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,14 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props
<nav className="-mx-5 -my-2 flex flex-wrap justify-center" aria-label="Footer">
{navigation.main.map((item) => (
<div key={item.name} className="px-5 py-2">
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
{item.name}
</a>
</div>
))}
{navigation.footer.map((item) => (
<div key={item.name} className="px-5 py-2">
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-gray-500">
<a href={item.href} title={item.title} className="text-base text-gray-400 hover:text-teal-500">
{item.name}
</a>
</div>
Expand All @@ -60,7 +60,7 @@ export const Footer: React.FunctionComponent<IFooterProps> = (props: React.Props

<div className="mt-8 flex justify-center space-x-6">
{navigation.social.map((item) => (
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-gray-500" target="_blank" rel={`noopener noreferrer`}>
<a key={item.name} title={item.title} href={item.href} className="text-gray-400 hover:text-teal-500" target="_blank" rel={`noopener noreferrer`}>
<span className="sr-only">{item.name}</span>
<item.icon className="h-6 w-6" aria-hidden="true" />
</a>
Expand Down
15 changes: 15 additions & 0 deletions content/changelog/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,20 @@
# Change Log

## [10.6.0] - 2024-11-06 - [Release notes](https://beta.frontmatter.codes/updates/v10.6.0)

### 🎨 Enhancements

- [#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
- [#882](https://github.com/estruyf/vscode-front-matter/issues/882): Dynamic evaluation of the `node` executable path
- [#884](https://github.com/estruyf/vscode-front-matter/issues/884): Hide WYSIWYG actions when the file is in git diff mode

### 🐞 Fixes

- [#859](https://github.com/estruyf/vscode-front-matter/issues/859): Fix label in the data view dropdown field
- [#876](https://github.com/estruyf/vscode-front-matter/issues/876): Fix snippet type on the snippet card
- [#879](https://github.com/estruyf/vscode-front-matter/issues/879): Fix for auto updating last modified date on save
- [#885](https://github.com/estruyf/vscode-front-matter/issues/885): Fix content relationship for none i18n content

## [10.5.1] - 2024-10-23

### 🎨 Enhancements
Expand Down
44 changes: 44 additions & 0 deletions content/changelog/v10.6.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
---
title: Version 10.6.0 release notes
description: Discover the key updates in Version 10.6.0, including enhanced navigation, dynamic node path evaluation, and improved git diff mode functionality.
date: 2024-11-06T09:53:37.985Z
lastmod: 2024-11-06T09:53:47.913Z
slug: v10.6.0
fmContentType: changelog
---

## Select all button works while navigating through pages

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.

![Select all when navigating through pages](/releases/v10.6.0/select-all.webp)

## Dynamic evaluation of the node executable path

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:

- `terminal.integrated.automationProfile.<platform>`
- `terminal.integrated.defaultProfile.<platform>`
- `terminal.integrated.profiles.<platform>`
- `terminal.integrated.shell.<platform>`

If the terminal profile is not found, the extension will use the default `node` executable path.

## Hide WYSIWYG actions when the file is in git diff mode

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.

## Related issues/enhancements

### 🎨 Enhancements

- [#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
- [#882](https://github.com/estruyf/vscode-front-matter/issues/882): Dynamic evaluation of the `node` executable path
- [#884](https://github.com/estruyf/vscode-front-matter/issues/884): Hide WYSIWYG actions when the file is in git diff mode

### 🐞 Fixes

- [#859](https://github.com/estruyf/vscode-front-matter/issues/859): Fix label in the data view dropdown field
- [#876](https://github.com/estruyf/vscode-front-matter/issues/876): Fix snippet type on the snippet card
- [#879](https://github.com/estruyf/vscode-front-matter/issues/879): Fix for auto updating last modified date on save
- [#885](https://github.com/estruyf/vscode-front-matter/issues/885): Fix content relationship for none i18n content
Binary file added public/releases/v10.6.0/select-all.webp
Binary file not shown.

0 comments on commit 4b8aa44

Please sign in to comment.