Marcin Ziąbek 2 years ago
parent
commit
755cbcf09d
2 changed files with 8 additions and 1 deletions
  1. 1 1
      Source/QuestPDF/QuestPDF.csproj
  2. 7 0
      Source/QuestPDF/Resources/ReleaseNotes.txt

+ 1 - 1
Source/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>2023.9.0</Version>
+        <Version>2023.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. Easily generate PDF reports, invoices, exports, etc.</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. Easily generate PDF reports, invoices, exports, etc.</PackageDescription>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <LangVersion>10</LangVersion>
         <LangVersion>10</LangVersion>

+ 7 - 0
Source/QuestPDF/Resources/ReleaseNotes.txt

@@ -1,3 +1,10 @@
 Version 2023.9.0
 Version 2023.9.0
 - In-code IntelliSense documentation for all public APIs,
 - In-code IntelliSense documentation for all public APIs,
 - Improvement: the Row element respects now available vertical space, which is closer to expected behavior
 - Improvement: the Row element respects now available vertical space, which is closer to expected behavior
+
+Version 2023.9.1
+- Text rendering enhancement: a fake underline is drawn when the font typeface lacks an underline effect configuration or it is unavailable on runtime operating system
+- Text rendering enhancement: a fake strikethrough is drawn when the font typeface lacks a strikethrough effect configuration or it is unavailable on runtime operating system
+- Text rendering enhancement: a fake skew operation is applied to mimic an italic effect when the provided font lacks an italic variant
+- Text rendering enhancement: a fake bold effect is applied when the font doesn't offer variants of higher weight
+- Code quality improvements.