mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 1.1.2.
This commit is contained in:
parent
f5bdcb3601
commit
8d4dbfe734
16
Changes.txt
16
Changes.txt
@ -1,6 +1,20 @@
|
||||
/**
|
||||
@page changes Changes
|
||||
|
||||
|
||||
## 1.1.2 August 8 2021
|
||||
|
||||
- Added support for autofilter rules. See @ref working_with_autofilters and
|
||||
@ref autofilter.c.
|
||||
|
||||
Feature request [#254][gh_254].
|
||||
|
||||
[gh_254]: https://github.com/jmcnamara/libxlsxwriter/issues/254
|
||||
|
||||
- Added Description/Alt Text and Decorative accessibility options for
|
||||
charts. These options were already available for images.
|
||||
|
||||
|
||||
## 1.1.1 July 12 2021
|
||||
|
||||
- Added optional third party library to handle sprintf handling of
|
||||
@ -25,7 +39,7 @@
|
||||
Issue [#342][gh_342].
|
||||
|
||||
[gh_342]: https://github.com/jmcnamara/libxlsxwriter/issues/342
|
||||
|
||||
|
||||
## 1.0.9 July 7 2021
|
||||
|
||||
- Added support for Excel 365 dynamic arrays. See
|
||||
|
@ -18,8 +18,8 @@
|
||||
#include "xlsxwriter/format.h"
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
#define LXW_VERSION "1.1.1"
|
||||
#define LXW_VERSION_ID 111
|
||||
#define LXW_SOVERSION "2.1"
|
||||
#define LXW_VERSION "1.1.2"
|
||||
#define LXW_VERSION_ID 112
|
||||
#define LXW_SOVERSION "3"
|
||||
|
||||
#endif /* __LXW_XLSXWRITER_H__ */
|
||||
|
@ -3730,7 +3730,7 @@ lxw_error worksheet_filter_column2(lxw_worksheet *worksheet, lxw_col_t col,
|
||||
* @param col The column in the autofilter that the rules applies to.
|
||||
* @param list Array of strings to filter on.
|
||||
*
|
||||
* @return
|
||||
* @return A #lxw_error code.
|
||||
*
|
||||
* The `worksheet_filter_column_list()` function can be used specify multiple
|
||||
* string matching criteria. This is a newer type of filter introduced in
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "libxlsxwriter"
|
||||
s.version = "1.1.1"
|
||||
s.version = "1.1.2"
|
||||
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
||||
s.ios.deployment_target = "8.0"
|
||||
s.osx.deployment_target = "10.8"
|
||||
|
Loading…
x
Reference in New Issue
Block a user