Skip to content

Commit 02c231f

Browse files
committed
Add readme.txt to Git - About menu
1 parent f7d39a8 commit 02c231f

File tree

5 files changed

+67
-2
lines changed

5 files changed

+67
-2
lines changed

BasicSccProvider.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -404,7 +404,7 @@ private void OnGitExtCommandExec(object sender, EventArgs e)
404404
private void OnAbout(object sender, EventArgs e)
405405
{
406406
var path = Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location);
407-
path = Path.Combine(path, "Readme.txt");
407+
path = Path.Combine(path, "Readme.htm");
408408
Process.Start(path);
409409
}
410410

BasicSccProvider.csproj

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,10 @@
139139
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
140140
<IncludeInVSIX>true</IncludeInVSIX>
141141
</Content>
142+
<Content Include="Readme.htm">
143+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
144+
<IncludeInVSIX>true</IncludeInVSIX>
145+
</Content>
142146
<Content Include="Resources\Images_24bit.bmp" />
143147
<Content Include="Resources\Images_32bit.bmp" />
144148
<Resource Include="Resources\Loading.png" />

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,9 @@ Git Source Control Provider
33

44
Introduction
55
------------
6-
Visual Studio users are used to see file status of source control right inside the solution explorer, whether it is SourceSafe, Team Foundation Server, Subversion or even Mercurial. This plug-in integrates Git with Visual Studio solution explorer. It supports all editions of Visual studio 2010 except the Express Edition.
6+
This Visual Studio Extensions integrates Git with Visual Studio solution explorer. It supports all editions of Visual studio 2010 except the Express Edition.
7+
8+
[![Donate](https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif)](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=KBCLF3PZD6C98&lc=US&item_name=Git%20Source%20Control%20Provider&currency_code=USD&bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted)
79

810
![solution explorer](http://gitscc.codeplex.com/Project/Download/FileDownload.aspx?DownloadId=123874)
911

Readme.htm

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
<!DOCTYPE html>
2+
<html lang="en">
3+
<head>
4+
<meta charset="utf-8">
5+
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
6+
<meta name="viewport" content="width=device-width,initial-scale=1">
7+
<meta name="author" content="Yiyi Sun">
8+
<title>Git Source Control Provider</title>
9+
<style type="text/css">
10+
body{font:14px/20px arial;}
11+
h1{font-size:1.3em;}
12+
h2{font-size:1.1em;}
13+
</style>
14+
</head>
15+
<body>
16+
<div id="container">
17+
<h1>Git Source Control Provider</h1>
18+
Please donate to support this project.
19+
<a href="https://www.paypal.com/cgi-bin/webscr?cmd=_donations&amp;business=KBCLF3PZD6C98&amp;lc=US&amp;item_name=Git%20Source%20Control%20Provider&amp;currency_code=USD&amp;bn=PP%2dDonationsBF%3abtn_donate_SM%2egif%3aNonHosted">
20+
<img alt="Donate" style="border:0px; vertical-align:middle" src="https://www.paypalobjects.com/en_US/i/btn/btn_donate_SM.gif" title="Donate" /></a><br />
21+
<h2>Change Logs</h2>
22+
V0.9.1
23+
<ul>
24+
<li>Change History Window to be a stand alone program</li>
25+
<li>Add Git Extensions menus to Pending Changed tool window </li>
26+
<li>Add GitTortoise menus to Pending Changed tool window</li>
27+
<li>Add Git - About ... menu, <a
28+
href="http://gitscc.codeplex.com/workitem/17051">Referencing
29+
Git hash when building</a></li>
30+
<li>Add Option to disable auto load,
31+
<a href="http://gitscc.codeplex.com/workitem/16904">
32+
Automatically switch to the Git provider when loading a Git-controlled solution</a></li>
33+
<li>Bug Fix: <a href="http://gitscc.codeplex.com/workitem/17101">
34+
autocrlf warning prevents commits from Git Pending Changes</a></li>
35+
<li>Bug Fix: <a href="http://gitscc.codeplex.com/workitem/17213">
36+
Show Changes Window Disappear</a></li>
37+
<li>Buf Fix: <a href="http://gitscc.codeplex.com/workitem/17277">
38+
Git status is not refreshed</a></li>
39+
<li>Merge pull requests from GitHub</li>
40+
</ul>
41+
42+
V 0.9.0 (2af53c1)
43+
<ul>
44+
<li>Automatically switch to the Git provider when loading a Git-controlled solution</li>
45+
<li>Use git.exe to revert (checkout file) for core.autocrlf setting is not recognized when displaying diffs</li>
46+
<li>Support Visual Studio 11</li>
47+
<li>Disable refreshing when staging</li>
48+
</ul>
49+
50+
<br />
51+
For more information, please visit the project Site: <a href="http://gitscc.codeplex.com">http://gitscc.codeplex.com</a>
52+
<br />
53+
Welcome to fork the source code: <a href="https://github.com/yysun/Git-Source-Control-Provider">https://github.com/yysun/Git-Source-Control-Provider</a><br />
54+
</div>
55+
</body>
56+
</html>

source.extension.vsixmanifest

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,9 @@
66
<Version>0.9.1</Version>
77
<Description xml:space="preserve">Git Source Control Provider is a plug-in that integrates git with Visual Studio.</Description>
88
<Locale>1033</Locale>
9+
<MoreInfoUrl>http://visualstudiogallery.msdn.microsoft.com/63a7e40d-4d71-4fbb-a23b-d262124b8f4c</MoreInfoUrl>
910
<License>License.txt</License>
11+
<GettingStartedGuide>http://gitscc.codeplex.com/documentation</GettingStartedGuide>
1012
<PreviewImage>solution explorer.png</PreviewImage>
1113
<InstalledByMsi>false</InstalledByMsi>
1214
<SupportedProducts>
@@ -32,5 +34,6 @@
3234
<VsPackage>|%CurrentProject%;PkgdefProjectOutputGroup|</VsPackage>
3335
<MefComponent>DiffClassifier.dll</MefComponent>
3436
<CustomExtension Type="Exe">GitUI.exe</CustomExtension>
37+
<CustomExtension Type="htm">Readme.htm</CustomExtension>
3538
</Content>
3639
</Vsix>

0 commit comments

Comments
 (0)