MarcinZiabek 3 years ago
parent
commit
8214a8429d
2 changed files with 6 additions and 1 deletions
  1. 1 1
      QuestPDF/QuestPDF.csproj
  2. 5 0
      QuestPDF/Resources/ReleaseNotes.txt

+ 1 - 1
QuestPDF/QuestPDF.csproj

@@ -3,7 +3,7 @@
         <Authors>MarcinZiabek</Authors>
         <Authors>MarcinZiabek</Authors>
         <Company>CodeFlint</Company>
         <Company>CodeFlint</Company>
         <PackageId>QuestPDF</PackageId>
         <PackageId>QuestPDF</PackageId>
-        <Version>2022.9.0</Version>
+        <Version>2022.9.1</Version>
         <PackageDescription>QuestPDF is an open-source, modern and battle-tested library that can help you with generating PDF documents by offering friendly, discoverable and predictable C# fluent API.</PackageDescription>
         <PackageDescription>QuestPDF is an open-source, modern and battle-tested library that can help you with generating PDF documents by offering friendly, discoverable and predictable C# fluent API.</PackageDescription>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <LangVersion>9</LangVersion>
         <LangVersion>9</LangVersion>

+ 5 - 0
QuestPDF/Resources/ReleaseNotes.txt

@@ -4,3 +4,8 @@
 - Significantly reduced memory allocation cost for TextStyle objects,
 - Significantly reduced memory allocation cost for TextStyle objects,
 - Implemented optional checking if all font glyphs are available,
 - Implemented optional checking if all font glyphs are available,
 - Minor text-rendering optimizations.
 - Minor text-rendering optimizations.
+
+2022.9.1
+- Fixed: text hyperlinks do not work when the CheckIfAllTextGlyphsAreAvailable option or text fallback are used,
+- Fixed: cells with RowSpan (greater than 1) are not always displayed properly,
+- Improved predictability of the Inlined element when measuring its children.