Skip to content

Commit

Permalink
1.3.3 - release that presumably fixes #142
Browse files Browse the repository at this point in the history
  • Loading branch information
VioletGiraffe committed Mar 24, 2016
1 parent b41e68a commit 1d3f3b0
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion CPPCheckPlugin/ICodeAnalyzer.cs
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ private void startAnalyzerProcess(string analyzerExePath, string arguments)
{
process.PriorityClass = ProcessPriorityClass.Idle;
}
catch (System.InvalidOperationException ex)
catch (System.InvalidOperationException)
{
}

Expand Down
36 changes: 18 additions & 18 deletions CPPCheckPlugin/source.extension.vsixmanifest
Original file line number Diff line number Diff line change
@@ -1,21 +1,21 @@
<?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="127d8bd3-8cd7-491a-9a63-9b4e89118da9" Version="1.3.1" Language="en-US" Publisher="-" />
<DisplayName>cppcheck add-in</DisplayName>
<Description xml:space="preserve">Integration for cppcheck - C/C++ code static analysis tool </Description>
<License>PackageInstallerLicense.txt</License>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,14.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Premium" Version="[11.0,14.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Ultimate" Version="[11.0,14.0]" />
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
<Dependency Id="Microsoft.VisualStudio.MPF" DisplayName="Visual Studio MPF" d:Source="Installed" Version="[11.0,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
<Metadata>
<Identity Id="127d8bd3-8cd7-491a-9a63-9b4e89118da9" Version="1.3.3" Language="en-US" Publisher="-" />
<DisplayName>cppcheck add-in</DisplayName>
<Description xml:space="preserve">Integration for cppcheck - C/C++ code static analysis tool </Description>
<License>PackageInstallerLicense.txt</License>
</Metadata>
<Installation>
<InstallationTarget Id="Microsoft.VisualStudio.Pro" Version="[11.0,14.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Premium" Version="[11.0,14.0]" />
<InstallationTarget Id="Microsoft.VisualStudio.Ultimate" Version="[11.0,14.0]" />
</Installation>
<Dependencies>
<Dependency Id="Microsoft.Framework.NDP" DisplayName="Microsoft .NET Framework" d:Source="Manual" Version="[4.5,)" />
<Dependency Id="Microsoft.VisualStudio.MPF" DisplayName="Visual Studio MPF" d:Source="Installed" Version="[11.0,)" />
</Dependencies>
<Assets>
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
</Assets>
</PackageManifest>

5 comments on commit 1d3f3b0

@Dmitry-Me
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

What exactly changed?

@VioletGiraffe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The version number. The actual fix was submitted by bugparty a couple commits ago.

@Dmitry-Me
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I guess this is the substantial change 51dc1c6

@VioletGiraffe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yep.

@VioletGiraffe
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It fixes MPF, but it seems that #142 is currently caused by Shell.

Please sign in to comment.