Skip to content

Releases: brechtsanders/xlsxio

XLSX I/O version 0.2.35

28 Mar 19:21
Compare
Choose a tag to compare
  • fix typos discovered by codespell (#122)

XLSX I/O version 0.2.34

02 Nov 12:07
Compare
Choose a tag to compare
  • PR from captaingroove to add minizip-ng support (#115)

XLSX I/O version 0.2.33

05 Jul 10:55
Compare
Choose a tag to compare
  • PR from JackBoosY to export CMake targets automaticly (to cmake folder under install path) (#105)

XLSX I/O version 0.2.32

15 Apr 08:48
Compare
Choose a tag to compare
  • fixed crash issue when sheet name is NULL (#109)

XLSX I/O version 0.2.31

16 Feb 22:54
Compare
Choose a tag to compare
  • added .pc and .cmake file generation and installation to CMakeLists.txt
  • changed free() to xlsxioread_free() in example_xlsxio_read.c (issue #73)

XLSX I/O version 0.2.29

10 Jul 14:26
Compare
Choose a tag to compare
  • only treat sheet as a table (with header rows) when XLSXIOREAD_SKIP_EXTRA_CELLS flag is used (issue #75)
  • added xlsxioread_free() to fix crashes when calling library build with different compiler (issue #73)

XLSX I/O version 0.2.28

06 Jul 16:39
Compare
Choose a tag to compare
  • fixed issues with XLSXIOREAD_SKIP_EMPTY_CELLS/XLSXIOREAD_SKIP_EMPTY_ROWS/XLSXIOREAD_SKIP_ALL_EMPTY/XLSXIOREAD_SKIP_EXTRA_CELLS (issue #75)

XLSX I/O version 0.2.27

05 Jul 14:31
Compare
Choose a tag to compare
  • fixed issues XLSXIOREAD_SKIP_EMPTY_CELLS/XLSXIOREAD_SKIP_EMPTY_ROWS/XLSXIOREAD_SKIP_ALL_EMPTY (issue #74)
  • changed Makefile to also generate .def files to be included in Windows packages

XLSX I/O version 0.2.26

24 Mar 11:03
Compare
Choose a tag to compare
  • accepted patch (#63) to add xlsxioread_sheet_last_column_index() and xlsxioread_sheet_flags()
  • added xlsxioread_sheet_last_row_index()

XLSX I/O version 0.2.25

20 Mar 17:22
Compare
Choose a tag to compare
  • fixed memory leaks in xlsxioread_sheet_next_cell_int/xlsxioread_sheet_next_cell_float/xlsxioread_sheet_next_cell_datetime (issue #54)
  • added xml:space="preserve" to text cells to preserve spacing (issue #57)
  • ran valgrind tests on xlsxio_xlsx2csv and xlsxio_csv2xlsx
  • fixed memory leak in write_cell_data() in xlsxio_write.c (result of get_A1col was not freed)
  • rewrote get_A1col() in in xlsxio_write.c to avoid issues on platforms where multiple calls to va_start()/va_end() don't work