994 Commits

Author SHA1 Message Date
John McNamara
9f6347cbc4 Minor doc clarification. 2021-08-10 20:00:16 +01:00
John McNamara
576d169463 Prep for release 1.1.3. RELEASE_1.1.3 2021-08-09 21:02:21 +01:00
John McNamara
b66c9bc95e Replace use of c++ reserved word operator.
Issue #353
2021-08-09 19:04:50 +01:00
John McNamara
bfec97a226 Add GitHub issue and pull request templates. 2021-08-09 16:49:46 +01:00
John McNamara
8d4dbfe734 Prep for release 1.1.2. RELEASE_1.1.2 2021-08-08 21:15:35 +01:00
John McNamara
f5bdcb3601 Fix minor const issues. 2021-08-08 20:32:46 +01:00
John McNamara
4234499f8a Added example and docs for autfilter rules.
Feature request #254
2021-08-08 20:25:35 +01:00
John McNamara
431f4839f9 Add filter rules for autofilters.
Feature request #254
2021-08-02 23:49:05 +01:00
John McNamara
624fc3b650 Initiate test build. 2021-07-28 20:53:16 +01:00
John McNamara
ed47b1fbb8 Added addition accessibility options for worksheet charts.
Added Description/Alt Text and Decorative accessibility options for charts.
These options were already available for images.
2021-07-28 14:10:16 +01:00
John McNamara
9402191bc1 Fix for unixtime type size.
The size of thetime_h type used with worksheet_write_unixtime()
wasn't sufficient to represent the full range of Excel's dates.
The parameter in question has been extended to int64_t.

Issue #347
2021-07-27 17:28:10 +01:00
Sijmen J. Mulder
b2b7000c42 Respect LDFLAGS when linking tests
Otherwise it's not possible to link e.g. system minizip if it's outside
the default search paths.
2021-07-27 16:40:48 +01:00
Sijmen J. Mulder
2f459cae2d Don't use LDLFAGS when building these .so files
This Makefile builds 3 versions of each object: a regular one, one
usable for linking into a shared object, and one for tests, each with
different flags. They are named .o, .so, and .to respectively -- but
these .so files are regular object files, NOT shared libraries.

Hence, they shouldn't be built with ${LDFLAGS} because no linking is
happening here, they're just regular object files compiled with -c.

Passing on LDFLAGS here anyway can cause warnings or errors like this:

  $ make V=1 LDFLAGS=-Wl,-rpath,/opt/pkg/lib
  ...
  cc -fPIC -I../include -Wl,-rpath,/opt/pkg/lib -g -O3 -Wall -Wextra -Wstrict-prototypes -pedantic -ansi    -c app.c -o app.so
  clang: warning: -Wl,-rpath,/opt/pkg/lib: 'linker' input unused [-Wunused-command-line-argument]
  ...

(Of course the actual linking into libxlsxwriter.so or .dylib still
uses LDFLAGS.)
2021-07-27 16:19:52 +01:00
John McNamara
2000238934 Minor fix to pod spec. 2021-07-23 09:11:39 +01:00
John McNamara
5bb72e58a8 Prep for release 1.1.1. RELEASE_1.1.1 2021-07-12 23:30:20 +01:00
John McNamara
bda599d033 Added optional third party dtoa library.
Added the optional Milo Yip DTOA library (emyg_dtoa) to avoid
issues where the standard sprintf() dtoa function changes output
based on locale settings. It is also 40-50% faster than the
standard dtoa for raw numeric data.

If you wish to use this third party library you can compile
libxlsxwriter with it by passing `USE_DTOA_LIBRARY=1` to
make. The USE_DOUBLE_FUNCTION build variable is no longer used.

Imported source from https://github.com/miloyip/dtoa-benchmark

Feature request #272
2021-07-12 23:09:52 +01:00
John McNamara
393ded9a2d Add option to turn off bold in chart title font.
Added the LXW_EXPLICIT_FALSE variable to allow the default bold
property in chart title fonts to be turned off.

