Skip to content

Commit 19e8a85

Browse files
committed
v1.0.2
1 parent 2cf766b commit 19e8a85

File tree

7 files changed

+38
-45
lines changed

7 files changed

+38
-45
lines changed

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ jobs:
3030
with:
3131
marketplace-pat: ${{ secrets.VS_MARKETPLACE_TOKEN }}
3232
publish-manifest-path: ./VSGitBlame/extension.manifest.json
33-
vsix-path: ./VSGitBlame/bin/x64/Release/VSGitBlame.vsix
33+
vsix-path: ./VSGitBlame/bin/Release/VSGitBlame.vsix

ReleaseNotes.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
# Release Notes
2+
3+
## v1.0.2
4+
5+
- UTF-8 encoding support
6+
- General stability improvements
7+
8+
## v1.0.1
9+
10+
- Options to customise font colour and size
11+
- Improved visibility of blame text
12+
- Keyboard navigation support
13+
- Multi-repo Git support
14+
- General stability improvements
15+
16+
## v1.0.0
17+
- Initial release

VSGitBlame/GitBlamer.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ static FileBlameInfo InitialiseFile(string filePath)
3434
RedirectStandardOutput = true,
3535
UseShellExecute = false,
3636
CreateNoWindow = true,
37-
StandardOutputEncoding = System.Text.Encoding.UTF8
37+
StandardOutputEncoding = System.Text.Encoding.UTF8,
3838
WorkingDirectory = Path.GetDirectoryName(filePath)
3939
};
4040
process.Start();

VSGitBlame/Resources/CHANGELOG.html

Lines changed: 0 additions & 37 deletions
This file was deleted.

VSGitBlame/VSGitBlame.csproj

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -57,10 +57,7 @@
5757
<Compile Include="VSGitBlamePackage.cs" />
5858
</ItemGroup>
5959
<ItemGroup>
60-
<Content Include="Resources\CHANGELOG.html">
61-
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
62-
<IncludeInVSIX>true</IncludeInVSIX>
63-
</Content>
60+
<None Include="extension.manifest.json" />
6461
<None Include="source.extension.vsixmanifest">
6562
<SubType>Designer</SubType>
6663
</None>

VSGitBlame/extension.manifest.json

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
{
2+
"$schema": "http://json.schemastore.org/vsix-publish",
3+
"categories": [
4+
"source control"
5+
],
6+
"identity": {
7+
"internalName": "vs-quick-blame"
8+
},
9+
"overview": "README.md",
10+
"priceCategory": "free",
11+
"publisher": "EmmanuelAdebiyi",
12+
"private": false,
13+
"qna": true,
14+
"repo": "https://github.com/AmSmart/VSGitBlame",
15+
"tags": []
16+
}
17+
// Readme needs to use remote links so as to render properly on the marketplace

VSGitBlame/source.extension.vsixmanifest

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<PackageManifest Version="2.0.0" xmlns="http://schemas.microsoft.com/developer/vsx-schema/2011" xmlns:d="http://schemas.microsoft.com/developer/vsx-schema-design/2011">
33
<Metadata>
4-
<Identity Id="VSGitBlame.9271c3e4-d49d-4c53-8675-cbe1e4f0e794" Version="1.0.1" Language="en-US" Publisher="Emmanuel Adebiyi" />
4+
<Identity Id="VSGitBlame.9271c3e4-d49d-4c53-8675-cbe1e4f0e794" Version="1.0.2" Language="en-US" Publisher="Emmanuel Adebiyi" />
55
<DisplayName>Quick Blame</DisplayName>
66
<Description xml:space="preserve">Blame lines of code in your Git repos at a glance</Description>
77
<License>Resources\LICENSE.txt</License>
8-
<ReleaseNotes>Resources\CHANGELOG.html</ReleaseNotes>
98
<Icon>Resources\icon.ico</Icon>
109
<PreviewImage>Resources\logo.png</PreviewImage>
1110
</Metadata>

0 commit comments

Comments
 (0)