Skip to content

Commit 9dcb520

Browse files
Bump version and update CHANGELOG
1 parent ef002de commit 9dcb520

5 files changed

Lines changed: 11 additions & 6 deletions

File tree

CHANGELOG.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Document some advanced types so users may try them out and provide feedback. The
1818

1919
IDL 9.1 introduces new, command-line based progress bars. We have a first-pass of support for these progress bars inside IDL Notebooks.
2020

21-
## Unreleased
21+
## 4.6.2 - September 2024
2222

2323
Changed the language server startup process to remove all files from memory after initial startup. This reduces RAM by 0.25-0.5 GB of memory after startup, depending on the volume of code in workspaces and on your path.
2424

@@ -30,6 +30,8 @@ For large files, this had a significant impact on perceived performance as the w
3030

3131
Fixed an issue where, from the JSON settings editor, a valid extension setting would be highlighted as being an incorrect value.
3232

33+
Fixed an issue where the "don't ask again" options didn't honor your choice for using IDL as the formatter.
34+
3335
## 4.6.1 - September 2024
3436

3537
Added layer controls to the Notebook Map.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
/**
22
* Version of the extension
33
*/
4-
export const VERSION = '4.6.1';
4+
export const VERSION = '4.6.2';

libs/vscode/config/src/lib/initialize-extension-config.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,10 @@ export async function InitializeExtensionConfig(onConfigChanges: () => void) {
8282
});
8383

8484
// check if we should ask about setting the default formatter
85-
if (editor.get('defaultFormatter') !== EXTENSION_FULL_NAME) {
85+
if (
86+
editor.get('defaultFormatter') !== EXTENSION_FULL_NAME &&
87+
!IDL_EXTENSION_CONFIG.dontAsk.forFormatterChange
88+
) {
8689
await QuestionAsker(
8790
IDL_TRANSLATION.notifications.changeFormatter,
8891
IDL_EXTENSION_CONFIG_KEYS.dontAskForFormatterChange,

package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"name": "idl-for-vscode",
33
"displayName": "%packageJSON.displayName%",
44
"description": "%packageJSON.description%",
5-
"version": "4.6.1",
5+
"version": "4.6.2",
66
"publisher": "idl",
77
"license": "MIT",
88
"encryption": "yes",

0 commit comments

Comments
 (0)