3 Commits

Author SHA1 Message Date
24512c61e6 style:解决不同主题下颜色变化的bug
- AI询问用户组件
2026-03-20 14:05:08 +08:00
cc4583e2cc style:修改代码高亮的margin 2026-03-19 16:18:01 +08:00
1d64310607 Update:changelog 2026-03-17 16:10:14 +08:00
4 changed files with 52 additions and 8 deletions

View File

@ -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
### 新增

View File

@ -2,7 +2,7 @@
"name": "iccoder",
"displayName": "IC Coder: Agentic Verilog Platform",
"description": "Agentic Verilog Coding Platform for Real-World FPGAs",
"version": "1.0.12",
"version": "1.13.5",
"publisher": "ICCoderAgenticVerilogPlatform",
"engines": {
"vscode": "^1.80.0"

View File

@ -34,7 +34,7 @@ export function getCodeHighlightStyles(): string {
border-radius: 6px;
padding: 12px;
overflow-x: auto;
margin: 12px 0;
margin: 52px 0 12px 0;
position: relative;
white-space: pre;
}

View File

@ -553,7 +553,7 @@ export function getMessageAreaStyles(): string {
}
.segment-question .question-option {
padding: 8px 16px;
background: #3d3f41;
background: var(--vscode-textBlockQuote-background);
color: var(--vscode-foreground);
border: 1px solid #474747;
border-radius: 6px;
@ -563,13 +563,13 @@ export function getMessageAreaStyles(): string {
letter-spacing: 0.5px;
}
.segment-question .question-option:hover {
background: #005a9e;
border-color: #005a9e;
background: var(--vscode-button-hoverBackground);
border-color: var(--vscode-button-hoverBackground);
}
.segment-question .question-option.selected {
background: #007ACC;
color: #ffffff;
border-color: #007ACC;
background: var(--vscode-button-background);
color: var(--vscode-button-foreground);
border-color: var(--vscode-button-background);
}
.segment-question.answered .question-option:not(.selected) {
opacity: 0.5;