Skip to content

Commit 87f7884

Browse files
Update to v12.0 label
1 parent 4b93594 commit 87f7884

File tree

7 files changed

+21
-12
lines changed

7 files changed

+21
-12
lines changed

CHANGELOG.md

Lines changed: 14 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,31 @@
11
# Changelog
22

3-
## vNext (12.0)
3+
## vNext (12.1)
44

55
These changes have not been released to the Visual Studio marketplace, but (if checked) are available in preview within the [CI build](http://vsixgallery.com/extension/4c82e17d-927e-42d2-8460-b473ac7df316/).
66

77
- [ ] Features
8+
9+
- [ ] Fixes
10+
11+
## Previous Releases
12+
13+
These are the changes to each version that has been released to the Visual Studio marketplace.
14+
15+
## 12.0
16+
17+
**2021-11-07**
18+
19+
- [x] Features
820
- [x] [#778](https://github.com/codecadwallader/codemaid/pull/778) - Cleaning: Option to specify file inclusions by RegEx - thanks [Timo-Weike](https://github.com/Timo-Weike)!
921
- [x] [#797](https://github.com/codecadwallader/codemaid/pull/797) - Cleaning: Option to replace existing file headers (vs. default insert) - thanks [lflender](https://github.com/lflender)!
1022
- [x] [#815](https://github.com/codecadwallader/codemaid/pull/815) - Cleaning: Option to place file headers after C# using block - thanks [lflender](https://github.com/lflender)!
1123
- [x] [#828](https://github.com/codecadwallader/codemaid/pull/828) - Reorganizing: Option to include access levels in regions for methods only - thanks [lflender](https://github.com/lflender)!
1224
- [x] [#853](https://github.com/codecadwallader/codemaid/pull/853) - Visual Studio 2022 Support - thanks [olegtk](https://github.com/olegtk) and many others!
1325

14-
- [ ] Fixes
26+
- [x] Fixes
1527
- [x] [#800](https://github.com/codecadwallader/codemaid/pull/800) - Reorganizing: Fix dialog showing literal newline characters
1628

17-
## Previous Releases
18-
19-
These are the changes to each version that has been released to the Visual Studio marketplace.
2029

2130
## 11.2
2231

CodeMaid.VS2022/source.extension.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
namespace SteveCadwallader.CodeMaid
22
{
3-
static class Vsix
3+
internal static class Vsix
44
{
55
public const string Id = "4c82e17d-927e-42d2-8460-b473ac7df316";
66
public const string Name = "CodeMaid";
77
public const string Description = "CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, R, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.";
88
public const string Language = "en-US";
9-
public const string Version = "11.2";
9+
public const string Version = "12.0";
1010
public const string Author = "Steve Cadwallader";
1111
public const string Tags = "build, code, c#, beautify, cleanup, cleaning, digging, reorganizing, formatting";
1212
}
13-
}
13+
}

CodeMaid.VS2022/source.extension.vsixmanifest

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<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">
33
<Metadata>
4-
<Identity Publisher="Steve Cadwallader" Version="11.2" Id="4c82e17d-927e-42d2-8460-b473ac7df316" Language="en-US" />
4+
<Identity Publisher="Steve Cadwallader" Version="12.0" Id="4c82e17d-927e-42d2-8460-b473ac7df316" Language="en-US" />
55
<DisplayName>CodeMaid</DisplayName>
66
<Description xml:space="preserve">CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, R, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.</Description>
77
<MoreInfo>http://www.codemaid.net/</MoreInfo>
@@ -24,4 +24,4 @@
2424
<Assets>
2525
<Asset Type="Microsoft.VisualStudio.VsPackage" d:Source="Project" d:ProjectName="%CurrentProject%" Path="|%CurrentProject%;PkgdefProjectOutputGroup|" />
2626
</Assets>
27-
</PackageManifest>
27+
</PackageManifest>

CodeMaid/Integration/Images/about.png

412 Bytes
Loading

CodeMaid/Integration/Images/about.xcf

474 Bytes
Binary file not shown.

CodeMaid/source.extension.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ static class Vsix
66
public const string Name = "CodeMaid";
77
public const string Description = "CodeMaid is an open source Visual Studio extension to cleanup and simplify our C#, C++, F#, VB, PHP, PowerShell, R, JSON, XAML, XML, ASP, HTML, CSS, LESS, SCSS, JavaScript and TypeScript coding.";
88
public const string Language = "en-US";
9-
public const string Version = "11.2";
9+
public const string Version = "12.0";
1010
public const string Author = "Steve Cadwallader";
1111
public const string Tags = "build, code, c#, beautify, cleanup, cleaning, digging, reorganizing, formatting";
1212
}

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<link href="https://www.codemaid.net/wp-content/uploads/external/ProjectDescription.css" rel="stylesheet"></link>
22

3-
<div id="mainFeatures"><a title="codemaid.net" href="https://www.codemaid.net" target="_blank"><img src="https://www.codemaid.net/wp-content/uploads/2021/01/about.png" alt="codemaid.net" /></a></div>
3+
<div id="mainFeatures"><a title="codemaid.net" href="https://www.codemaid.net" target="_blank"><img src="https://www.codemaid.net/wp-content/uploads/2021/11/about.png" alt="codemaid.net" /></a></div>
44
<div>For more details, please visit: <a title="codemaid.net" href="https://www.codemaid.net" target="_blank"> https://www.codemaid.net</a></div>
55
<p>Currently supports VS2019 and VS2022.</p>
66
<p>For Visual Studio 2017, the last supported version is <a href="https://github.com/codecadwallader/codemaid/releases/download/v11.2/CodeMaid.v11.2.231.vsix" target="_blank"> v11.2</a>.</p>

0 commit comments

Comments
 (0)