Closes #199
2021-07-12 22:33:11 +01:00
John McNamara
8fe2105f15 Doc clarification.
Issue #184
2021-07-11 14:31:42 +01:00
John McNamara
016e6eb1db Prep for release 1.1.0. RELEASE_1.1.0 2021-07-09 20:33:38 +01:00
ulmentflam
3b5a59d0e3 Fix podspec include order.
Closes #342
Closes #343
2021-07-09 20:25:11 +01:00
John McNamara
812deaeca1 Prep for release 1.0.9. RELEASE_1.0.9 2021-07-07 23:55:42 +01:00
John McNamara
d72da755f0 Add docs and examples for dynamic arrays.
Feature request #327
2021-07-07 23:33:26 +01:00
John McNamara
22612d9a62 Prep for release 1.0.8. RELEASE_1.0.8 2021-07-03 10:37:47 +01:00
John McNamara
2d849f0938 Add find_package for OpenSSL to cmake build. 2021-07-02 17:35:08 +01:00
Robert Schütz
ee507423f5 fix library name in Makefile 2021-07-02 16:12:24 +01:00
John McNamara
c844843c97 Add section on number format locales to the docs. 2021-07-02 11:50:44 +01:00
John McNamara
4fcdd7b26d Updated copyright year. 2021-07-01 23:57:09 +01:00
John McNamara
005cb5fd89 Update public doc urls. 2021-07-01 23:42:45 +01:00
John McNamara
1810eb6a97 Prep for release 1.0.7. RELEASE_1.0.7 2021-07-01 23:38:46 +01:00
John McNamara
7f20142d47 Add extra unixtime test. 2021-07-01 23:25:54 +01:00
John McNamara
b36b7db552 Moved soversion down into /src makefile. 2021-07-01 23:19:16 +01:00
John McNamara
9b89841750 Add support for Unix datetimes. 2021-07-01 21:00:59 +01:00
John McNamara
36edb6898d Remove tmp patch file. 2021-06-27 23:07:31 +01:00
John McNamara
036ada33c8 Add cmake support for USE_DOUBLE_FUNCTION.
Closes #269
2021-06-27 22:55:19 +01:00
John McNamara
9a5ee07d48 Add soname versioning to the dynamic library.
Issue: #340
2021-06-26 01:01:27 +01:00
John McNamara
dcf8d418db Fix gcc -Wformat-truncation warning. 2021-06-17 20:38:07 +01:00
John McNamara
19e48ba61c Minor refactoring to fix type differences. 2021-06-09 15:00:47 +01:00
John McNamara
814634e2e9 Minor refactoring to fix const issues. 2021-06-08 21:31:59 +01:00
John McNamara
88a6a82730 Minor refactoring to make types match. 2021-06-06 21:04:15 +01:00
John McNamara
ab34f3ae3c Minor refactoring. 2021-06-06 20:49:44 +01:00
John McNamara
8852feb4da Minor refactoring to avoid variable shadowing. 2021-06-06 20:21:36 +01:00
John McNamara
a07e340fd8 Remove TODO warnings. 2021-06-06 20:09:21 +01:00
John McNamara
9c765e279b Remove commented code. 2021-06-06 20:09:21 +01:00
John McNamara
3ad4e3866c Remove some unnecessary code for inline rich strings. 2021-06-06 20:09:21 +01:00
John McNamara
c037de8e10 Remove unnecessary return. 2021-06-06 20:09:21 +01:00
John McNamara
103f0cfd8b Minor refactoring. 2021-06-06 20:09:21 +01:00
John McNamara
712a90a8d3 Minor refactoring to avoid treating doubles as bools. 2021-06-06 20:09:21 +01:00
John McNamara
c62807f68f Minor refactoring to merge if statements. 2021-06-06 20:09:21 +01:00
John McNamara
29c086579f Minor refactoring of duplicate code. 2021-06-06 20:09:21 +01:00
John McNamara
79f9d3e01e Minor change to sonar build. 2021-06-06 20:09:21 +01:00