File tree Expand file tree Collapse file tree 7 files changed +38
-45
lines changed Expand file tree Collapse file tree 7 files changed +38
-45
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff 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 ( ) ;
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 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 >
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 >
You can’t perform that action at this time.
0 commit comments