|
1 | | -# gtExtras (development version) |
| 1 | +# gtExtras 0.6.0 |
| 2 | + |
2 | 3 | - Handle interquartile range of zero in `gt_plt_summary()` - [#104](https://github.com/jthomasmock/gtExtras/issues/104) |
3 | 4 | - Experimentally handle multiple types of plots in `gt_plt_dist()` - [#102](https://github.com/jthomasmock/gtExtras/issues/102) |
| 5 | +- Resolve issues with `gt_plt_summary()` - [#148](https://github.com/jthomasmock/gtExtras/issues/148) and [146](https://github.com/jthomasmock/gtExtras/issues/146) |
| 6 | +- Address test issues with svglite - [#147](https://github.com/jthomasmock/gtExtras/issues/147) |
| 7 | +- Remove deprecated fontawesome functions `gt_fa_repeats()`, and `gt_fa_column()` in favor of `gt` native functions. |
| 8 | +- Address CRAN issues |
4 | 9 |
|
5 | 10 | # gtExtras 0.5.0 |
6 | 11 |
|
|
18 | 23 | - Add a labelling feature to `gt_plt_bar_pct()` - thanks to @andreweatherman and [PR](https://github.com/jthomasmock/gtExtras/pull/100) |
19 | 24 |
|
20 | 25 | # gtExtras 0.4.5 |
| 26 | + |
21 | 27 | - Refactor many functions to account for upstream changes in `gt` v0.8.0 |
22 | 28 | - Add a `palette_col` argument to `gt_plt_bullet()` to accept a named column of palette colors as present in the data. Fixed #72 |
23 | 29 | - Fix internals of `gt_theme_pff()` to use `table.font.size` inside `tab_options()` rather than `tab_style()`. Fixed #74 |
24 | 30 | - Fix a few instances of `geom_line()` and `geom_v/hline()` that were throwing warnings for `ggplot2` v3.4.0 |
25 | | -- Refactor internals of `fmt_pad_num` to align with @mrcaseb implementation https://gist.github.com/mrcaseb/f0f85b48df7957c27c4205cafccbc5a2 |
| 31 | +- Refactor internals of `fmt_pad_num` to align with @mrcaseb implementation <https://gist.github.com/mrcaseb/f0f85b48df7957c27c4205cafccbc5a2> |
26 | 32 | - Refactor many functions that use lines with size parameter, to avoid ggplot2 v.3.4.0 deprecation warnings (affects `gt_plt_bar`, `gt_pct_bar`, `gt_plt_dist`, `gt_plt_conf_int`, `gt_plt_percentile_dot`, `gt_plt_point`, `gt_plt_sparkline`, `gt_win_loss`) |
27 | 33 |
|
28 | 34 | # gtExtras 0.4.3 |
| 35 | + |
29 | 36 | - Modify internals of `gt_fa_column()` to accept factors with levels not present in the data, ignoring unneeded levels. Thank you to @mikedolanfliss for the suggestion. |
30 | | -- Add `gt_merge_stack_color()` to create a merge/stack with background color - per @mrcaseb and issue #71 |
| 37 | +- Add `gt_merge_stack_color()` to create a merge/stack with background color - per @mrcaseb and issue #71 |
31 | 38 | - Add `gt_alert_icon()` to create a colored circle based on the range of values in the column. |
32 | 39 | - Fix a CRAN extra check |
33 | 40 |
|
|
63 | 70 | - Prep for and submit initial CRAN release :fingers-crossed: |
64 | 71 |
|
65 | 72 | # gtExtras 0.3.9 |
| 73 | + |
66 | 74 | - Renamed colors arg in `gt_merge_stack()` to be 'palette' |
67 | 75 | - Renamed colors arg in `gt_plt_bullet()` to be 'palette' |
68 | 76 | - Renamed pal arg in `gt_plt_sparkline()` to be 'palette' |
69 | 77 |
|
70 | 78 | # gtExtras 0.3.8 |
| 79 | + |
71 | 80 | - Renamed `colors` argument in `gt_win_loss()` to `palette` |
72 | 81 | - Added NA handling to all `fontawesome::fa()` functions, ie `gt_fa_rank_change()`, `gt_fa_repeats()`, `gt_fa_column()` |
73 | 82 | - Add missing data handling to more plotting functions |
74 | 83 | - Refactor testing to use `webshot2::webshot()` over `webshot::webshot()` |
75 | 84 | - Remove `gt_sparkline()` - functions separated into `gt_plt_sparkline()` and `gt_plt_dist()` |
76 | 85 |
|
77 | 86 | # gtExtras 0.3.7 |
78 | | -- Added basic support in `gt_plt_summary()` for dates/times. |
| 87 | + |
| 88 | +- Added basic support in `gt_plt_summary()` for dates/times. |
79 | 89 | - Updated tests for `gt_plt_summary()` to include dates/times |
80 | 90 |
|
81 | 91 | # gtExtras 0.3.6 |
|
95 | 105 |
|
96 | 106 | # gtExtras 0.3.2 |
97 | 107 |
|
98 | | -* Remove `scales::scales_label_si()` in favor of `scales::label_number(scale_cut = cut_scale_short())` as the previous function was deprecated. Thanks to [@mrcaseb](https://github.com/mrcaseb) for pointing out in [Issue 48](https://github.com/jthomasmock/gtExtras/issues/48) |
| 108 | +- Remove `scales::scales_label_si()` in favor of `scales::label_number(scale_cut = cut_scale_short())` as the previous function was deprecated. Thanks to [@mrcaseb](https://github.com/mrcaseb) for pointing out in [Issue 48](https://github.com/jthomasmock/gtExtras/issues/48) |
99 | 109 |
|
100 | 110 | # gtExtras 0.3 |
101 | 111 |
|
102 | | -* Add [Daniel Sjoberg](https://github.com/ddsjoberg) as a contributor in honor of their major assistance with preparation towards CRAN |
103 | | -* Move past 0.2 release into a "next stop CRAN"... hopefully |
104 | | -* Vendor additional unexported functions from `{gt}` with attribution |
| 112 | +- Add [Daniel Sjoberg](https://github.com/ddsjoberg) as a contributor in honor of their major assistance with preparation towards CRAN |
| 113 | +- Move past 0.2 release into a "next stop CRAN"... hopefully |
| 114 | +- Vendor additional unexported functions from `{gt}` with attribution |
105 | 115 |
|
106 | 116 | # gtExtras 0.2.7 |
107 | 117 |
|
108 | | -* Bring in `webshot2` as a remote dependency suggest and minor changes to clean up some R checks, thanks to a PR from the great [Daniel Sjoberg](https://github.com/jthomasmock/gtExtras/pull/43). |
| 118 | +- Bring in `webshot2` as a remote dependency suggest and minor changes to clean up some R checks, thanks to a PR from the great [Daniel Sjoberg](https://github.com/jthomasmock/gtExtras/pull/43). |
109 | 119 |
|
110 | | -* Correct an internal bug in `gt_plt_dist()` which was failing for plotting integers. |
| 120 | +- Correct an internal bug in `gt_plt_dist()` which was failing for plotting integers. |
111 | 121 |
|
112 | 122 | # gtExtras 0.2.6 |
113 | 123 |
|
114 | | -* Exchange `webshot` for `webshot2` to enhance capabilities. Note that `webshot2` is GitHub only, install via: `remotes::install_github("rstudio/webshot2")`. This solves [issue #42](https://github.com/jthomasmock/gtExtras/issues/42). |
| 124 | +- Exchange `webshot` for `webshot2` to enhance capabilities. Note that `webshot2` is GitHub only, install via: `remotes::install_github("rstudio/webshot2")`. This solves [issue #42](https://github.com/jthomasmock/gtExtras/issues/42). |
115 | 125 |
|
116 | 126 | # gtExtras 0.2.5 |
117 | 127 |
|
118 | | -* Updated `gt_theme_guardian()` to work with zero-length tables per [Issue 41](https://github.com/jthomasmock/gtExtras/issues/41) |
| 128 | +- Updated `gt_theme_guardian()` to work with zero-length tables per [Issue 41](https://github.com/jthomasmock/gtExtras/issues/41) |
119 | 129 |
|
120 | 130 | # gtExtras 0.2.4 |
121 | 131 |
|
122 | | -* Added a `NEWS.md` file to track changes to the package. |
| 132 | +- Added a `NEWS.md` file to track changes to the package. |
123 | 133 |
|
124 | 134 | ## Bug Fixes prior to 0.2.4 |
125 | 135 |
|
126 | | -* Use `gt_index` to prevent incorrect ordering of rows with `gt_plt_bar_pct()` per [StackOverflow report](https://stackoverflow.com/questions/71313688/gtextras-column-showing-in-wrong-order-in-gt-table-when-grouped?noredirect=1#comment126232993_71313688) |
| 136 | +- Use `gt_index` to prevent incorrect ordering of rows with `gt_plt_bar_pct()` per [StackOverflow report](https://stackoverflow.com/questions/71313688/gtextras-column-showing-in-wrong-order-in-gt-table-when-grouped?noredirect=1#comment126232993_71313688) |
127 | 137 |
|
128 | | -* Remove `keep_column` argument for `gt_plt_bullet`, this functionality is able to be achieved with `gt_duplicate_column()` upstream. This also solves naming confusion as seen in [issue 37](https://github.com/jthomasmock/gtExtras/issues/37) |
| 138 | +- Remove `keep_column` argument for `gt_plt_bullet`, this functionality is able to be achieved with `gt_duplicate_column()` upstream. This also solves naming confusion as seen in [issue 37](https://github.com/jthomasmock/gtExtras/issues/37) |
0 commit comments