Releases: JanMarvin/openxlsx2
v1.2
Release 1.2 brings the usual bug fixes and some improvements to pivot tables and copy cells.
Since its first implementation, wb_add_pivot_table()
has undergone a number of unfortunately still largely undocumented changes. It is now possible to select outline and compact to change the appearance of the pivot table and to select subsets of data to be included with choose
. This also works with slicers and is a nice feature for pre-selecting pivot tables. Note, however, that this does not work with pivot tables loaded via wb_load()
and that support for modifying these loaded pivot tables is not currently planned.
Another function that has been reworked a little is wb_copy_cells()
. This is another of the many sparsely documented functions, but actually one that has some nice features. For example, similar to copying cells in spreadsheet programs, it is possible to copy the cell as a value or as is. It is also possible to copy cells as references and it is also possible to transpose what is being copied.
Some long overlooked escaping issue with class(df$x) <- "formula"
was fixed. Which strangely didn't bother anybody for several months, but once the first report came in and was fixed, various duplicates of this issue appeared. Thanks to @olivroy options for min and max width were restored. And since this release it is also possible to use openxlsx2
with webr (see #849 for details).
A lot of time went into various bug fixes, cleanups, and minor improvements here and there. A number of the fixes and features were developed based on user requests and needs. If you find a bug, please let us know!
The release 1.2 is the 14th openxlsx2 release which is available under CRAN. Even though the package is now now semi-stable, it is always a good idea to make regular backups and check output files regularly. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- [named region] fix local_sheet counting. fixes #829 by @JanMarvin in #830
- [pivot tables] add
show_data_as
andcompact
/outline
by @JanMarvin in #833 - [write_data] escape all formulas in write_data by @JanMarvin in #834
- [write_data] make formula encoding more general by @JanMarvin in #835
- [pivot tables] use standardize_case_names() and as_xml_attr() by @JanMarvin in #836
- [drawings] improve relationship id selection by @JanMarvin in #838
- [clone] column and row styles by @JanMarvin in #839
- [pt] add choose param by @JanMarvin in #840
- [pt] Improve item selection and fix slicers names with whitespace by @JanMarvin in #842
- [numfmt] fix forward slash escaping. closes #847 by @JanMarvin in #848
- [copy_cells] copy hyperlinks and fix handling of transposed cells. fixes #846 by @JanMarvin in #850
- [copy cells] fill empty cells by @JanMarvin in #851
- Document options by @olivroy in #853
- [copy_cells] pass
...
to wb_add_data(). close #852 by @JanMarvin in #855 - [tests] provide testsetup function and use it. by @JanMarvin in #857
- [pt] cleanup choose by @JanMarvin in #858
- [xlsb] fix formats. closes #860 by @JanMarvin in #861
- Release 1.2 by @JanMarvin in #862
Full Changelog: v1.1...v1.2
v1.1
Release 1.1 is a release with many new features to try, in addition to the usual bug fixes and improvements to our existing code. Grouping columns is now a bit more user-friendly, we've updated the pugixml library, and our tests can be run in parallel again. We've added new functions for getting and setting file properties that improve and extend the existing ways to set them, a feature requested and worked on by @olivroy.
In addition, some long-requested features have been added. Reading xlsb files, cloning across workbooks, and adding slicers. Please be aware that all of these features are still somewhat experimental, have known limitations, and probably contain a few bugs. Therefore, if you try this, you should make more backups than usual and test the features more thoroughly than usual.
This release is the first to include our own xlsb file reader. With this it should be possible to load xlsb files similar to xlsx/xlsm files. Please be aware that this file parser is still limited (and probably will remain this way) and should only be considered as a sort of last resort when no other tool is available to convert the binary openxml file into a simple xlsx file. If you try this, please have a look at the NEWS file first.
Another long requested feature has been added in the form of cloning worksheets across workbooks. This extends the wb_clone_worksheet()
function with a new from
argument that allows copying worksheets across workbooks.
Last but not least, support for pivot tables has been further improved. It is now possible to sort by elements and it is possible to add a slicer to a pivot table after adding it.
A lot of time went into various bug fixes, cleanups, and minor improvements here and there. A number of the fixes and features were developed based on user requests and needs. If you find a bug, please let us know!
The release 1.1 is the 13th openxlsx2
release which is available under CRAN. Even though the package is now now semi-stable, it is always a good idea to make regular backups and check output files regularly. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- Join named regions docs by @olivroy in #777
- Add more details for waiver functions + add xrefs in styledocs. by @olivroy in #778
- [wb_group_cols()] automate column creation by @JanMarvin in #781
- [wb_add_drawing] read and add "mc:alternateContent" by @JanMarvin in #783
- [WIP] initial xlsb attempts by @JanMarvin in #688
- [xlsb] more fixes for formula heavy workbooks by @JanMarvin in #787
- [xlsb] avoid hard to spot crash with unhandled array formulas by @JanMarvin in #788
- [remove_worksheet] update activeTab. closes #792 by @JanMarvin in #793
- [pivot_table] add sort_item param option by @JanMarvin in #795
- [properties] Rework setter/getter functions for workbook properties by @JanMarvin in #782
- improve assert_class(). closes #770 by @JanMarvin in #772
- [properties] get/set keywords and comments by @JanMarvin in #798
- Review workbook properties + add
company
andmanager
by @olivroy in #799 - [vignette] Provide a why openxlsx2 section. closes #800 by @JanMarvin in #801
- [update_table] check if autofilter is available. closes #802 by @JanMarvin in #804
- [workbook] move default style initialization to workbook. fixes #803 by @JanMarvin in #805
- [update_table] guard against unknown xml nodes by @JanMarvin in #806
- [pugixml] update to release 1.14 by @JanMarvin in #808
- [tests] improve testfile_path() to download files by @JanMarvin in #785
- [wb_load] minimal workbook by @JanMarvin in #810
- Tweaks to docs by @olivroy in #812
- comment unused variable by @JanMarvin in #813
- [clone_worksheet] copy worksheet across workbooks by @JanMarvin in #622
- [wbWorkbook] separate sheets in print() with comma. closes #46 by @JanMarvin in #814
- [wbWorkbook] enforce
datetime_created
. closes #685 by @JanMarvin in #815 - [tests] cleanup options by @JanMarvin in #816
- update NEWS and wb_load man page by @JanMarvin in #817
- Skip testfile_path() tests on cran. by @JanMarvin in #818
- [drawing] do not overwrite worksheet relationships by @JanMarvin in #821
- [styles] fix typo by @JanMarvin in #825
- [clone] fix cloning from a workbook with included media by @JanMarvin in #826
- [WIP] add wb_add_slicers by @JanMarvin in #822
- Release 1.1 by @JanMarvin in #823
Full Changelog: v1.0...v1.1
v1.0
Release 1.0 is finally here. While it's just a number in the grand scheme of things, the goal is that we've achieved a semi-stable API. This means that the public API will not change in the foreseeable future, unless pressing reasons force us to do so. That being said, a lot has been done and worked on in the last few weeks.
Thanks to the work of @olivroy, the long-neglected documentation in examples and vignettes has been overhauled and now looks better than ever. Examples have been added where they were missing and cleaned up where they were outdated. The entire pkgdown page has been reworked. Building on the consistent arguments work we did in the previous version, this really makes the version shine.
A lot of time went into various bug fixes, cleanups and minor improvements here and there. Among the few fixes, there is one that requires a detailed explanation. It was discovered that we were not handling the 1904 date format correctly. As a result, our dates were always 4 years off for this date format, which was mainly used by Excel on the Mac. That's a little shameful that it took so long and came up rather by accident. Hopefully it's a sign that this format is rarely used. However, it's certainly a reminder that no code is error-free, not even the most scrutinized in the world, so it's always wise to remain vigilant and question unusual output. In addition, a number of fixes and features were developed based on user requests and needs. If you find an error, please let us know!
The release 1.0 is the twelfth openxlsx2
release which is available under CRAN. Even though the package is now now semi-stable, it is always a good idea to make regular backups and check output files regularly. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- [get_sheet_names] add escape argument. closes #252 by @JanMarvin in #724
- [vignette] Fix dataTable formula by @JanMarvin in #727
- Sharp hex by @JanMarvin in #728
- fixes for wb_load() from #688 by @JanMarvin in #732
- Fix threaded comment id. closes #731 by @JanMarvin in #734
- Flexible merge by @JanMarvin in #733
- Various wb$sheet_names related fixes and cleanups in wb_functions.R by @JanMarvin in #735
- [wb_to_df] fix date1904 conversion by @JanMarvin in #737
- guard against empty cc cases. closes #739 by @JanMarvin in #740
- [wb_load] add path to object on. closes #741 by @JanMarvin in #742
- fix wb_set_header_footer(). closes #747 by @JanMarvin in #748
- restore and improve tab_color by @JanMarvin in #750
- copy header/footer code by @JanMarvin in #751
- Review documentation and examples by @olivroy in #749
- provide basename2 for to long strings by @JanMarvin in #755
- [fmt_txt] escape xml by @JanMarvin in #757
- Export
wb_comment()
by @olivroy in #758 - [docs] update man page for create_hyperlink() by @JanMarvin in #759
- Remove wbChartSheet from exports by @olivroy in #760
- Vignette names by @olivroy in #762
- Make
wb_get_named_regions()
a wrapper. by @olivroy in #764 - Pkgdown family by @olivroy in #763
- Review threaded comment docs by @olivroy in #765
- internal: use
wb_comment()
in wb_add_thread + deprecations guide by @olivroy in #766 - Final reordering in pkgdown by @olivroy in #768
- Remove duplicated docs + remove internal functions docs. by @olivroy in #769
- Release 1.0 by @JanMarvin in #743
Full Changelog: v0.8...v1.0
v0.8
Release 0.8 might be the last milestone on the way to 1.0 and brings a lot of changes and cleanups to the API and exported functions. Please note: If no drastic issues show up in bug reports in the coming days, the current API will become the 1.0 API, which will be semi-stable (i.e. if no changes are required, it will not change in the foreseeable future). The current changes were needed to streamline the API and provide a pleasant user experience.
Finally, the long overdue cleanup of arguments from camel case to snake case has been addressed. Hopefully this has been archived in a way that is backwards compatible and warnings and broken code should be limited. Basically, a function foo(camelCase=bar)
is now foo(snake_case=bar)
, although for now it should accept both variants. The solution to this problem was to pass the arguments for camelCase to ...
and convert them under the hood to variables for snake case. There are obviously some limitations to this approach, but we felt it was too close to a 1.0 release to break the API in such a drastic way.
Another addition is the introduction of wb_dims()
, a helper function introduced for interacting with the dims
argument of openxlsx2
workbook functions. Many of the previous row/rows
, col/cols
and xy
variants are deprecated, and users are recommended to use dims
either the simple A1 notation for cells with the existing helper functions like int2col()
or the feature-rich wb_dims()
. Thanks to the work of @olivroy, who improved the function in various commits, there is a detailed man page for this function with many examples of how to use it.
A lot of time went into various bug fixes, cleanups, and minor improvements here and there. A number of the fixes and features were developed based on user requests and needs. If you find a bug, please let us know!
The release 0.8 is the eleventh openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- Rename convertToExcelDate by @olivroy in #672
- Rename convertToExcelDate and cleanups for deprecated functions by @JanMarvin in #673
- [data_table] Do not break on zero row data frame input. fixes #676 by @JanMarvin in #677
- [experimental] standardize function arguments by @JanMarvin in #678
- Update vignettes to snake_case, and other code quality updates by @olivroy in #682
- R/write.R cleanup by @olivroy in #683
- warn on unused arguments in standardize_case_names() by @JanMarvin in #690
- provide wb_dims() by @JanMarvin in #691
- [WIP] handling of threaded comments by @JanMarvin in #674
- Gh issue 681 pt1 by @JanMarvin in #693
- Stop advertising functions that don't fit in openxlsx2 API by @olivroy in #694
- Update vignettes to latest recommended API. by @olivroy in #698
- Misc by @JanMarvin in #701
- update .lintr by @JanMarvin in #700
- force datetime creation. closes #685 by @JanMarvin in #686
- clean up by @JanMarvin in #704
- validate_new_sheet now tries to fix the sheet name. closes #687 by @JanMarvin in #705
- Review
wb_dims()
by @olivroy in #702 - Fix deprecation code for start_col/start_row. closes #706 by @JanMarvin in #707
- Gh issue 681 pt2 by @JanMarvin in #708
- [write_xlsx] supply sheetName for single argument. closes #711 by @JanMarvin in #712
- unique is not enough for pivot tables. closes #713 by @JanMarvin in #714
- return all formulas. previously dates would interfere by @JanMarvin in #715
- Improve
wbWorkbook
documentation. by @olivroy in #718 - Rename
workbook_grouping
towb_grouping
by @olivroy in #719 - Review examples by @olivroy in #720
- silence warnings in create_dxfs_style() by @JanMarvin in #721
- Documentation improvements by @olivroy in #717
- Save path by @JanMarvin in #723
- wb_grid_lines -> wb_set_grid_lines by @JanMarvin in #725
- Release 0.8 by @JanMarvin in #709
New Contributors
Full Changelog: v0.7.1...v0.8
v0.7.1
Release 0.7.1 is another milestone on the way to 1.0, bringing a few style improvements and the usual bug fixes.
The release introduces wb_add_named_style()
, a new function to create named styles like Note
or Title
from openxlsx2
. This function is accompanied by the introduction of workbook themes. The fmt_txt()
function, introduced in release 0.7, has been improved to provide a class with print()
and +
methods. This should make it easier for the user to create and design workbooks.
Further optimizations have been made to the creation of conditional formatting. A new function wb_add_dxfs_style()
has been introduced and color gradients can now be used to create conditional formatting styles. Objects with a label
attribute are now treated according to the label, new (experimental) changes have been made to the creation of pivot table number formats and ordering.
A lot of time went into various bug fixes, cleanups, and minor improvements here and there. A number of the fixes and features were developed based on user requests and needs. If you find a bug, please let us know!
The release 0.7.1 is the tenth openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- [wbWorkbook] Themes by @JanMarvin in #630
- [wb_to_df] Fix cols by @JanMarvin in #631
- Download files in setup.R. closes #345 by @JanMarvin in #632
- download_testfiles() for coverage by @JanMarvin in #633
- try 100 times by @JanMarvin in #634
- [wbStyles] Add as_xml_attr by @JanMarvin in #637
- [fmt_txt] add class and methods by @JanMarvin in #636
- add to_string() to convert variables with labels attribute by @JanMarvin in #639
- [styles] Create named styles. closes #274 by @JanMarvin in #628
- attempt to write utf8 on non utf8 os by @JanMarvin in #641
- [cf] add dims argument by @JanMarvin in #645
- [wb_load; cf] fix conditional formatting range. closes #646 by @JanMarvin in #647
- add gradientFill option to `create_dxfs_style(). closes #648 by @JanMarvin in #651
- escape if pivot cacheField is string. closes #649 by @JanMarvin in #650
- export internal dims helpers.closes #652 by @JanMarvin in #653
- add dims to wb_add_conditional_formatting(). closes #654 by @JanMarvin in #655
- [wb_set_sheet_names] add details text. closes #656 by @JanMarvin in #657
- [add_clone_worksheet] fix comments. closes #658 by @JanMarvin in #659
- fix named regions by @JanMarvin in #660
- restore coverage for styles_mgr by @JanMarvin in #661
- [protect] allow logical operators in protect worksheet by @JanMarvin in #662
- [styles] add wb_add_dxfs_style() wrapper by @JanMarvin in #665
- attempt to escape conditional formatting by @JanMarvin in #666
- [experimental] Pivot table improvements by @JanMarvin in #669
- [experimental] cleanup pivot sorting by @JanMarvin in #670
- Release 0.7.1 by @JanMarvin in #671
Full Changelog: v0.7...v0.7.1
v0.7
Release 0.7 brings many new features, alongside the usual bug fixes.
Formula handling has been greatly improved in wb_add_formula()
to include cell metadata and ranges for array formulas. You can read about these features in the newly added formula vignette, which covers various types of formulas. In addition ,you might be interested in wb_add_ignore_error()
to suppress unwanted evaluation errors in spreadsheet software.
In the style sections, fmt_txt()
has been introduced as a new function to style parts of strings. An example of how to use this function is included in the updated style vignette. Finally, it is now possible to use custom table styles and create them.
A lot of time went into various bug fixes, cleanups, and minor improvements here and there. A number of the fixes and features were developed based on user requests and needs. If you find a bug, please let us know.
The release 0.7 is the ninth openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- [wb_add_formula] updates to formulas including vignette. closes #490 by @JanMarvin in #593
- allow custom table styles by @JanMarvin in #594
- unify genBaseCore usage in wbWorkbook and write_xlsx. fixes #599 by @JanMarvin in #600
- [doc] fix typo in write_xlsx by @JanMarvin in #602
- Support hms writing by @JanMarvin in #601
- load tableStyles by @JanMarvin in #603
- Random axis ids by @JanMarvin in #605
- Fmt txt. closes #107 by @JanMarvin in #607
- Outdec. closes #610 by @JanMarvin in #611
- Default to char by @JanMarvin in #615
- create_tablestyle by @JanMarvin in #609
- update vignettes.closes #613 by @JanMarvin in #616
- ignore error by @JanMarvin in #617
- update style vignette by @JanMarvin in #618
- Chartsheet cleanup by @JanMarvin in #619
- Safer removal of mixed sheet type workbooks by @JanMarvin in #621
- Update table by @JanMarvin in #606
- [WIP] check for missing files by @JanMarvin in #267
- add wb_set_sheetview. closes #394 by @JanMarvin in #604
- Write Hyperlinks if required. closes #624 by @JanMarvin in #625
- Release 0.7 by @JanMarvin in #626
Full Changelog: v0.6.1...v0.7
v0.6.1
Release 0.6.1 brings some new features to a slowly but steadily maturing package. The release came a bit earlier than usual to support the next waldo
release.
Functions that take columns as arguments should now accept spreadsheet ranges like "A:B"
. There may still be remaining functions that behave differently, but these should be reported as bugs. It is now possible to place images with dims
just like rvg or mschart drawings (they now share the same code), and drawings get the ability to add offset vectors to fine tune their placement. It is now possible to skip hidden columns and rows in wb_to_df()
. Support for third party packages that are derivatives of data frames has been improved. The last xy
function argument has been deprecated in comment functions, and finally it it is possible to chain load()
and to_df()
.
The release 0.6.1 is the eight openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- Col range by @JanMarvin in #575
- [wb_add_image] add dims. closes #576 by @JanMarvin in #578
- [test] wb_add_plot() by @JanMarvin in #579
- [wb_to_df] add skipHiddenCols and skipHiddenRows by @JanMarvin in #580
- support writing tibbles. closes #581 by @JanMarvin in #582
- [test] improve test for waldo. closes #584 by @JanMarvin in #585
- [comments] add dims option and minor code cleanup by @JanMarvin in #586
- [wbWorkbook] provide wb$load() and wb$to_df() by @JanMarvin in #587
- Release 0.6.1 by @JanMarvin in #589
Full Changelog: v0.6...v0.6.1
v0.6
Release 0.6 is a maintenance release for a slowly but steadily maturing package. Besides the usual bug fixes, we remove some deprecated functions and make minor changes to the wb_styles
functions. Also, feature requests have been fulfilled (reading empty named columns with skipEmptyCols
/skipEmptyRows
and dims
argument in wb_clean_sheet()
).
Style functions now accept numeric, integer or logical arguments where applicable. Previously only characters were accepted, now wb_add_font(size = 11)
is as valid as wb_add_font(size = "11")
. The upgrade vignette has been extended with some pipes examples in addition to the chains. Applicability for R versions < R 4.1.0 has been restored.
The release 0.6 is the seventh openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- 552 write null by @jmbarbone in #553
- [wb_to_df] modify skipEmptyCols/skipEmptyRows. closes #554 by @JanMarvin in #555
- Type date conv by @JanMarvin in #551
- Cleanup deprecated by @JanMarvin in #548
- use as_xml_attr() in wb_styles functions. closes #557 by @JanMarvin in #558
- add dims argument to wb_clean_sheet(). closes #562 by @JanMarvin in #563
- extend examples for chains and pipes. closes #561 by @JanMarvin in #564
- add std namespace to isfinite. closes #565 by @JanMarvin in #567
- avoid dot functions of R > 3.4.0. closes #568 by @JanMarvin in #569
- release 0.6 by @JanMarvin in #572
Full Changelog: v0.5.1...v0.6
v0.5.1
Release 0.5.1 mainly brings improvements to the existing code as well as the usual bug fixes. A newly integrated feature is form controls. It is now possible to create radio buttons, dropdown menus and check boxes directly from openxlsx2
.
Cell initialization has been improved, it is now possible to use nested groupings, and external links are now imported in the correct order. Date detection should now be better, and when filling merged cells, the content that is not in the selected dimensions is now taken into account. The biggest change was made to the internal relationship detection, which should now be smarter and behaves more like openxml relationships should work.
The integration of form controls, the faster cell initialization and the possibility of nested grouping were feature requests or resulted from discussion topics. Thank you for the suggestion and the interest in openxlsx2
.
The release 0.5.1 is the sixth openxlsx2
release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- Cleanup drawings and vmlDrawings reference by @JanMarvin in #536
- allow nested grouping by @JanMarvin in #537
- cleanups in wb_load by @JanMarvin in #538
- add form control. closes #532 by @JanMarvin in #533
- improve fillMergedCells. closes #324 by @JanMarvin in #541
- additional cleanup from #536 by @JanMarvin in #542
- create initialize_cell function by @JanMarvin in #545
- try to avoid passing long xml strings to file.exists() by @JanMarvin in #543
- Improve wb to df by @JanMarvin in #547
- 473 na strings by @jmbarbone in #474
- release 0.5.1 by @JanMarvin in #549
Full Changelog: v0.5...v0.5.1
v0.5
Release 0.5 brings a number of changes and the usual bug fixes. In particular, we now use American English by default (aka color
) from now on. However, we still support the British English colour
. This change was introduced for consistency, previously we had both variants in different functions.
Among the changes, the following stand out: grouping has been improved, as well as reading escaped XML. We provide a new function wb_copy_cells()
for copying (and transposing) cells, cell values or cell references in a workbook, and are now able to write both shared strings and inline strings (the previous standard). Shared strings are advantageous when you have many identical strings in a workbook. Writing data to the worksheet has been further improved and two new features have been introduced. 1) there is an experimental option openxlsx2.string_nums
that changes the way strings containing numbers are written and 2) a new function has been added to the package. It is now possible to write pivot tables using wb_add_pivot_table()
. These are evaluated once the workbook is opened in spreadsheet software. However, be aware that both were introduced recently and may still contain bugs and cause unexpected behavior. Be careful (make some more backups than usual) when using these functions and please give feedback if you do.
The release 0.5 is the fifth openxlsx2 release which is available under CRAN. However, the package is not yet fully stable. Until the stable version 1.0 there may still be changes in the API. A look at the issue tracker and the NEWs is recommended in any case.
What's Changed
- update gha. closes #482 by @JanMarvin in #487
- Fix minor typo by @JanMarvin in #488
- improve row and column grouping. closes #177 by @JanMarvin in #486
- [wb_add_data] Force when writing by @JanMarvin in #492
- Fix wb_load() with multiple sheetView sections. fixes #494 by @JanMarvin in #495
- fix typo in add_border by @JanMarvin in #496
- fix reading of xml escapes by @JanMarvin in #497
- Group depending on outlinePr by @JanMarvin in #491
- fix slicer and slicerCache loading. fixes #504 by @JanMarvin in #505
- fix tab selection by @JanMarvin in #506
- tabColour accepts wb_colour() by @JanMarvin in #500
- New cf by @JanMarvin in #493
- Colour color pt1 by @JanMarvin in #501
- Colour color pt2 by @JanMarvin in #502
- [wb_group_rows] fix copy & paste error. fixes #511 by @JanMarvin in #512
- Load pivot by @JanMarvin in #513
- provide wb_copy_cells. closes #282 by @JanMarvin in #515
- [wb_add_data] string_nums option. closes #503 by @JanMarvin in #516
- correct description. closes #483 by @JanMarvin in #517
- Write sst with
inline_string = FALSE
by @JanMarvin in #499 - Empty relship by @JanMarvin in #519
- [new feature] Add pivot table by @JanMarvin in #520
- safe speedups for add_data by @JanMarvin in #522
- Speedup add data pt4 by @JanMarvin in #525
- move R code to Rcpp function by @JanMarvin in #526
- move this out of the loop by @JanMarvin in #527
- release 0.5 by @JanMarvin in #529
Full Changelog: v0.4.1...v0.5