Skip to content

Release 1.0.4

Compare
Choose a tag to compare
@drmacro drmacro released this 06 Feb 16:33
· 2 commits to release/1.0.4 since this release
6810f81

Minor enhancements:

  • Support for literal footnote callouts
  • Added color properties for table cell borders

Packaging:

  • Release package now includes all dependency jars to work around issue with the all-dependencies jar not working with log4j under Java 11+

To run using dependency jars, include all the jars in the Java classpath, i.e., -cp "./lib/*" and call class org.wordinator.docx.MakeDocx

This way of calling is demonstrated in the Ant build.xml in the top level of the release package:

    
    <java classpath="${java.lib.dir}/*" classname="org.wordinator.xml2docx.MakeDocx" failonerror="true" fork="true">
      <arg line="-i ${input.html}"/>
      <arg line="-o ${output.dir}"/>
      <arg line="-x ${html2docx.xsl}"/>
      <arg line="-t ${html2docx.dotx}"/>
    </java>