Skip to content

Commit c1d7d7a

Browse files
Update to v10.4 label.
1 parent df00e1f commit c1d7d7a

File tree

7 files changed

+17
-6
lines changed

7 files changed

+17
-6
lines changed

CHANGELOG.md

Lines changed: 13 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,29 @@
11
# Changelog
22

3-
## vNext (10.4)
3+
## vNext (10.5)
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
- [x] Features
88

99
- [x] Fixes
10-
- [x] [#440](https://github.com/codecadwallader/codemaid/issues/440) - Cleaning: Exclude *.min.css and *.min.js files by default
1110

1211
## Previous Releases
1312

1413
These are the changes to each version that has been released to the Visual Studio marketplace.
1514

15+
## 10.4
16+
17+
**2017-03-26**
18+
19+
- [x] Features
20+
- [x] [#444](https://github.com/codecadwallader/codemaid/pull/444) - Cleaning: VB now supports many of the same cleanups as C# - thanks [thehutman](https://github.com/thehutman)!
21+
- [x] [#449](https://github.com/codecadwallader/codemaid/pull/449) - Undo a previous pull request for hiding Spade during full screen mode (inconsistent with other extensions) - thanks [iouri-s](https://github.com/iouri-s)!
22+
23+
- [x] Fixes
24+
- [x] [#333](https://github.com/codecadwallader/codemaid/issues/333) - Reorganizing: VB now moves attributes - thanks [thehutman](https://github.com/thehutman)!
25+
- [x] [#440](https://github.com/codecadwallader/codemaid/issues/440) - Cleaning: Exclude *.min.css and *.min.js files by default
26+
1627
## 10.3
1728

1829
**2017-03-26**

CodeMaid/Integration/Images/about.png

-189 Bytes
Loading

CodeMaid/Integration/Images/about.xcf

1 Byte
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 = "10.3";
9+
public const string Version = "10.4";
1010
public const string Author = "Steve Cadwallader";
1111
public const string Tags = "build, code, c#, beautify, cleanup, cleaning, digging, reorganizing, formatting";
1212
}

CodeMaid/source.extension.vsixmanifest

Lines changed: 1 addition & 1 deletion
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="10.3" Id="4c82e17d-927e-42d2-8460-b473ac7df316" Language="en-US" />
4+
<Identity Publisher="Steve Cadwallader" Version="10.4" 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>

README.md

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

3-
<div id="mainFeatures"><a title="codemaid.net" href="http://www.codemaid.net" target="_blank"><img src="http://www.codemaid.net/wp-content/uploads/2017/03/about.png" alt="codemaid.net" /></a></div>
3+
<div id="mainFeatures"><a title="codemaid.net" href="http://www.codemaid.net" target="_blank"><img src="http://www.codemaid.net/wp-content/uploads/2017/05/about.png" alt="codemaid.net" /></a></div>
44
<div>For more details, please visit: <a title="codemaid.net" href="http://www.codemaid.net" target="_blank"> http://www.codemaid.net</a></div>
55
<p>Currently supports VS2012, VS2013, VS2015 and VS2017.</p>
66
<p>For Visual Studio 2010, the last supported version is <a href="https://github.com/codecadwallader/codemaid/releases/download/v0.8.1/CodeMaid_v0.8.1.vsix" target="_blank"> v0.8.1</a>.</p>

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
version: 10.3.{build}
1+
version: 10.4.{build}
22
image: Visual Studio 2017
33

44
install:

0 commit comments

Comments
 (0)