Browse Source

2023.10.0-alpha0 Improved developer experience during debugging of document layout issues

Marcin Ziąbek 2 years ago
parent
commit
e27b3d1f14

+ 1 - 1
Source/QuestPDF.Previewer/QuestPDF.Previewer.csproj

@@ -4,7 +4,7 @@
         <Authors>MarcinZiabek</Authors>
         <Company>CodeFlint</Company>
         <PackageId>QuestPDF.Previewer</PackageId>
-        <Version>2023.9.0</Version>
+        <Version>2023.10.0-alpha0</Version>
         <PackAsTool>true</PackAsTool>
         <ToolCommandName>questpdf-previewer</ToolCommandName>
         <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>

+ 1 - 1
Source/QuestPDF/Previewer/PreviewerService.cs

@@ -19,7 +19,7 @@ namespace QuestPDF.Previewer
         public  event Action? OnPreviewerStopped;
 
         private const int RequiredPreviewerVersionMajor = 2023;
-        private const int RequiredPreviewerVersionMinor = 9;
+        private const int RequiredPreviewerVersionMinor = 10;
         
         public PreviewerService(int port)
         {

+ 1 - 1
Source/QuestPDF/QuestPDF.csproj

@@ -3,7 +3,7 @@
         <Authors>MarcinZiabek</Authors>
         <Company>CodeFlint</Company>
         <PackageId>QuestPDF</PackageId>
-        <Version>2023.9.1</Version>
+        <Version>2023.10.0-alpha0</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>10</LangVersion>

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

@@ -1,10 +1,2 @@
-Version 2023.9.0
-- In-code IntelliSense documentation for all public APIs,
-- 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.
+Version 2023.10.0
+Quality of Life: improved the developer experience during debugging of document layout issues. The library now marks problematic sections directly in the generated PDF.