Compare commits
3 Commits
feat/perso
...
master
| Author | SHA1 | Date | |
|---|---|---|---|
| 24512c61e6 | |||
| cc4583e2cc | |||
| 1d64310607 |
44
CHANGELOG.md
44
CHANGELOG.md
@ -2,6 +2,50 @@
|
|||||||
|
|
||||||
所有重要的项目变更都将记录在此文件中。
|
所有重要的项目变更都将记录在此文件中。
|
||||||
|
|
||||||
|
## [1.13.5] - 2026-03-17
|
||||||
|
|
||||||
|
### 新增
|
||||||
|
|
||||||
|
- 个人规则管理功能
|
||||||
|
- 代码选择添加到对话(Ctrl+L / Cmd+L)
|
||||||
|
|
||||||
|
### 优化
|
||||||
|
|
||||||
|
- 消息处理模块重构
|
||||||
|
- 提示信息优化
|
||||||
|
|
||||||
|
## [1.13.0] - 2026-03-15
|
||||||
|
|
||||||
|
### 新增
|
||||||
|
|
||||||
|
- Vivado 联动功能文档
|
||||||
|
- 示例刷新按钮
|
||||||
|
|
||||||
|
### 优化
|
||||||
|
|
||||||
|
- 界面样式和交互体验
|
||||||
|
|
||||||
|
## [1.12.0] - 2026-03-12
|
||||||
|
|
||||||
|
### 新增
|
||||||
|
|
||||||
|
- 对话结束提示
|
||||||
|
|
||||||
|
### 优化
|
||||||
|
|
||||||
|
- 面板组件架构优化
|
||||||
|
|
||||||
|
## [1.11.0] - 2026-03-10
|
||||||
|
|
||||||
|
### 优化
|
||||||
|
|
||||||
|
- 代码选择交互优化
|
||||||
|
|
||||||
|
### 修复
|
||||||
|
|
||||||
|
- AI 提问输入问题
|
||||||
|
- Windows 平台兼容性问题
|
||||||
|
|
||||||
## [1.0.12] - 2026-03-06
|
## [1.0.12] - 2026-03-06
|
||||||
|
|
||||||
### 新增
|
### 新增
|
||||||
|
|||||||
@ -2,7 +2,7 @@
|
|||||||
"name": "iccoder",
|
"name": "iccoder",
|
||||||
"displayName": "IC Coder: Agentic Verilog Platform",
|
"displayName": "IC Coder: Agentic Verilog Platform",
|
||||||
"description": "Agentic Verilog Coding Platform for Real-World FPGAs",
|
"description": "Agentic Verilog Coding Platform for Real-World FPGAs",
|
||||||
"version": "1.0.12",
|
"version": "1.13.5",
|
||||||
"publisher": "ICCoderAgenticVerilogPlatform",
|
"publisher": "ICCoderAgenticVerilogPlatform",
|
||||||
"engines": {
|
"engines": {
|
||||||
"vscode": "^1.80.0"
|
"vscode": "^1.80.0"
|
||||||
|
|||||||
@ -34,7 +34,7 @@ export function getCodeHighlightStyles(): string {
|
|||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
padding: 12px;
|
padding: 12px;
|
||||||
overflow-x: auto;
|
overflow-x: auto;
|
||||||
margin: 12px 0;
|
margin: 52px 0 12px 0;
|
||||||
position: relative;
|
position: relative;
|
||||||
white-space: pre;
|
white-space: pre;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -553,7 +553,7 @@ export function getMessageAreaStyles(): string {
|
|||||||
}
|
}
|
||||||
.segment-question .question-option {
|
.segment-question .question-option {
|
||||||
padding: 8px 16px;
|
padding: 8px 16px;
|
||||||
background: #3d3f41;
|
background: var(--vscode-textBlockQuote-background);
|
||||||
color: var(--vscode-foreground);
|
color: var(--vscode-foreground);
|
||||||
border: 1px solid #474747;
|
border: 1px solid #474747;
|
||||||
border-radius: 6px;
|
border-radius: 6px;
|
||||||
@ -563,13 +563,13 @@ export function getMessageAreaStyles(): string {
|
|||||||
letter-spacing: 0.5px;
|
letter-spacing: 0.5px;
|
||||||
}
|
}
|
||||||
.segment-question .question-option:hover {
|
.segment-question .question-option:hover {
|
||||||
background: #005a9e;
|
background: var(--vscode-button-hoverBackground);
|
||||||
border-color: #005a9e;
|
border-color: var(--vscode-button-hoverBackground);
|
||||||
}
|
}
|
||||||
.segment-question .question-option.selected {
|
.segment-question .question-option.selected {
|
||||||
background: #007ACC;
|
background: var(--vscode-button-background);
|
||||||
color: #ffffff;
|
color: var(--vscode-button-foreground);
|
||||||
border-color: #007ACC;
|
border-color: var(--vscode-button-background);
|
||||||
}
|
}
|
||||||
.segment-question.answered .question-option:not(.selected) {
|
.segment-question.answered .question-option:not(.selected) {
|
||||||
opacity: 0.5;
|
opacity: 0.5;
|
||||||
|
|||||||
Reference in New Issue
Block a user