Skip to content

Releases: unidoc/unioffice

v1.25.0

11 Jun 11:11
b1a55b4
Compare
Choose a tag to compare

Release notes - UniOffice - v1.25.0

This release contains improvements and bug fixes

Improvements

UO-187 DOCX Text extraction sdt content from run element

Bug Fixes

UO-184 Fix panic nil pointer issue when extracting DOCX texts
UO-185 Fix Div-by-zero when converting Docx to PDF

v1.24.0

26 May 19:02
202edbc
Compare
Choose a tag to compare

Release notes - UniOffice - v1.24.0

This release contains new features

New Features

  • UO-181 Placeholder support add table content

v1.23.0

15 Apr 20:22
736109c
Compare
Choose a tag to compare

Release notes - UniOffice - v1.23.0

This release contains improvements and bug fixes.

Improvements

  • UO-126 Convert to PDF improvement on page break properties.
  • UO-167 Handle form fields on headers and footers
  • UO-170 License expired return more detailed message
  • UO-172 DOCX text extraction from table under textbox shape element

Bug Fixes

  • UO-160 DOCX to PDF missing table properties fix
  • UO-178 Incorrect validation sheet name containing two-bytes characters

v1.22.0

01 Mar 20:00
d08e220
Compare
Choose a tag to compare

Release notes - UniOffice - v1.22.0

This release contains new features

New Features

  • UO-161 RTL run properties support
  • UO-162 Document extract text options new line
// ExtractTextOptions extraction text options.
type ExtractTextOptions struct {
	...
	// RunsOnNewLine write each of runs text on new line if set to `true`.
	RunsOnNewLine bool
}

v1.21.1

06 Dec 17:48
4ac393b
Compare
Choose a tag to compare

Release notes - UniOffice - v1.21.1

This release contains fixes and improvements.

Improvements:

  • UO-136 DOCX to PDF Conversion paragraph line spacing improvements
  • UO-151 DOCX to PDF anchor drawing for attribute allowOverlap

Bug Fixes:

  • UO-148 XLXS SharedString.GetString() panic error
  • UO-150 Fix error message customer name being swapped with expected.
  • UO-152 Use specific go-ole version to prevent x/sys being upgraded and not compatible with go1.17 below

v1.21.0

02 Sep 16:00
2df11bd
Compare
Choose a tag to compare

Release notes - UniOffice - Version 1.21.0

This release contains new features, fixes and improvements.

Improvements

  • Github Issue 427 DOCX to PDF conversion font name lookup improvement.
  • CI workflows Go version updates.

Fixes

  • UO-142 Fix small typo in README.

New features

  • Metered API Key persistent cache and non persistent cache.
  • USD-193 Table row can't split.

Added examples

  • Example for row can't split.

v1.20.0

27 Jun 20:27
82d7cda
Compare
Choose a tag to compare

Release notes - UniOffice - Version v1.20.0

This release contains multiple improvements in DOCX to PDF conversions.

Improvements

  • DOCX to PDF conversion is not supporting (a), (b) lists properly.[UO-130]
  • DOCX to PDF conversion showing repeated text whereas it is not in Word output. [UO-131]
  • DOCX to PDF conversion not including page number: 13.docx (header and footer). [UO-132]
  • DOCX to PDF conversion switches to a different font all of a sudden. [UO-133]
  • DOCX to PDF conversion: text inaccurately underlined. [UO-134]
  • DOCX to PDF conversion: Paragraph text goes to a new page when the remaining space couldn't fit the paragraph texts. [UO-135]

v1.19.0

09 Apr 15:38
e7ef588
Compare
Choose a tag to compare

Release notes - UniOffice - Version v1.19.0

This release contains improvements and added examples.

Improvements

  • Word to PDF conversions: Support font script lookup from settings [UO-129].
    This addresses a problem that was reported here #462

  • Add SlideSize and SetSize for presentation slide size [UO-127]
    This enables setting slide size for presentations other than the default.

Added examples

v1.18.0

25 Feb 19:54
e06f765
Compare
Choose a tag to compare

This release is focused on continued improvements in DOCX to PDF conversion quality.

Improvements

Improved docx to pdf conversion better accounting for tables and tab stops [USD-180]
Better results more closely resembling MS Word can now be obtained for a wider range of files.

Changes

Notable changes include additional fields in convert.Options

// EnableFontSubsetting process document with subsetting font to reduce size result.
// Default value is `true`.
EnableFontSubsetting bool

// FontFiles location of fonts for convert process.
FontFiles []string

// FontDirectory location of font directory for convert process.
// This will load all font files inside directoy if set
// we recommend to use FontFiles for better performance.
FontDirectory string

v1.17.1

05 Feb 16:16
1c0b66c
Compare
Choose a tag to compare

This release is focused on improvements in DOCX to PDF conversion quality.

Improvements

  • Improved docx to pdf conversion better accounting for default style and font inheritance [USD-178]
    Better results more closely resembling MS Word can now be obtained.