Skip to content

Commit

Permalink
Release-v.1.3.0
Browse files Browse the repository at this point in the history
Release v 1 3 0
  • Loading branch information
Enache-Ionut authored Oct 19, 2017
2 parents 2155508 + 85fcb22 commit 3ea5929
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 17 deletions.
47 changes: 32 additions & 15 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,20 +2,31 @@

Changelog of Clang Power Tools extension

### Clang Power Tools 1.0.0
### Clang Power Tools 1.3.0

First official release.
Improvements:
* Added support for ignoring specific files
* Added support for treating warnings as errors
* Detect Visual Studio 2015 / 2017 custom installation paths
* Enabled compilation for all files included in the Vcxproj <ClCompile> section

### Clang Power Tools 1.0.1
Bugs:
* Fixed project detection when the project name from UI is different of the project name on the disk.
* Prevents the Output window from stealing the focus.
* Fixed the detection for modified files after clang tidy fix.
* Fixed the "Project To Ignore" option

### Clang Power Tools 1.2.0

Improvements:
* Automatically detect clang installation folder.
* Support for projects without PCH/stdafx.
* Added clang warnings and messages with line navigation in both output pane and error list.
* Included clang notification(errors, warnings, messages) in Build Only category.
* Formatted clang output.

Bugs:
* Fixed navigation to clang error in code editor.
* Fixed clang error parse algorithm.
* Fixed detection when lightweight solution load is enabled.
* Fixed clang error detection algorithm.
* Fixed clang errors line navigation from output pane.
* Fixed the vsix installer detection for VS2017.

### Clang Power Tools 1.1.0

Expand All @@ -35,14 +46,20 @@ Bugs:
* Removed restriction to CPP files when looking for ClCompile entries.
* Fixed compilation when vcxproj has both 32 and 64 bit platform configrations.

### Clang Power Tools 1.2.0
### Clang Power Tools 1.0.1

Improvements:
* Added clang warnings and messages with line navigation in both output pane and error list.
* Included clang notification(errors, warnings, messages) in Build Only category.
* Formatted clang output.
* Automatically detect clang installation folder.
* Support for projects without PCH/stdafx.

Bugs:
* Fixed clang error detection algorithm.
* Fixed clang errors line navigation from output pane.
* Fixed the vsix installer detection for VS2017.
* Fixed navigation to clang error in code editor.
* Fixed clang error parse algorithm.
* Fixed detection when lightweight solution load is enabled.

### Clang Power Tools 1.0.0

First official release.



2 changes: 1 addition & 1 deletion ClangPowerTools/ClangPowerTools/GeneralOptions.cs
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ public class GeneralOptions : DialogPage
[Category("General")]
[DisplayName("Treat Warnings As Errors")]
[Description("Treats all compiler warnings as errors. For a new project, it may be best to use in all compilations; resolving all warnings will ensure the fewest possible hard to find code defects.")]
public bool TreatWarningsAsErrors { get; set; }
public bool TreatWarningsAsErrors { get; set; } = true;

[Category("General")]
[DisplayName("Compile Flags")]
Expand Down
Original file line number Diff line number Diff line change
@@ -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="Caphyon.705559db-5755-43fa-a023-41a3b14d2935" Version="1.2.0" Language="en-US" Publisher="Caphyon" />
<Identity Id="Caphyon.705559db-5755-43fa-a023-41a3b14d2935" Version="1.3.0" Language="en-US" Publisher="Caphyon" />
<DisplayName>Clang Power Tools</DisplayName>
<Description xml:space="preserve">A tool bringing clang-tidy magic to Visual Studio C++ developers.</Description>
<MoreInfo>https://github.com/Caphyon/clang-power-tools</MoreInfo>
Expand Down

0 comments on commit 3ea5929

Please sign in to comment.