forked from jmcnamara/libxlsxwriter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathChanges.txt
129 lines (71 loc) · 3.08 KB
/
Changes.txt
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
/**
@page changes Changes
## 0.1.5 May 3 2015
- Added `worksheet_write_url()` function to write urls/hyperlinks to
worksheets. See also @ref hyperlinks.c.
## 0.1.4 March 18 2015
- Added `worksheet_autofilter()` function to add autofilters to worksheets.
See also @ref autofilter.c.
## 0.1.3 March 15 2015
- Added `worksheet_write_array_formula()` function to allow writing of
array formulas in worksheets.
## 0.1.2 March 14 2015
- Added `worksheet_set_h_pagebreaks()` and `worksheet_set_v_pagebreaks()`
functions to define worksheet page breaks.
- Added LXW_FOREACH_WORKSHEET() macro to allow iteration over all the
worksheets in a workbook.
- Added `worksheet_set_print_scale()` function to set the scale factor for
the printed page.
- Added `worksheet_set_start_page()` function to set the start page number
when printing.
## 0.1.1 March 13 2015
- Added `worksheet_print_area()` function to control the print area of a
worksheet.
- Added `worksheet_fit_to_pages()` function to fit the printed area to a
specific number of pages both vertically and horizontally.
## 0.1.0 March 12 2015
- Added `worksheet_repeat_rows()` and `worksheet_repeat_columns()` functions
to control the repeated rows/columns on printed worksheets.
## 0.0.9 March 9 2015
- Added `worksheet_gridlines()` function to show/hide screen and print
gridlines.
- Added `worksheet_center_horizontally()` and `worksheet_center_vertically()`
functions to center worksheet on the printed page.
- Added `worksheet_print_row_col_headers()` function to enable printing of row
and column headers.
## 0.0.8 March 8 2015
- Added support for worksheet headers and footers via the
`worksheet_set_header()` and `worksheet_set_footer()` functions. See also
@ref headers_footers.c.
## 0.0.7 March 7 2015
- Added the `worksheet_merge_range()` method to merge worksheet cells. See
also @ref merge_range.c.
## 0.0.6 March 5 2015
- Added the `workbook_define_name()` method to create defined names and ranges
in a workbook or worksheet.
## 0.0.5 March 6 2015
- Added `worksheet_select()` function to set worksheets as selected.
- Added `worksheet_activate()` to set the active worksheet.
- Several portability fixes to fix warnings with different compilers.
## 0.0.4 March 1 2015
- Added `worksheet_set_margins()` function to set top, bottom, left and right
margins in a worksheet.
- Fix for issue where format objects were written to the file in the order of
creation rather than the order of use. This issue caused incorrect formats
in cells.
Issue [#3](https://github.com/jmcnamara/libxlsxwriter/issues/3).
- Fix for issue where tmp files in `constant_memory` mode weren't closed
until application exited.
Issue [#1](https://github.com/jmcnamara/libxlsxwriter/issues/1).
## 0.0.3 January 7 2015
- Added worksheet page setup methods.
- `worksheet_set_landscape()`
- `worksheet_set_portrait()`
- `worksheet_set_page_view()`
- `worksheet_set_paper()`
- `worksheet_print_across()`
## 0.0.2 June 26 2014
- First public release.
## 0.0.1 June 8 2014
- First GitHub release.
*/