mirror of
https://github.com/jmcnamara/libxlsxwriter
synced 2025-03-28 21:13:14 +00:00
Prep for release 1.1.8.
This commit is contained in:
parent
1ba7c8a8e6
commit
a228d852bd
30
Changes.txt
30
Changes.txt
@ -1,6 +1,36 @@
|
|||||||
/**
|
/**
|
||||||
@page changes Changes
|
@page changes Changes
|
||||||
|
|
||||||
|
|
||||||
|
## 1.1.8 July 31 2024
|
||||||
|
|
||||||
|
- Added support for embedding images into worksheets with
|
||||||
|
`worksheet_embed_image()`.
|
||||||
|
|
||||||
|
This can be useful if you are building up a spreadsheet of products with a
|
||||||
|
column of images for each product. Embedded images move with the cell so they
|
||||||
|
can be used in worksheet tables or data ranges that will be sorted or
|
||||||
|
filtered.
|
||||||
|
|
||||||
|
This functionality is the equivalent of Excel's menu option to insert an image
|
||||||
|
using the option to "Place in Cell" which is available in Excel 365 versions
|
||||||
|
from 2023 onwards.
|
||||||
|
|
||||||
|
- Fixed various issues:
|
||||||
|
|
||||||
|
- [Failure on 32bit architectures #441](https://github.com/jmcnamara/libxlsxwriter/issues/441)
|
||||||
|
- [workbook_validate_sheet_name buffer-overflow #442](https://github.com/jmcnamara/libxlsxwriter/issues/442)
|
||||||
|
- [workbook_add_worksheet does not return a reasonable worksheet #443](https://github.com/jmcnamara/libxlsxwriter/issues/443)
|
||||||
|
- [workbook_define_name stack-buffer-underflow #444](https://github.com/jmcnamara/libxlsxwriter/issues/444)
|
||||||
|
- [workbook_close stack-buffer-overflow #445](https://github.com/jmcnamara/libxlsxwriter/issues/445)
|
||||||
|
- [_store_array_formula heap-buffer-overflow #446](https://github.com/jmcnamara/libxlsxwriter/issues/446)
|
||||||
|
- [worksheet_set_selection stack-buffer-overflow #447](https://github.com/jmcnamara/libxlsxwriter/issues/447)
|
||||||
|
|
||||||
|
|
||||||
|
- Note this version is tagged as `v1.1.8` instead of `RELEASE_1.1.8` for better
|
||||||
|
interoperability with Xcode.
|
||||||
|
|
||||||
|
|
||||||
## 1.1.7 April 5 2024
|
## 1.1.7 April 5 2024
|
||||||
|
|
||||||
- Bump `.so` version to 6. This was missed in the previous release.
|
- Bump `.so` version to 6. This was missed in the previous release.
|
||||||
|
@ -15,6 +15,10 @@
|
|||||||
#import "metadata.h"
|
#import "metadata.h"
|
||||||
#import "packager.h"
|
#import "packager.h"
|
||||||
#import "relationships.h"
|
#import "relationships.h"
|
||||||
|
#import "rich_value.h"
|
||||||
|
#import "rich_value_rel.h"
|
||||||
|
#import "rich_value_structure.h"
|
||||||
|
#import "rich_value_types.h"
|
||||||
#import "shared_strings.h"
|
#import "shared_strings.h"
|
||||||
#import "styles.h"
|
#import "styles.h"
|
||||||
#import "table.h"
|
#import "table.h"
|
||||||
|
@ -19,8 +19,8 @@
|
|||||||
#include "xlsxwriter/format.h"
|
#include "xlsxwriter/format.h"
|
||||||
#include "xlsxwriter/utility.h"
|
#include "xlsxwriter/utility.h"
|
||||||
|
|
||||||
#define LXW_VERSION "1.1.7"
|
#define LXW_VERSION "1.1.8"
|
||||||
#define LXW_VERSION_ID 117
|
#define LXW_VERSION_ID 118
|
||||||
#define LXW_SOVERSION "6"
|
#define LXW_SOVERSION "7"
|
||||||
|
|
||||||
#endif /* __LXW_XLSXWRITER_H__ */
|
#endif /* __LXW_XLSXWRITER_H__ */
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
Pod::Spec.new do |s|
|
Pod::Spec.new do |s|
|
||||||
s.name = "libxlsxwriter"
|
s.name = "libxlsxwriter"
|
||||||
s.version = "1.1.7"
|
s.version = "1.1.8"
|
||||||
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
s.summary = "Libxlsxwriter: A C library for creating Excel XLSX files."
|
||||||
s.ios.deployment_target = "12.0"
|
s.ios.deployment_target = "12.0"
|
||||||
s.osx.deployment_target = "10.13"
|
s.osx.deployment_target = "10.13"
|
||||||
|
Loading…
x
Reference in New Issue
Block a user