Skip to content

Commit

Permalink
Version 1.13.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Taritsyn committed Dec 18, 2022
1 parent 77954ed commit 0ff7371
Show file tree
Hide file tree
Showing 10 changed files with 62 additions and 239 deletions.
10 changes: 10 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,16 @@
Change log
==========

## v1.13.0 - December 18, 2022
* In BundleTransformer.ConfigurationIntelliSense updated definitions for configuration settings of Sass and SCSS translator
* In BundleTransformer.SassAndScss:
* Now the [Dart Sass Host](https://github.com/Taritsyn/DartSassHost) library (requires installation and registration of the JS engine) is used instead of the [LibSass Host](https://github.com/Taritsyn/LibSassHost)
* In configuration settings of Sass and SCSS translator was added one new property - `JsEngine`
* From configuration settings of Sass and SCSS translator was removed two properties: `Precision` and `SourceComments`
* In configuration settings of Sass and SCSS translator was added one new property - `Severity` (default `0`)
* `VirtualFileManager` class was made public
* Conversion of the application-relative paths (starts with `~/`) to an absolute virtual paths is no longer supported in the `url()` functions if its value contains an interpolation and unquoted (for example, `url(#{$icons-path}/computer.png)`). For normal working, such values should be quoted (for example, `url("#{$icons-path}/computer.png")` or `url('#{$icons-path}/computer.png')`).

## v1.12.55 - December 15, 2022
* In BundleTransformer.NUglify added support of the NUglify version 1.20.4

Expand Down
Original file line number Diff line number Diff line change
@@ -1,25 +1,21 @@

Copyright (C) 2012-2016 by the Sass Open Source Foundation

Permission is hereby granted, free of charge, to any person obtaining a copy of
this software and associated documentation files (the "Software"), to deal in
the Software without restriction, including without limitation the rights to
use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies
of the Software, and to permit persons to whom the Software is furnished to do
so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.


The following files in the spec were taken from the original Ruby Sass project which
is copyright Hampton Catlin, Nathan Weizenbaum, and Chris Eppstein and under
the same license.
MIT License

Copyright (c) 2020-2022 Andrey Taritsyn

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
20 changes: 20 additions & 0 deletions Licenses/dart-sass-license.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
Copyright (c) 2016, Google Inc.

Permission is hereby granted, free of charge, to any person obtaining
a copy of this software and associated documentation files (the
"Software"), to deal in the Software without restriction, including
without limitation the rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of the Software, and to
permit persons to whom the Software is furnished to do so, subject to
the following conditions:

The above copyright notice and this permission notice shall be
included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
203 changes: 0 additions & 203 deletions Licenses/libsass-host-license.txt

This file was deleted.

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.55.0")]
[assembly: AssemblyFileVersion("1.12.55.0")]
[assembly: AssemblyVersion("1.13.0.0")]
[assembly: AssemblyFileVersion("1.13.0.0")]
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<Product>Bundle Transformer: IntelliSense</Product>
<VersionPrefix>1.12.49</VersionPrefix>
<VersionPrefix>1.13.0</VersionPrefix>
<TargetFramework>net40</TargetFramework>
</PropertyGroup>

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.49
README file for Bundle Transformer: IntelliSense v1.13.0

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

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

<PropertyGroup>
<Product>Bundle Transformer: Sass and SCSS</Product>
<VersionPrefix>1.12.36</VersionPrefix>
<VersionPrefix>1.13.0</VersionPrefix>
<TargetFramework>net40</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down Expand Up @@ -66,13 +66,13 @@ As a JS engine is used the JavaScript Engine Switcher library (https://github.co
<Pack>true</Pack>
</Content>

<None Include="../../Licenses/libsass-license.txt">
<PackagePath>libsass-license.txt</PackagePath>
<None Include="../../Licenses/dart-sass-license.txt">
<PackagePath>dart-sass-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
<None Include="../../Licenses/libsass-host-license.txt">
<PackagePath>libsass-host-license.txt</PackagePath>
<None Include="../../Licenses/dart-sass-host-license.txt">
<PackagePath>dart-sass-host-license.txt</PackagePath>
<Pack>true</Pack>
<Visible>false</Visible>
</None>
Expand Down
2 changes: 1 addition & 1 deletion src/BundleTransformer.SassAndScss/readme.txt
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@


--------------------------------------------------------------------------------
README file for Bundle Transformer: Sass and SCSS v1.12.36
README file for Bundle Transformer: Sass and SCSS v1.13.0

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

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.55</VersionPrefix>
<VersionPrefix>1.13.0</VersionPrefix>
<TargetFramework>net452</TargetFramework>
<OutputType>Library</OutputType>
<TreatWarningsAsErrors>true</TreatWarningsAsErrors>
Expand Down

0 comments on commit 0ff7371

Please sign in to comment.