parent
e24587108c
commit
1b23c31d82
|
@ -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的颜色
|
||||||
|
|
||||||
|
|
|
@ -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": {
|
||||||
|
|
|
@ -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
|
||||||
}
|
}
|
||||||
|
|
|
@ -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": [
|
||||||
{
|
{
|
||||||
|
|
Loading…
Reference in New Issue