Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "vide"
version = "1.2.0"
version = "1.2.1"
edition = "2024"
authors = ["roifewu <roifewu@gmail.com>", "hongjr03 <hongjr03@gmail.com>"]
repository = "https://github.com/pascal-lab/vide"
Expand Down
5 changes: 5 additions & 0 deletions docs/src/content/docs/changelog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ import { CardGrid, LinkCard } from '@astrojs/starlight/components';
按版本查看 Vide 的发布变化。

<CardGrid>
<LinkCard
title="1.2.1"
href="./v1-2-1/"
description="修复配置预定义宏和嵌套宏实参场景下的宏展开悬停,并保留展开代码的换行缩进。"
/>
<LinkCard
title="1.2.0"
href="./v1-2-0/"
Expand Down
25 changes: 25 additions & 0 deletions docs/src/content/docs/changelog/v1-2-1/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: 1.2.1
description: Vide 1.2.1 更新日志。
---

Vide 1.2.1 修复宏展开悬停在配置预定义宏和嵌套宏实参场景下的显示问题,并调整 1.2.0 更新日志里的自动重构说明。

## 修复

### 宏展开悬停

- 宏展开经过 `vide.toml` 中配置的预定义宏时,悬停信息现在会继续显示完整展开结果,不再丢失展开内容。([#245](https://github.com/pascal-lab/vide/pull/245) by [@hongjr03](https://github.com/hongjr03))
- 展开结果现在保留预处理 trace 中的换行和缩进,悬停里的 `Expands to` 代码块更接近实际展开后的代码形态。([#245](https://github.com/pascal-lab/vide/pull/245) by [@hongjr03](https://github.com/hongjr03))

## 文档

- 调整 1.2.0 更新日志里的自动重构说明,让新增代码动作的范围更准确。([#244](https://github.com/pascal-lab/vide/pull/244) by [@hongjr03](https://github.com/hongjr03))

## 贡献者

感谢本次发布的所有贡献者:

- [@hongjr03](https://github.com/hongjr03)

**完整更新列表**: [v1.2.0...v1.2.1](https://github.com/pascal-lab/vide/compare/v1.2.0...v1.2.1)
5 changes: 5 additions & 0 deletions docs/src/content/docs/en/changelog/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ import { CardGrid, LinkCard } from '@astrojs/starlight/components';
Browse Vide changes by version.

<CardGrid>
<LinkCard
title="1.2.1"
href="./v1-2-1/"
description="Fixes macro expansion hover through configured predefines and nested macro arguments, with line breaks and indentation preserved in expansion output."
/>
<LinkCard
title="1.2.0"
href="./v1-2-0/"
Expand Down
25 changes: 25 additions & 0 deletions docs/src/content/docs/en/changelog/v1-2-1/index.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
---
title: 1.2.1
description: Vide 1.2.1 release notes.
---

Vide 1.2.1 fixes macro expansion hover output for configured predefines and nested macro arguments, and updates the 1.2.0 code action notes.

## Fixes

### Macro Expansion Hover

- Macro hover now keeps showing the complete expansion when the output passes through predefines configured in `vide.toml`. ([#245](https://github.com/pascal-lab/vide/pull/245) by [@hongjr03](https://github.com/hongjr03))
- Expansion output now preserves line breaks and indentation from the preprocessor trace, so the hover's `Expands to` code block more closely matches the expanded code. ([#245](https://github.com/pascal-lab/vide/pull/245) by [@hongjr03](https://github.com/hongjr03))

## Documentation

- Updated the 1.2.0 release note wording for automatic refactoring code actions so the listed scope is more accurate. ([#244](https://github.com/pascal-lab/vide/pull/244) by [@hongjr03](https://github.com/hongjr03))

## Contributors

Thanks to everyone who contributed to this release:

- [@hongjr03](https://github.com/hongjr03)

**Full Changelog**: [v1.2.0...v1.2.1](https://github.com/pascal-lab/vide/compare/v1.2.0...v1.2.1)
4 changes: 2 additions & 2 deletions editors/vscode/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion editors/vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "vide-ide",
"displayName": "Vide - Verilog/SystemVerilog Coding IDE",
"description": "%extension.description%",
"version": "1.2.0",
"version": "1.2.1",
"publisher": "pascal-lab",
"license": "MIT",
"icon": "media/icon.png",
Expand Down
Loading