mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 0.2.9.
This commit is contained in:
parent
65398768c1
commit
d54e85e9f2
@ -2,6 +2,12 @@
|
||||
@page changes Changes
|
||||
|
||||
|
||||
## 0.2.9 January 3 2016
|
||||
|
||||
- Added the `worksheet_insert_image()` function to add PNG and JPG images to
|
||||
worksheets. See @ref demo.c and @ref images.c.
|
||||
|
||||
|
||||
## 0.2.8 December 22 2015
|
||||
|
||||
- Added `worksheet_set_default_row()` function to allow setting of default row
|
||||
|
@ -18,6 +18,7 @@ It supports features such as:
|
||||
- Merged cells.
|
||||
- Defined names.
|
||||
- Autofilters.
|
||||
- Worksheet PNG/JPEG images.
|
||||
- Memory optimization mode for writing large files.
|
||||
- Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
|
||||
- FreeBSD ref license.
|
||||
@ -44,8 +45,9 @@ int main() {
|
||||
/* Set the bold property for the format */
|
||||
format_set_bold(format);
|
||||
|
||||
/* Widen the first column to make the text clearer. */
|
||||
/* Widen the columns to make the text clearer. */
|
||||
worksheet_set_column(worksheet, 0, 0, 20, NULL, NULL);
|
||||
worksheet_set_column(worksheet, 1, 1, 2, NULL, NULL);
|
||||
|
||||
/* Write some simple text. */
|
||||
worksheet_write_string(worksheet, 0, 0, "Hello", NULL);
|
||||
@ -57,6 +59,9 @@ int main() {
|
||||
worksheet_write_number(worksheet, 2, 0, 123, NULL);
|
||||
worksheet_write_number(worksheet, 3, 0, 123.456, NULL);
|
||||
|
||||
/* Insert an image. */
|
||||
worksheet_insert_image(worksheet, 1, 2, "logo.png");
|
||||
|
||||
workbook_close(workbook);
|
||||
|
||||
return 0;
|
||||
|
@ -111,7 +111,7 @@ function check_docs {
|
||||
echo -e "Please run: make docs\n";
|
||||
exit 1
|
||||
else
|
||||
echo " Running tests...";
|
||||
echo " Building docs...";
|
||||
make docs
|
||||
check_docs
|
||||
fi
|
||||
|
@ -18,6 +18,7 @@ features such as:
|
||||
- Merged cells.
|
||||
- Defined names.
|
||||
- Autofilters.
|
||||
- Worksheet PNG/JPEG images.
|
||||
- Memory optimization mode for writing large files.
|
||||
- Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
|
||||
- FreeBSD @ref license.
|
||||
|
@ -18,6 +18,6 @@
|
||||
#include "xlsxwriter/format.h"
|
||||
#include "xlsxwriter/utility.h"
|
||||
|
||||
#define LXW_VERSION "0.2.8"
|
||||
#define LXW_VERSION "0.2.9"
|
||||
|
||||
#endif /* __LXW_XLSXWRITER_H__ */
|
||||
|
@ -1,6 +1,6 @@
|
||||
Pod::Spec.new do |s|
|
||||
s.name = "libxlsxwriter"
|
||||
s.version = "0.2.8"
|
||||
s.version = "0.2.9"
|
||||
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
||||
s.ios.deployment_target = "6.0"
|
||||
s.osx.deployment_target = "10.8"
|
||||
@ -15,6 +15,7 @@ Pod::Spec.new do |s|
|
||||
* Merged cells.
|
||||
* Defined names.
|
||||
* Autofilters.
|
||||
* Worksheet PNG/JPEG images.
|
||||
* Memory optimisation mode for writing large files.
|
||||
* Source code available on [GitHub](https://github.com/jmcnamara/libxlsxwriter).
|
||||
* FreeBSD ref license.
|
||||
|
Loading…
x
Reference in New Issue
Block a user