mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 0.4.4.
This commit is contained in:
parent
74f03074fb
commit
5015061828
@ -1,6 +1,12 @@
|
||||
/**
|
||||
@page changes Changes
|
||||
|
||||
## 0.4.4 December 30 2016
|
||||
|
||||
- Added chart fonts. See `chart_axis_set_name_font()`, `chart_axis_set_num_font()`,
|
||||
`chart_title_set_name_font()` and @ref chart_fonts.
|
||||
|
||||
|
||||
## 0.4.3 December 26 2016
|
||||
|
||||
- Added `workbook_get_worksheet_by_name()` function to get a worksheet
|
||||
|
@ -198,7 +198,7 @@ function check_pod_spec {
|
||||
else
|
||||
echo " Running lint...";
|
||||
pod spec lint libxlsxwriter.podspec --use-libraries
|
||||
Check_pod_spec
|
||||
check_pod_spec
|
||||
fi
|
||||
fi
|
||||
}
|
||||
|
@ -25,7 +25,7 @@ axis, some can be set for a category axis and some properties can be set for
|
||||
both. The documentation calls out the type of axis to which functions apply.
|
||||
|
||||
|
||||
@section chart_fonts Chart Fonts
|
||||
@section chart_fonts Working with Chart Fonts
|
||||
|
||||
Font properties can be set for several chart objects such as chart titles,
|
||||
axis labels, and axis numbering.
|
||||
|
@ -18,6 +18,6 @@
|
||||
#include "xlsxwriter/format.h"
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
#define LXW_VERSION "0.4.3"
|
||||
#define LXW_VERSION "0.4.4"
|
||||
|
||||
#endif /* __LXW_XLSXWRITER_H__ */
|
||||
|
@ -638,7 +638,7 @@ void chart_axis_set_name_range(lxw_chart_axis *axis, const char *sheetname,
|
||||
*
|
||||
* @image html chart_axis_set_name_font.png
|
||||
*
|
||||
* For more information about working with chart fonts see @ref chart_fonts.
|
||||
* For more information see @ref chart_fonts.
|
||||
*/
|
||||
void chart_axis_set_name_font(lxw_chart_axis *axis, lxw_chart_font *font);
|
||||
|
||||
@ -659,7 +659,7 @@ void chart_axis_set_name_font(lxw_chart_axis *axis, lxw_chart_font *font);
|
||||
*
|
||||
* @image html chart_axis_set_num_font.png
|
||||
*
|
||||
* For more information about working with chart fonts see @ref chart_fonts.
|
||||
* For more information see @ref chart_fonts.
|
||||
*/
|
||||
void chart_axis_set_num_font(lxw_chart_axis *axis, lxw_chart_font *font);
|
||||
|
||||
@ -729,7 +729,7 @@ void chart_title_set_name_range(lxw_chart *chart, const char *sheetname,
|
||||
*
|
||||
* @image html chart_title_set_name_font.png
|
||||
*
|
||||
* For more information about working with chart fonts see @ref chart_fonts.
|
||||
* For more information see @ref chart_fonts.
|
||||
*/
|
||||
void chart_title_set_name_font(lxw_chart *chart, lxw_chart_font *font);
|
||||
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "libxlsxwriter"
|
||||
s.version = "0.4.3"
|
||||
s.version = "0.4.4"
|
||||
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
||||
s.ios.deployment_target = "6.0"
|
||||
s.osx.deployment_target = "10.8"
|
||||
|
Loading…
x
Reference in New Issue
Block a user