diff --git a/docs/releases/1.20.md b/docs/releases/1.20.md
index 6e4f4251c..68f3e70a4 100644
--- a/docs/releases/1.20.md
+++ b/docs/releases/1.20.md
@@ -103,24 +103,24 @@ When upgrading a project with Naninovel version 1.18 or older first follow [v1.1
- Added `Scene Path Root` option to scene background actor settings allowing to change the root directory of the scene assets associated with the actor appearances. [[demo]](https://i.gyazo.com/207b721a062ffa7870df1005a0552a3e.png)
- Engine now has its own CSV parser and no longer depends on the third-party library.
- IDE (VS Code) extension improvements:
- - New file-based bridging service makes the connection between Unity, VS Code and Web Editor more reliable and doesn't require any setup or tweaking, such as specifying preferred socket ports. [[guide]](/guide/ide-extension)
- - Added visual indicator for the bridging connection status. [[demo]](https://i.gyazo.com/04c404ea30c432b18d1d2953db13bc6a.png)
- - Added rename refactor option for labels, script files and folders. [[demo]](https://i.gyazo.com/b35279c0c37631a144bf2fd9d373e02a.mp4)
- - The extension is now capable of formatting NaniScript documents. [[demo]](https://i.gyazo.com/a109c49ab9b08cd009c35e76fd485c4c.mp4)
- - Label auto-completion and diagnostics no longer requires syncing metadata with editor;
- - Added `Debounce Delay` setting to optimize diagnostic performance. The extension will no longer diagnose on each document change and instead accumulate changes and process them in batch with the specified debounce interval (500ms by default).
- - Already specified parameters are no longer suggested in the auto-completion list;
- - Parameters, that has no effect or not supported by the command, such as `if` parameter in [@if] command and `wait` parameters in commands that are not async, are no longer suggested in the auto-completion list;
- - Parameter values with expression context are now highlighted as expressions, even when the value is not wrapped in `{}`;
- - Localizable parameter values, such as printed text and choice labels are now highlighted independently to better distinguish "natural" text presented to player from other values.
- - Indented lines are now foldable. Useful for folding nested blocks, as well as adding custom folding regions by indenting lines;
- - Added an option to specify custom folding blocks; [[doc]](/guide/ide-extension#folding)
- - Added an option to specify context for expression function parameters. [[doc]](/guide/script-expressions#parameter-context)
- - Added support for minimap section headers. [[doc]](https://code.visualstudio.com/updates/v1_88#_minimap-section-headers)
- - Added code highlighting to the example snippets inside tooltips.
- - Added common configuration defaults to the extension contributions: token colors, hiding `.meta` files, word wrapping, etc.
- - Added weak (informational) warnings in VS Code when a dynamic parameter value is preventing resource preloading.
- - Appearances metadata (used for auto-completion in VS Code) for generic, live2d and spine actors is now generated based on trigger parameters in Animator component of the implementation prefab.
+ - New file-based bridging service makes the connection between Unity, VS Code and Web Editor more reliable and doesn't require any setup or tweaking, such as specifying preferred socket ports. [[guide]](/guide/ide-extension)
+ - Added visual indicator for the bridging connection status. [[demo]](https://i.gyazo.com/04c404ea30c432b18d1d2953db13bc6a.png)
+ - Added rename refactor option for labels, script files and folders. [[demo]](https://i.gyazo.com/b35279c0c37631a144bf2fd9d373e02a.mp4)
+ - The extension is now capable of formatting NaniScript documents. [[demo]](https://i.gyazo.com/a109c49ab9b08cd009c35e76fd485c4c.mp4)
+ - Label auto-completion and diagnostics no longer requires syncing metadata with editor;
+ - Added `Debounce Delay` setting to optimize diagnostic performance. The extension will no longer diagnose on each document change and instead accumulate changes and process them in batch with the specified debounce interval (500ms by default).
+ - Already specified parameters are no longer suggested in the auto-completion list;
+ - Parameters, that has no effect or not supported by the command, such as `if` parameter in [@if] command and `wait` parameters in commands that are not async, are no longer suggested in the auto-completion list;
+ - Parameter values with expression context are now highlighted as expressions, even when the value is not wrapped in `{}`;
+ - Localizable parameter values, such as printed text and choice labels are now highlighted independently to better distinguish "natural" text presented to player from other values.
+ - Indented lines are now foldable. Useful for folding nested blocks, as well as adding custom folding regions by indenting lines;
+ - Added an option to specify custom folding blocks; [[doc]](/guide/ide-extension#folding)
+ - Added an option to specify context for expression function parameters. [[doc]](/guide/script-expressions#parameter-context)
+ - Added support for minimap section headers. [[doc]](https://code.visualstudio.com/updates/v1_88#_minimap-section-headers)
+ - Added code highlighting to the example snippets inside tooltips.
+ - Added common configuration defaults to the extension contributions: token colors, hiding `.meta` files, word wrapping, etc.
+ - Added weak (informational) warnings in VS Code when a dynamic parameter value is preventing resource preloading.
+ - Appearances metadata (used for auto-completion in VS Code) for generic, live2d and spine actors is now generated based on trigger parameters in Animator component of the implementation prefab.
## Changed
@@ -164,3 +164,4 @@ Most fixes associated with bugs found during the pre-release stage are backporte
## Patches
- `2024-11-18` Fixed expression parsing of double numbers affected by the culture.
+- `2024-11-18` Fixed VS Code false-positive diagnostic of dynamic expression assignment.