Skip to content

Commit e795fa5

Browse files
committed
Update readme and correct some English sentences
1 parent acdd8ac commit e795fa5

5 files changed

Lines changed: 30 additions & 17 deletions

File tree

Kool.VsDiff.2019/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Metadata>
44
<Identity Id="Kool.VsDiff.45821f83-c54b-469f-b733-0a65cfc32fe6" Version="0.0.0" Language="en-US" Publisher="Heku" />
55
<DisplayName>VS Diff</DisplayName>
6-
<Description xml:space="preserve">Another open source Visual Studio extension that makes file/code comparison more easily.</Description>
6+
<Description xml:space="preserve">Another open source Visual Studio extension that makes file/code comparison easier.</Description>
77
<MoreInfo>https://github.com/heku/kool.vsdiff</MoreInfo>
88
<Icon>Resources\Logo.ico</Icon>
99
<Tags>heku;kool;diff;compare</Tags>

Kool.VsDiff.2022/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<Metadata>
44
<Identity Id="Kool.VsDiff.0ac8776c-89a4-42fa-8194-3feb4f4d7ab8" Version="0.0.0" Language="en-US" Publisher="Heku" />
55
<DisplayName>VS Diff</DisplayName>
6-
<Description xml:space="preserve">Another open source Visual Studio extension that makes file/code comparison more easily.</Description>
6+
<Description xml:space="preserve">Another open source Visual Studio extension that makes file/code comparison easier.</Description>
77
<MoreInfo>https://github.com/heku/kool.vsdiff</MoreInfo>
88
<Icon>Resources\Logo.ico</Icon>
99
<Tags>heku;kool;diff;compare</Tags>

Kool.VsDiff.Linked/VSPackage.en.resx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@
121121
<value>VS Diff</value>
122122
</data>
123123
<data name="112" xml:space="preserve">
124-
<value>Another open source Visual Studio extension that makes file/code comparison more easily.</value>
124+
<value>Another open source Visual Studio extension that makes file/code comparison easier.</value>
125125
</data>
126126
<assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
127127
<data name="400" type="System.Resources.ResXFileRef, System.Windows.Forms">
@@ -146,7 +146,7 @@
146146
<value>Enable compare Clipboard content with selected file.</value>
147147
</data>
148148
<data name="OptionsPage_PreferToUsePreviewWindow" xml:space="preserve">
149-
<value>Prefer to use preview window (if supports).</value>
149+
<value>Prefer to use preview window (if support).</value>
150150
</data>
151151
<data name="OptionsPage_TestButtonContent" xml:space="preserve">
152152
<value>TEST</value>

Readme.md

Lines changed: 17 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,20 @@
1111

1212
--------
1313

14-
Another open source Visual Studio extension that makes file/code comparison more easily.
14+
Another open source Visual Studio extension that makes file/code comparison easier.
1515

1616
You can install it via Visual Studio 2015/2017/2019/2022 'Extensions' or download it from
1717
- [Marketplace for VS2022](https://marketplace.visualstudio.com/items?itemName=heku.VsDiff2022).
1818
- [Marketplace for VS2019 and below](https://marketplace.visualstudio.com/items?itemName=heku.VsDiff).
1919

20+
21+
### Kind Reminder
22+
23+
This extension was developed because the [official one](https://github.com/madskristensen/FileDiffer) was missing many features I need at that time, and I also wanted to learn
24+
how to write a Visual Studio extension. Since the official one has added almost all the missing features, I recommend everyone to give preference to that extension and use this
25+
extension only when the official one does not work for you. Refer to blog [comparing files in visual studio](https://devblogs.microsoft.com/visualstudio/comparing-files-in-visual-studio).
26+
27+
2028
## Features
2129

2230
- Compare two selected files in Solution Explorer.
@@ -41,7 +49,8 @@ You can install it via Visual Studio 2015/2017/2019/2022 'Extensions' or downloa
4149

4250
## Thanks
4351

44-
Before and during my development, I took the following documents/projects for reference. Great thanks to the authors who did great job.
52+
Before and during my development, I referred the following projects and documents,
53+
and I am very grateful to these authors who have done a great job.
4554

4655
- [Clipboard Diff](https://github.com/einaregilsson/ClipboardDiff)
4756
- [CodeMaid](https://github.com/codecadwallader/codemaid)
@@ -50,10 +59,12 @@ Before and during my development, I took the following documents/projects for re
5059
- [Microsoft Docs](https://docs.microsoft.com/en-us/visualstudio/extensibility/)
5160
- [VS.DiffAllFiles](https://github.com/deadlydog/VS.DiffAllFiles)
5261

53-
## Welcome
54-
55-
I'm not a native English speaker, so if you could correct any grammer mistake, it would be very appreciated.
5662

5763
## License
5864

59-
- [MIT](LICENSE)
65+
- [MIT](LICENSE)
66+
67+
68+
---------
69+
70+
I'm not a native English speaker, and I would appreciate it if you could correct any of my English mistakes.

publish.overview.md

Lines changed: 9 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,14 @@
1-
Another open source Visual Studio extension that makes file/code comparison more easily.
1+
Another open source Visual Studio extension that makes file/code comparison easier.
22

33
- [VS 2022](https://marketplace.visualstudio.com/items?itemName=Heku.VsDiff2022)
44
- [VS 2015/2017/2019](https://marketplace.visualstudio.com/items?itemName=Heku.VsDiff)
55

6+
### Kind Reminder
7+
8+
This extension was developed because the [official one](https://github.com/madskristensen/FileDiffer) was missing many features I need at that time, and I also wanted to learn
9+
how to write a Visual Studio extension. Since the official one has added almost all the missing features, I recommend everyone to give preference to that extension and use this
10+
extension only when the official one does not work for you. Refer to blog [comparing files in visual studio](https://devblogs.microsoft.com/visualstudio/comparing-files-in-visual-studio).
11+
612
## Features
713

814
- Compare two selected files in Solution Explorer (Folder View supported).
@@ -29,12 +35,8 @@ Another open source Visual Studio extension that makes file/code comparison more
2935

3036
Thanks for every rating, I'm glad the tool is helpful to you,
3137
because of a [network issue](https://github.com/heku/Kool.VsDiff/issues/5),
32-
I cannot reply to you directly in the marketplace.
33-
34-
## Welcome
35-
36-
I'm not a native English speaker, so if you could correct any grammer mistake, it would be very appreciated.
38+
I may not be able to reply to you directly in the marketplace.
3739

3840
## Feedback
3941

40-
If you have any question or problem, feel free to open an issue on [GitHub](https://github.com/heku/kool.vsdiff)
42+
If you have any question, feel free to open an issue on [GitHub](https://github.com/heku/kool.vsdiff).

0 commit comments

Comments
 (0)