release notes
This commit is contained in:
parent
4ca4ecc07f
commit
53734e0f8d
|
@ -0,0 +1,4 @@
|
|||
Version 1.4:
|
||||
* Added options dialog (Tools->Options->Ding). Now it is possible to enable/disable what sounds to play. Thanks to https://github.com/dannoh
|
||||
* Added option to play sounds only if Visual Studio in background. Thanks to https://github.com/dannoh
|
||||
* Support for Visual studio 2015
|
|
@ -155,6 +155,10 @@
|
|||
<Content Include="..\VsDingExtensionProject\Resources\build.wav" />
|
||||
<Content Include="..\VsDingExtensionProject\Resources\debug.wav" />
|
||||
<Content Include="..\VsDingExtensionProject\Resources\ding.wav" />
|
||||
<Content Include="ReleaseNotes.txt">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<IncludeInVSIX>true</IncludeInVSIX>
|
||||
</Content>
|
||||
<Content Include="speaker2012.ico">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<IncludeInVSIX>true</IncludeInVSIX>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<?xml version="1.0" encoding="utf-8"?>
|
||||
<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">
|
||||
<Metadata>
|
||||
<Identity Id="ab75aa82-c4e8-42a7-b4ec-b5bae2fa4925" Version="1.3" Language="en-US" Publisher="Vitalii Ganzha" />
|
||||
<Identity Id="ab75aa82-c4e8-42a7-b4ec-b5bae2fa4925" Version="1.4" Language="en-US" Publisher="Vitalii Ganzha" />
|
||||
<DisplayName>Visual Studio Ding extension for VS 2012</DisplayName>
|
||||
<Description xml:space="preserve">This small extension will play notification sounds when following events occur:
|
||||
- Build Complete
|
||||
|
@ -16,6 +16,7 @@ This is an open source project, join!
|
|||
|
||||
Twitter: @GanzhaVitalii</Description></Description>
|
||||
<MoreInfo>https://github.com/thecoderok/vsdingextension</MoreInfo>
|
||||
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
|
||||
<Icon>speaker2012.ico</Icon>
|
||||
<Tags>Productivity</Tags>
|
||||
</Metadata>
|
||||
|
|
|
@ -0,0 +1,4 @@
|
|||
Version 1.4:
|
||||
* Added options dialog (Tools->Options->Ding). Now it is possible to enable/disable what sounds to play. Thanks to https://github.com/dannoh
|
||||
* Added option to play sounds only if Visual Studio in background. Thanks to https://github.com/dannoh
|
||||
* Support for Visual studio 2015
|
|
@ -181,6 +181,10 @@
|
|||
<None Include="Key.snk" />
|
||||
</ItemGroup>
|
||||
<ItemGroup>
|
||||
<Content Include="ReleaseNotes.txt">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<IncludeInVSIX>true</IncludeInVSIX>
|
||||
</Content>
|
||||
<Content Include="speaker.ico">
|
||||
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
|
||||
<IncludeInVSIX>true</IncludeInVSIX>
|
||||
|
|
|
@ -16,6 +16,7 @@ This is an open source project, join!
|
|||
|
||||
Twitter: @GanzhaVitalii</Description>
|
||||
<MoreInfo>https://github.com/thecoderok/vsdingextension</MoreInfo>
|
||||
<ReleaseNotes>ReleaseNotes.txt</ReleaseNotes>
|
||||
<Icon>speaker.ico</Icon>
|
||||
<Tags>productivity</Tags>
|
||||
</Metadata>
|
||||
|
|
Loading…
Reference in New Issue