xlsxwriter 0.1.1
xlsxwriter: ^0.1.1 copied to clipboard
Native, fast, low-memory Excel .xlsx writer for Dart. An FFI binding to libxlsxwriter with a constant-memory mode for large sheets.
Changelog #
0.1.1 #
- Move the vendored third-party attributions out of
LICENSEintoTHIRD_PARTY_NOTICES.md, soLICENSEis the plain MIT text that automated license detection recognises. The attributions themselves are unchanged and still ship with the package.
0.1.0 #
First release. A native .xlsx writer for Dart, binding libxlsxwriter 1.2.2
over FFI, with libxlsxwriter and zlib 1.3.1 vendored and compiled from source at
build time (no system dependencies on macOS, Linux, or Windows).
WorkbookandWorkbook.constantMemoryfor in-memory and constant-memory writing, with aNativeFinalizerso a forgotten workbook is freed.Worksheetwrites:writeString,writeNumber,writeBool,writeFormula,writeDateTime,writeUrl,writeBlank.- Layout:
setColumn,setColumnWidth,setRow,mergeRange,freezePanes. Formatwithbold,italic,underline,fontName,fontSize,fontColor,backgroundColor,numberFormat,align,verticalAlign,textWrap,border, andborderColor.- libxlsxwriter error codes surfaced as
XlsxWriterExceptionwith the human-readable message.