Skip to content

ODS 1.0.3

Compare
Choose a tag to compare
@ryandw11 ryandw11 released this 09 Dec 02:38
· 19 commits to master since this release
806266c

Changes:

  • Added the ability to add additional compression formats.
  • Removed the Compression enum in favor of the Compressor interface.

Example:
1.0.2:

ObjectDataStructure ods = new ObjectDataStructure(new File("test.ods"), Compression.ZLIB);

1.0.3:

ObjectDataStructure ods = new ObjectDataStructure(new File("test.ods"), new ZLIBCompression());