Skip to content

Commit

Permalink
Merge pull request #91 from milkshakesoftware/v1.5.0
Browse files Browse the repository at this point in the history
v1.5.0
  • Loading branch information
martinnormark committed Feb 23, 2016
2 parents f513963 + e65e887 commit f088b4b
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 9 deletions.
6 changes: 3 additions & 3 deletions PreMailer.Net/GlobalAssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@

[assembly: AssemblyProduct("PreMailer.Net")]
[assembly: AssemblyCompany("Milkshake Software")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2015")]
[assembly: AssemblyCopyright("Copyright © Milkshake Software 2016")]

[assembly: AssemblyVersion("1.4.3.0")]
[assembly: AssemblyFileVersion("1.4.3.0")]
[assembly: AssemblyVersion("1.5.0.0")]
[assembly: AssemblyFileVersion("1.5.0.0")]

#if DEBUG
[assembly: AssemblyConfiguration("Debug")]
Expand Down
9 changes: 6 additions & 3 deletions PreMailer.Net/PreMailer.Net/PreMailer.Net.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package >
<metadata>
<id>PreMailer.Net</id>
<version>1.4.3</version>
<version>1.5.0</version>
<authors>Martin H. Normark</authors>
<owners>milkshakesoftware</owners>
<licenseUrl>https://github.com/milkshakesoftware/PreMailer.Net/blob/master/LICENSE</licenseUrl>
Expand All @@ -13,12 +13,15 @@
PreMailer.Net is a C# utility for moving CSS to inline style attributes, to gain maximum E-mail client compatibility.
</description>
<releaseNotes>
Added support for LINK tags and download CSS https://github.com/milkshakesoftware/PreMailer.Net/pull/72
Replaced CsQuery with AngleSharp https://github.com/milkshakesoftware/PreMailer.Net/pull/76
Add Position property to StyleClass class https://github.com/milkshakesoftware/PreMailer.Net/pull/81
Access to underlying Document made public https://github.com/milkshakesoftware/PreMailer.Net/pull/90
FIX: CssSelectorParser Regex Matchers are wrong https://github.com/milkshakesoftware/PreMailer.Net/pull/85
</releaseNotes>
<copyright>Copyright 2015</copyright>
<tags>email css newsletter html</tags>
<dependencies>
<dependency id="CsQuery" version="1.3.4" />
<dependency id="AngleSharp" version="0.9.4" />
</dependencies>
</metadata>
</package>
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ will make a `table` element render as
<table cellspacing="5" width="500">
```

### Custom Dom Processing
### Custom DOM Processing
```csharp
using(var pm = new PreMailer(html)){

Expand All @@ -93,10 +93,9 @@ using(var pm = new PreMailer(html)){
}
```


### Notes

- Pseudo classes/elements are not supported by [CsQuery](https://github.com/jamietre/CsQuery) (which PreMailer.Net uses internally). Any that are encountered in your HTML will be ignored and logged to the `InlineResult.Warnings` collection.
- Pseudo classes/elements which not supported by external dependencies, or doesn't make sense in email, will be ignored and logged to the `InlineResult.Warnings` collection.

## Installation
**NuGet**: [PreMailer.Net](http://nuget.org/List/Packages/PreMailer.Net)
Expand Down

0 comments on commit f088b4b

Please sign in to comment.