修复新版Git Blame的颜色换了API的bug

master 1.7.0
yutent 2025-07-17 01:06:55 +08:00
parent e24587108c
commit 1b23c31d82
4 changed files with 8 additions and 3 deletions

View File

@ -1,5 +1,8 @@
# 更新日志 # 更新日志
## [1.7.0] 2025-07-17
- 修复新版Git Blame的颜色换了API的bug
## [1.6.9] 2025-03-11 ## [1.6.9] 2025-03-11
- 优化Git Blame的颜色 - 优化Git Blame的颜色

View File

@ -3,7 +3,7 @@
"displayName": "one plain", "displayName": "one plain",
"description": "🔥 米白色主题", "description": "🔥 米白色主题",
"icon": "logo.png", "icon": "logo.png",
"version": "1.6.9", "version": "1.7.0",
"publisher": "yutent", "publisher": "yutent",
"author": "Yutent [@yutent]", "author": "Yutent [@yutent]",
"engines": { "engines": {

View File

@ -173,5 +173,6 @@ module.exports = {
'settings.modifiedItemIndicator': '#80CBC4', 'settings.modifiedItemIndicator': '#80CBC4',
'settings.checkboxBackground': vars.plain1, 'settings.checkboxBackground': vars.plain1,
'settings.checkboxForeground': vars.common, 'settings.checkboxForeground': vars.common,
'editorCodeLens.foreground': '#baced1' 'editorCodeLens.foreground': '#baced1', // 旧版api
'git.blame.editorDecorationForeground': '#baced1' //新版api
} }

View File

@ -174,7 +174,8 @@
"settings.modifiedItemIndicator": "#80CBC4", "settings.modifiedItemIndicator": "#80CBC4",
"settings.checkboxBackground": "#f8f9fd", "settings.checkboxBackground": "#f8f9fd",
"settings.checkboxForeground": "#90a4ae", "settings.checkboxForeground": "#90a4ae",
"editorCodeLens.foreground": "#baced1" "editorCodeLens.foreground": "#baced1",
"git.blame.editorDecorationForeground": "#baced1"
}, },
"tokenColors": [ "tokenColors": [
{ {