Skip to content

Commit

Permalink
rename readme.htm to readme.html
Browse files Browse the repository at this point in the history
tester found out .htm does not show on windows 8
  • Loading branch information
yysun committed Oct 28, 2012
1 parent c3c5d06 commit c628e50
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion BasicSccProvider.cs
Original file line number Diff line number Diff line change
Expand Up @@ -428,7 +428,7 @@ private void OnGitExtCommandExec(object sender, EventArgs e)
private void OnAbout(object sender, EventArgs e)
{
var path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
path = Path.Combine(path, "Readme.htm");
path = Path.Combine(path, "Readme.html");
Process.Start(path);
}

Expand Down
2 changes: 1 addition & 1 deletion BasicSccProvider.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
<Content Include="Readme.htm">
<Content Include="Readme.html">
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
<IncludeInVSIX>true</IncludeInVSIX>
</Content>
Expand Down
1 change: 1 addition & 0 deletions Readme.htm → Readme.html
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,7 @@ <h2>Change Logs</h2>
<li>Prompt user to save files before commit</li>
<li>Prompt user to set name and email for git, if not already</li>
<li>Support bulk file deletion</li>
<li>Use new icons for git and gi textensions</li>
<li>Merge pull requests, #27, #28, #32, #34 from github</li>
<li><a href="http://gitscc.codeplex.com/workitem/17798">Allow commit of selected changes via Ctrl+Enter</a></li>
<li><a href="http://gitscc.codeplex.com/workitem/17795">Automatically save items when refreshing</a>
Expand Down
2 changes: 1 addition & 1 deletion source.extension.vsixmanifest
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<Identifier Id="C4128D99-2000-41D1-A6C3-704E6C1A3DE2">
<Name>Git Source Control Provider</Name>
<Author>[email protected]</Author>
<Version>0.9.6.7</Version>
<Version>0.9.6.8</Version>
<Description xml:space="preserve">Git Source Control Provider is a plug-in that integrates git with Visual Studio.</Description>
<Locale>1033</Locale>
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/63a7e40d-4d71-4fbb-a23b-d262124b8f4c</MoreInfoUrl>
Expand Down

0 comments on commit c628e50

Please sign in to comment.