Update changelog

This commit is contained in:
Elio Struyf
2023-08-30 17:07:55 +02:00
parent 13eede26ce
commit e6d93bbf5d
2 changed files with 8 additions and 5 deletions
+1 -4
View File
@@ -1,13 +1,11 @@
# Change Log
## [9.1.0] - 2023-xx-xx
## [9.1.0] - 2023-08-30
### ✨ New features
- [#630](https://github.com/estruyf/vscode-front-matter/issues/630): Italian localization added (thanks to [Emanuele Bartolesi](https://github.com/kasuken))
### 🎨 Enhancements
### ⚡️ Optimizations
- [#639](https://github.com/estruyf/vscode-front-matter/issues/639): Add check for content type in page folders setting
@@ -22,7 +20,6 @@
- [#636](https://github.com/estruyf/vscode-front-matter/issues/636): Fix media browser lightbox background color
- [#641](https://github.com/estruyf/vscode-front-matter/issues/641): Fix file parsing of the localization file
## [9.0.0] - 2023-08-21 - [Release notes](https://beta.frontmatter.codes/updates/v9.0.0)
### 🌎 Multilingual support
+7 -1
View File
@@ -4,7 +4,13 @@ import { COMMAND_NAME, TelemetryEvent } from './constants';
import { MarkdownFoldingProvider } from './providers/MarkdownFoldingProvider';
import { TagType } from './panelWebView/TagType';
import { PanelProvider } from './panelWebView/PanelProvider';
import { DashboardSettings, debounceCallback, Logger, parseWinPath, Settings as SettingsHelper } from './helpers';
import {
DashboardSettings,
debounceCallback,
Logger,
parseWinPath,
Settings as SettingsHelper
} from './helpers';
import ContentProvider from './providers/ContentProvider';
import { PagesListener } from './listeners/dashboard';
import { DataListener, SettingsListener } from './listeners/panel';