add icon and fix git service
This commit is contained in:
parent
7b03823424
commit
b54a15023c
|
@ -0,0 +1,10 @@
|
|||
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 16 16">
|
||||
<!-- 定义线性渐变 -->
|
||||
<defs>
|
||||
<linearGradient id="myGradient" x1="0%" y1="0%" x2="100%" y2="0%">
|
||||
<stop offset="0%" stop-color="white" />
|
||||
<stop offset="100%" stop-color="black" />
|
||||
</linearGradient>
|
||||
</defs>
|
||||
<path fill="url(#myGradient)" stroke="black" stroke-width=".25" d="M11.876 8.992a4.002 4.002 0 0 1-7.752 0A1.01 1.01 0 0 1 4 9H1a1 1 0 0 1 0-2h3c.042 0 .083.003.124.008a4.002 4.002 0 0 1 7.752 0A1.01 1.01 0 0 1 12 7h3a1 1 0 1 1 0 2h-3c-.042 0-.083-.003-.124-.008zM8 10a2 2 0 1 0 0-4 2 2 0 0 0 0 4z"></path>
|
||||
</svg>
|
After Width: | Height: | Size: 612 B |
Binary file not shown.
After Width: | Height: | Size: 4.3 KiB |
|
@ -13,7 +13,8 @@
|
|||
"ui",
|
||||
"workspace"
|
||||
],
|
||||
"publisher": "elf.cheng",
|
||||
"icon": "media/commit.png",
|
||||
"publisher": "elfcheng",
|
||||
"extensionDependencies": [
|
||||
"vscode.git"
|
||||
],
|
||||
|
@ -25,7 +26,7 @@
|
|||
{
|
||||
"id": "gitCommitFilterView",
|
||||
"title": "Git Commits",
|
||||
"icon": "media/icon.svg"
|
||||
"icon": "media/commit-fill.svg"
|
||||
}
|
||||
]
|
||||
},
|
||||
|
|
|
@ -109,6 +109,7 @@ export class GitService {
|
|||
if(commit){
|
||||
commits.push(commit);
|
||||
}
|
||||
lines = [];
|
||||
} else if (nline.trim() !== "") {
|
||||
lines.push(nline);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue