GroupDocs.Comparison for .NET 23.3 Release Notes

Full list of changes in this release

KeyCategorySummary
COMPARISONNET-3376FeatureSetting author of changes
COMPARISONNET-3280FixException throws when comparing vsdx files
COMPARISONNET-3352FixWatermark placement changes are not detected in Word comparison
COMPARISONNET-3380FixWord comparison doesn’t show what style changes have been made
COMPARISONNET-3379FixComparer.Compare does not terminate when comparing documents

Major Features

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

  • Fixed exception with comparing vsdx documents
  • Fixed issue with watermark offset being ignored
  • Fixed issue with ignoring style changes in Word format
  • Fixed issue of stopping the program on Comparer.Compare
  • Added setting author of changes

Watermark Coordinate Change Detection

Before 23.3 the fact of changing watermark position on Words documents was not detected. We’ve added ability to detect watermark position change, see screenshot below Compare watermark example

Setting author of changes

  1. To set new changes author, you can use the following code:
using (Comparer comparer = new Comparer(sourcePath))
{
    comparer.Add(targetPath);
	CompareOptions options = new CompareOptions()
    {
        ShowRevisions = true,
        WordTrackChanges = true,
        RevisionAuthorName = "New author",
    };
    comparer.Compare(resultPath, options);
}

set new author of changes example More about setting changes author can be found here.