Skip to content

Commit

Permalink
Version 1.12.24
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Nov 13, 2020
1 parent 0754397 commit 3f50844
Show file tree
Hide file tree
Showing 11 changed files with 19 additions and 12 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
Change log
==========

## v1.12.24 - November 13, 2020
* In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of NUglify minifiers
* In BundleTransformer.Autoprefixer added support of the Autoprefixer version 10.0.2.0
* In BundleTransformer.NUglify:
* Added support of the NUglify version 1.10.0
* In configuration settings of minifiers was added one new property - `IndentType` (default `Space`)

## v1.12.23 - November 2, 2020
* In BundleTransformer.TypeScript added support of the TypeScript version 4.0.5
* In BundleTransformer.Autoprefixer added support of the Autoprefixer version 10.0.1.1
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@
[assembly: ComVisible(false)]
[assembly: Guid("d858d771-b511-4517-bc9a-6feb6d0c4c3e")]

[assembly: AssemblyVersion("1.12.23.0")]
[assembly: AssemblyFileVersion("1.12.23.0")]
[assembly: AssemblyVersion("1.12.24.0")]
[assembly: AssemblyFileVersion("1.12.24.0")]
4 changes: 2 additions & 2 deletions samples/BundleTransformer.Sample.AspNet45.Mvc4/Web.config
Original file line number Diff line number Diff line change
Expand Up @@ -243,15 +243,15 @@
<css allowEmbeddedAspNetBlocks="false" blocksStartOnSameLine="NewLine"
ignoreAllErrors="false" ignoreErrorList=""
indentSize="4" indentType="Space"
lineBreakThreshold="2147482647" outputMode="MultipleLines"
lineBreakThreshold="2147482647" outputMode="SingleLine"
preprocessorDefineList="" termSemicolons="false"
colorNames="Hex" commentMode="Important" decodeEscapes="true"
fixIE8Fonts="true" minifyExpressions="true"
removeEmptyBlocks="true" severity="0" />
<js allowEmbeddedAspNetBlocks="false" blocksStartOnSameLine="NewLine"
ignoreAllErrors="false" ignoreErrorList=""
indentSize="4" indentType="Space"
lineBreakThreshold="2147482647" outputMode="MultipleLines"
lineBreakThreshold="2147482647" outputMode="SingleLine"
preprocessorDefineList="" termSemicolons="false"
alwaysEscapeNonAscii="false" amdSupport="false"
collapseToLiteral="true" constStatementsMozilla="false"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: Autoprefixer</Product>
<VersionPrefix>1.12.23</VersionPrefix>
<VersionPrefix>1.12.24</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.Autoprefixer/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: Autoprefixer v1.12.23
README file for Bundle Transformer: Autoprefixer v1.12.24

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2011/08/nuspec.xsd">
<metadata>
<id>BundleTransformer.ConfigurationIntelliSense</id>
<version>1.12.9</version>
<version>1.12.24</version>
<title>Bundle Transformer: IntelliSense</title>
<authors>Andrey Taritsyn</authors>
<owners>Andrey Taritsyn</owners>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.ConfigurationIntelliSense/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: IntelliSense v1.12.9
README file for Bundle Transformer: IntelliSense v1.12.24

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: NUglify</Product>
<VersionPrefix>1.12.23</VersionPrefix>
<VersionPrefix>1.12.24</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ protected static IndentType GetIndentType(string indent)
{
IndentType indentType = IndentType.Space;

if (!string.IsNullOrEmpty(indent))
if (indent.Length > 0)
{
char firstCharacter = indent[0];
indentType = firstCharacter == '\t' ? IndentType.Tab : IndentType.Space;
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.NUglify/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: NUglify v1.12.23
README file for Bundle Transformer: NUglify v1.12.24

--------------------------------------------------------------------------------

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: Tests</Product>
<VersionPrefix>1.12.23</VersionPrefix>
<VersionPrefix>1.12.24</VersionPrefix>
<TargetFramework>net452</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 3f50844

Please sign in to comment.