GroupDocs.Merger for .NET 19.11 Release Notes

There are a few new other features in this regular monthly release. The most notable are:

  • Fixed loading of the password-protected Odp and Otp formats;
  • Fixed Total license loading for .Net standard product.

Full List of Issues Covering all Changes in this Release

KeySummaryCategory
MERGERNET-557Protected Odp and Otp is not supportedBug
MERGERNET-733Compatibility issues under .NET Standard 2.0Bug

Public API and Backward Incompatible Changes

  1. Refactoring options and enumerations related to Split operation
    1. Renamed options and enumerations related to Split operation
      1. Renamed class PageSplitOptions to SplitOptions;
      2. Removed interface IPageSplitOptions and used ISplitOptions instead;
      3. Renamed enumeration PageSplitMode to SplitMode.
    2. Moved PageSplitOptions (SplitOptions after renaming) constructor optional parameters to the end of parameters list:
      1. Changed parameters order PageSplitOptions(string filePathFormat, PageSplitMode splitMode, int[] pageNumbers)
        to SplitOptions(string filePathFormat, int[] pageNumbers, SplitMode splitMode);
      2. Changed parameters order PageSplitOptions(CreateSplitStream createSplitStream, PageSplitMode splitMode, int[] pageNumbers)
        to SplitOptions(CreateSplitStream createSplitStream, int[] pageNumbers, SplitMode splitMode);
      3. Changed parameters order PageSplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, PageSplitMode splitMode, int[] pageNumbers)
        to SplitOptions(CreateSplitStream createSplitStream, ReleaseSplitStream releaseSplitStream, int[] pageNumbers, SplitMode splitMode).