Skip to content

Releases: zzzprojects/html-agility-pack

v1.5.0-beta92

24 Jun 18:20
Compare
Choose a tag to compare

Download the library here

ADDED: LoadFromBrowser (Issue #6)
ADDED: HtmlDocument.OptionEmptyCollection (Issue #23)
FIXED: HtmlAttribute.Value now use DeEntitize (Issue #19)

v1.5.0-beta91

21 Jun 23:50
Compare
Choose a tag to compare

Download the library here

FIXED: Issue with assembly name for .NETStandard1.3 (Pull Requests #24)

Thank you @lukecolburn for your contribution

v1.5.0-beta90

21 Jun 23:20
Compare
Choose a tag to compare

Download the library here

FIXED: Issue with dependencies for .NETStandard1.3 (Issue #22)

v1.5.0-beta9

17 Jun 15:24
Compare
Choose a tag to compare

Download the library here

ADDED: Support to .NET Standard 1.3 (Issue #13)
ADDED: Node.AddClass (Issue #10)
ADDED: Node.RemoveClass (Issue #10)
ADDED: Node.ReplaceClass (Issue #10)
FIXED: Remove, RemoveAt method was not calling SetChanged (Issue #18)
FIXED: Issue with multiple EmptyTag not parsed correctly (Issue #16)

v1.5.0-beta8

14 Jun 15:34
Compare
Choose a tag to compare

Download the library here

FIXED: UsingCache + web.Load was not loading html in the HtmlDocument returned (Issue #15)
FIXED: Issue with Attribute.Remove

Thank you @josteink for your contribution

v1.5.0-beta7

13 Jun 19:20
Compare
Choose a tag to compare

Download the library here

FIXED: Error with attribute preceded by "/" (Issue #16) with Pull Request: #17
FIXED: DetectEncoding method was returning null was an encoding was found.

Thank you @josteink for your contribution

v1.5.0-beta6

07 Jun 01:43
Compare
Choose a tag to compare

Download the library here

FIXED: CloneNode - QuoteType was not copied (Issue #11)
FIXED: CopyFrom - QuoteType was not copied (Issue #11)

v1.5.0-beta5

23 May 13:24
Compare
Choose a tag to compare

Download the library here

ADDED: Descendants() method to fix issue from Fizzler (#4)
FIXED: CopyFrom "deep" parameter was doing the inverse logic.

v1.5.0-beta4

22 May 14:28
Compare
Choose a tag to compare

Download the library here

FIXED: When ContentType is null or default, try to load as HTML a first time

v1.5.0-beta3

21 May 12:58
Compare
Choose a tag to compare

Download the library here

FIXED: p tag not parsed correctly (Issue #1). A temporary option has been added DisableBehavaiorTagP

IMPORTANT: This option must be set before the first use of the library

HtmlAgilityPack.HtmlDocument.DisableBehavaiorTagP = true;

FIXED: Special Characters not correctly handled with Entitize (Issue #3)

// Was throwing a System.Collections.Generic.KeyNotFoundException before
var r = HtmlEntity.Entitize("\u009d");