Skip to content

Commit

Permalink
Merge pull request #12 from kaffamobile/mr-dxf-improvements
Browse files Browse the repository at this point in the history
Fixes to texts and mode
  • Loading branch information
pedroafonso23 authored Jul 21, 2021
2 parents 110699c + 0f14006 commit 3751e7e
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
2 changes: 1 addition & 1 deletion blocks/dxf/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
<parent>
<groupId>org.kabeja</groupId>
<artifactId>tfly-kabeja</artifactId>
<version>0.5.6</version>
<version>0.5.7</version>
<relativePath>../../pom.xml</relativePath>
</parent>

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,8 @@ protected void outputStyleEntry(Style style, int groupCode, DXFOutput out) throw
case 3:
out.output(3, style.getFontFile());
break;
case 4:
out.output(4, "");
break;
case 70:
out.output(70, "3");
out.output(70, "64");
break;
case 40:
out.output(40, "0");
Expand Down
3 changes: 2 additions & 1 deletion blocks/dxf/src/main/resources/conf/profiles.xml
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,7 @@
<typehandler name="LAYER" class="org.kabeja.dxf.generator.table.DXFLayerTableGenerator"/>
<typehandler name="LTYPE" class="org.kabeja.dxf.generator.table.DXFLineTypeTableGenerator" />
<typehandler name="STYLE" class="org.kabeja.dxf.generator.table.DXFStyleTableGenerator"/>
<typehandler name="VPORT" class="org.kabeja.dxf.generator.entities.DXFViewportGenerator"/>
<!-- FIXME: VPORT was causing problems on AutoCAD 2014, this is a workaround -->
<!-- <typehandler name="VPORT" class="org.kabeja.dxf.generator.entities.DXFViewportGenerator"/>-->
</typehandlers>
</config>
2 changes: 1 addition & 1 deletion core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,6 @@
<parent>
<groupId>org.kabeja</groupId>
<artifactId>tfly-kabeja</artifactId>
<version>0.5.6</version>
<version>0.5.7</version>
</parent>
</project>
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<groupId>org.kabeja</groupId>
<artifactId>tfly-kabeja</artifactId>
<name>kabeja</name>
<version>0.5.6</version>
<version>0.5.7</version>
<packaging>pom</packaging>
<description>Kabeja is a java library for parsing DXF and converting to SVG
(dxf2svg). The library supports the SAX-api and can integrated
Expand Down

0 comments on commit 3751e7e

Please sign in to comment.