GroupDocs.Conversion for .NET 19.10 Release Notes

Major Features

There are 5 features, improvements and bug-fixes in this release, most notable are:

  • Introduced support of .Net Standard 2.0. It has full functionality of .NET Framework version of GroupDocs.Conversion.
  • Added an option to set timezone offset when converting from email.
  • Converting from spreadsheet to html now respects specified range for conversion.
  • Improved conversion of multi-page TIFF to PDF

Full List of Issues Covering all Changes in this Release

KeyCategorySummary
CONVERSIONNET‑3323FeatureKeep the timezone of the SENT field
CONVERSIONNET‑3330FeatureAdd .NET Standard 2.0 support
CONVERSIONNET‑3416ImprovementConverting multi-page TIFF to PDF
CONVERSIONNET‑3356FixConverting spreadsheet to html, ranges are not respected
CONVERSIONNET‑3376FixException stream is not expandable when converting to html

Public API and Backward Incompatible Changes

  1. GroupDocs.Conversion.Options.Load.EmailLoadOptions
    Introduced new property TimeZoneOffset

    /// <summary>
    /// Gets or sets the Coordinated Universal Time (UTC) offset for the message dates. This property defines the time zone difference, between the local time and UTC.
    /// </summary>
    public TimeSpan TimeZoneOffset { get; set; }
    

    Usage

    var loadOptions = new EmailLoadOptions();
    loadOptions.TimeZoneOffset = TimeSpan.FromHours(5);