Browse Source

2024.10.0

Marcin Ziąbek 1 year ago
parent
commit
c3dfc77f91

+ 3 - 3
Source/QuestPDF.Companion.TestRunner/Program.cs

@@ -8,9 +8,9 @@ using QuestPDF.ReportSample.Layouts;
 
 Settings.License = LicenseType.Professional;
 
-await RunGenericException();
+//await RunGenericException();
 //await RunLayoutError();
-//await RunSimpleDocument();
+await RunSimpleDocument();
 //await RunReportDocument();
 
 Task RunGenericException()
@@ -29,7 +29,7 @@ Task RunGenericException()
                         x.Item().Text(Placeholders.LoremIpsum());
                         x.Item().Hyperlink("questpdf.com").Image(Placeholders.Image(200, 200));
 
-                        throw new Exception("New5 exception");
+                        throw new Exception("New exception");
                     });
             });
         })

+ 1 - 1
Source/QuestPDF/QuestPDF.csproj

@@ -3,7 +3,7 @@
         <Authors>MarcinZiabek</Authors>
         <Company>CodeFlint</Company>
         <PackageId>QuestPDF</PackageId>
-        <Version>2024.10.0-rc4</Version>
+        <Version>2024.10.0</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>
         <PackageReleaseNotes>$([System.IO.File]::ReadAllText("$(MSBuildProjectDirectory)/Resources/ReleaseNotes.txt"))</PackageReleaseNotes>
         <LangVersion>12</LangVersion>

+ 2 - 1
Source/QuestPDF/Resources/ReleaseNotes.txt

@@ -2,4 +2,5 @@ Version 2024.10.0
 
 - This version includes integration with the new QuestPDF Companion application.
 - Updated the Skia dependency to version m130.
-- Improved nuget package determinism.
+- Improved NuGet package determinism.
+- Enhanced rendering of underline text decoration for certain fonts.