GroupDocs.Comparison for .NET 18.8 Release Notes

Major Features

Below the list of most notable changes in  release of GroupDocs.Comparison for .NET 18.8:

  • Implemented new settings for text highlighting for the number of Comparison formats (Html, Slides, Notes, Pdf, Words)
  • Improve PDF mapper
  • Improve support of comparing different formats with image
  • Fixed number of issues of specific PDF documents comparing

Full List of Issues Covering all Changes in this Release

KeySummaryIssue Type
COMPARISONNET-1637Implement new Setting for text highlighting Comparison.HtmlNew Feature
COMPARISONNET-1636Implement new Setting for text highlighting Comparison.SlidesNew Feature
COMPARISONNET-1635Implement new Setting for text highlighting Comparison.NotesNew Feature
COMPARISONNET-1634Implement new Setting for text highlighting Comparison.PdfNew Feature
COMPARISONNET-1633Implement new Setting for text highlighting Comparison.WordsNew Feature
COMPARISONNET-1644Improve PDF mapperImprovement
COMPARISONNET-1640Improve support of comparing different formats with imageImprovement
COMPARISONNET-1620Output of PDF with graphs is not as expectedBug
COMPARISONNET-1619Output of PDF with images is not as expectedBug

Public API and Backward Incompatible Changes

  1. Inserted, deleted and style changed items styles setting used for set font color, highlight color , styles(bold, italic, underline, strike through) and tags for marked changes in result document:

    settings.InsertedItemsStyle.FontColor = System.Drawing.Color.Brown;
    settings.InsertedItemsStyle.HighlightColor = System.Drawing.Color.Red;
    settings.InsertedItemsStyle.BeginSeparatorString = "<inserted>";
    settings.InsertedItemsStyle.EndSeparatorString = "</inserted>";
    
    settings.DeletedItemsStyle.FontColor = System.Drawing.Color.Aquamarine;
    settings.DeletedItemsStyle.HighlightColor = System.Drawing.Color.Blue;
    settings.DeletedItemsStyle.BeginSeparatorString = "<deleted>";
    settings.DeletedItemsStyle.EndSeparatorString = "</deleted>";
    
    settings.StyleChangedItemsStyle.FontColor = System.Drawing.Color.Aqua;
    settings.StyleChangedItemsStyle.HighlightColor = System.Drawing.Color.Green;
    settings.StyleChangedItemsStyle.BeginSeparatorString = "<style>";
    settings.StyleChangedItemsStyle.EndSeparatorString = "</style>";