Skip to content
This repository has been archived by the owner on Oct 11, 2023. It is now read-only.

Commit

Permalink
[2023/11/10] netDxf 3.0.1 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
haplokuon committed Oct 11, 2023
1 parent 0a04f1c commit 3d24d7c
Show file tree
Hide file tree
Showing 3 changed files with 58 additions and 3 deletions.
6 changes: 4 additions & 2 deletions doc/Changelog.txt
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
## Change history

### [2023/08/31]
### [3.0.1 - 2023/10/11]

[2023/08/31]
* When creating a table object any leading or trailing white space will be automatically removed.
* When reading a spline from a DXF if its degree is larger than 10 it will be set to the maximun allowed.
* (fixed) The key of the references dictionary in the TableObjects must be case independent.

### [2023/07/15]
[2023/07/15]
* (fixed) StackOverflow exception when cloning the extended data associated to an application registry with circular references.

### [3.0.0 - 2023/06/28]
Expand Down
2 changes: 1 addition & 1 deletion netDxf/netDxf.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

<PropertyGroup>
<TargetFrameworks>net48;net6.0</TargetFrameworks>
<Version>3.0.0</Version>
<Version>3.0.1</Version>
<Authors>Daniel Carvajal</Authors>
<Owners>haplokuon</Owners>
<Company>netDxf</Company>
Expand Down
53 changes: 53 additions & 0 deletions netDxf/netDxf.xml
Original file line number Diff line number Diff line change
Expand Up @@ -14265,6 +14265,51 @@
</para>
</remarks>
</member>
<member name="M:netDxf.Objects.ImageDefinition.#ctor(System.String)">
<summary>
Initializes a new instance of the <c>ImageDefinition</c> class. Only available for Net Framework 4.5 builds.
</summary>
<param name="file">Image file name with full or relative path.</param>
<remarks>
<para>
The name of the file without extension will be used as the name of the image definition.
</para>
<para>
Supported image formats: BMP, JPG, PNG, TIFF.<br />
Even thought AutoCAD supports more image formats, this constructor is restricted to the ones the net framework supports in common with AutoCAD.
Use the generic constructor instead.
</para>
<para>
Note (this is from the ACAD docs): AutoCAD 2000, AutoCAD LT 2000, and later releases do not support LZW-compressed TIFF files,
with the exception of English language versions sold in the US and Canada.<br />
If you have TIFF files that were created using LZW compression and want to insert them into a drawing
you must save the TIFF files with LZW compression disabled.
</para>
</remarks>
</member>
<member name="M:netDxf.Objects.ImageDefinition.#ctor(System.String,System.String)">
<summary>
Initializes a new instance of the <c>ImageDefinition</c> class. Only available for Net Framework 4.5 builds.
</summary>
<param name="name">Image definition name.</param>
<param name="file">Image file name with full or relative path.</param>
<remarks>
<para>
The name assigned to the image definition must be unique.
</para>
<para>
Supported image formats: BMP, JPG, PNG, TIFF.<br />
Even thought AutoCAD supports more image formats, this constructor is restricted to the ones the .net library supports in common with AutoCAD.
Use the generic constructor instead.
</para>
<para>
Note (this is from the ACAD docs): AutoCAD 2000, AutoCAD LT 2000, and later releases do not support LZW-compressed TIFF files,
with the exception of English language versions sold in the US and Canada.<br />
If you have TIFF files that were created using LZW compression and want to insert them into a drawing
you must save the TIFF files with LZW compression disabled.
</para>
</remarks>
</member>
<member name="P:netDxf.Objects.ImageDefinition.File">
<summary>
Gets or sets the image file.
Expand Down Expand Up @@ -18410,6 +18455,14 @@
Gets the owner of the actual text style.
</summary>
</member>
<member name="M:netDxf.Tables.TextStyle.TrueTypeFontFamilyName(System.String)">
<summary>
Find the font family name of an specified TTF font file. Only available for Net Framework 4.5 builds.
</summary>
<param name="ttfFont">TTF font file.</param>
<returns>The font family name of the specified TTF font file.</returns>
<remarks>This method will return an empty string if the specified font is not found in its path or the system font folder or if it is not a valid TTF font.</remarks>
</member>
<member name="M:netDxf.Tables.TextStyle.HasReferences">
<summary>
Checks if this instance has been referenced by other DxfObjects.
Expand Down

0 comments on commit 3d24d7c

Please sign in to comment.