You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/change-log/v6.2.0-log.md
+40-2Lines changed: 40 additions & 2 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,10 +4,48 @@ This text is copied to `docs.pdfsharp.net`.
4
4
5
5
## Version 6.2
6
6
7
-
### PDFsharp 6.2.0 Preview 3
7
+
### PDFsharp 6.2.0 (final release)
8
8
9
9
*not yet released*
10
10
11
+
### PDFsharp 6.2.0 Preview 3
12
+
13
+
#### General issues
14
+
15
+
#### PDFsharp features
16
+
17
+
**Improved access to CropBox, ArtBox, BleedBox, TrimBox**
18
+
PdfPage now has new properties that make access to those boxes easier.
19
+
These are `HasBleedBox`, `BleedBoxReadOnly`, and `EffectiveBleedBoxReadOnly`.
20
+
Same applies to ArtBox, CropBox and TrimBox.
21
+
22
+
**Loading images: Improved access to buffer of MemoryStream**
23
+
LoadImage from MemoryStream now works with a buffer that is not publicly visible.
24
+
For better performance, set 'publiclyVisible' to true when creating the MemoryStream.
25
+
26
+
#### PDFsharp issues
27
+
28
+
**Lexer.ScanNumber and CLexer.ScanNumber**
29
+
Based on a bug that crashes PDFsharp if a number in a PDFfile has to much leading zeros, we revised the code of **Lexer.ScanNumber** and **CLexer.ScanNumber**.
30
+
31
+
**No more commas allowed in XUnit**
32
+
An old hack allows **XUnit** to be assigned from a string that uses a comma as decimal separator.
33
+
This was a introduced for languages like German, that use a comma instead of a point as decimal separator.
34
+
Now you get an exception. Applies also to **XUnitPt**.
35
+
36
+
#### MigraDoc features
37
+
38
+
**MigraDoc Preview user control restored for GDI build**
39
+
The MigraDoc Preview user control is again available in the GDI+ build.
40
+
MigraDoc Preview samples for GDI and WPF have been added to the samples repository.
41
+
42
+
**Color.Parse no longer causes exceptions when invoked with a number value**
43
+
If Color.Parse is invoked with a number value, as in `var color = Color.Parse("#f00");`,
44
+
it no longer throws a handled exception internally.
45
+
46
+
#### MigraDoc issues
47
+
48
+
11
49
---
12
50
13
51
### PDFsharp 6.2.0 Preview 2
@@ -140,7 +178,7 @@ We added .NET 8 (`net8.0`) to `<TargetFrameworks>`.
140
178
PDF documents can now be PDF/A conforming. We are still working on this feature, so currently there are some limitations.
141
179
142
180
**PDFsharp.Shared**
143
-
Code that grants friendly access to all PDFsharp Foundation assemblies lives in this new assembly.
181
+
Code that grants friendly access to all PDFsharp Project assemblies lives in this new assembly.
Copy file name to clipboardExpand all lines: docs/publishing/BoilerplateText.md
+9-9Lines changed: 9 additions & 9 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -4,9 +4,9 @@
4
4
5
5
## PDFsharp
6
6
7
-
PDFsharp project - PDFsharp
8
-
PDFsharp Foundation - PDFsharp library
9
-
MigraDoc Foundation- MigraDoc library
7
+
PDFsharp Project - PDFsharp
8
+
PDFsharp Library- PDFsharp
9
+
MigraDoc Library - Library
10
10
11
11
12
12
Source
@@ -66,17 +66,17 @@ MigraDoc is a .NET library that allows developers to create documents such as PD
66
66
Note: Do not replicate information from the metadata (like "6.0.0" or "prerelease").
67
67
68
68
PDFsharp:
69
-
This is a version of PDFsharp using .NET 6.
70
-
The package ’PdfSharp’ can be used on any platform including Windows and Linux. The Target Frameworks are ’net6.0’and ’netstandard2.0’.
71
-
The packages ’PDFsharp-gdi’ and ’PDFsharp-wpf’ can be used under Windows only. The Target Frameworks are ’net6.0-windows’and ’net462’.
69
+
This is a version of PDFsharp compatible with .NET 6 and higher.
70
+
The package ‘PdfSharp’ can be used on any platform including Windows and Linux. The Target Frameworks are ‘net6.0’, ‘net8.0’ and ‘netstandard2.0’.
71
+
The packages ‘PDFsharp-gdi’ and ‘PDFsharp-wpf’ can be used under Windows only. The Target Frameworks are ‘net6.0-windows’, ‘net8.0-windows’ and ‘net462’.
72
72
We also publish packages that contain PDFsharp plus MigraDoc.
73
73
See the project docs site for further information:
74
74
https://docs.pdfsharp.net/link/readme-v6.2.html
75
75
76
76
77
77
PDFsharp & MigraDoc:
78
-
This is a version of PDFsharp and MigraDoc Foundation using .NET 6.
79
-
The package ’PDFsharp-MigraDoc’ can be used on any platform including Windows and Linux. The Target Frameworks are ’net6.0’and ’netstandard2.0’.
80
-
The packages ’PDFsharp-MigraDoc-GDI’ and ’PDFsharp-MigraDoc-WPF’ can be used under Windows only. The Target Frameworks are ’net6.0-windows’and ’net462’.
78
+
This is a version of PDFsharp and MigraDoc compatible with .NET 6 and higher.
79
+
The package ‘PDFsharp-MigraDoc’ can be used on any platform including Windows and Linux. The Target Frameworks are ‘net6.0’, ‘net8.0’ and ‘netstandard2.0’.
80
+
The packages ‘PDFsharp-MigraDoc-GDI’ and ‘PDFsharp-MigraDoc-WPF’ can be used under Windows only. The Target Frameworks are ‘net6.0-windows’, ‘net8.0-windows’ and ‘net462’.
81
81
See the project docs site for further information:
0 commit comments