Skip to content

Releases: r-lib/gtable

gtable 0.3.5

23 Apr 06:26
Compare
Choose a tag to compare
v0.3.5

Increment version number to 0.3.5

gtable 0.3.4

22 Aug 09:18
3e53878
Compare
Choose a tag to compare
  • Fix package doc links

gtable 0.3.3

21 Mar 14:04
71c1d63
Compare
Choose a tag to compare
v0.3.3

Specify rlang version (#93)

gtable 0.3.2

20 Mar 12:02
Compare
Choose a tag to compare
  • General upkeep

gtable 0.3.1

01 Sep 11:37
Compare
Choose a tag to compare
  • Re-documented to fix HTML issues in .Rd.

  • gtable has been re-licensed as MIT (#85).

gtable 0.3.0

28 Mar 07:51
caf1f23
Compare
Choose a tag to compare
  • Made a range of internal changes to increase performance of gtable
    construction, these include:

    • Use more performant data.frame constructor .
    • Treat layout data.frame as list when indexing and modifying it.
    • Use length of widths and heights fields instead of ncol() and nrow()
      internally.
    • Substitute stopifnot(...) with if(!...) stop().
  • Better documentation, including a new README, a vignette on performance
    profiling and a pkgdown site.

  • New logo

  • It is now an error to index into a gtable with non-increasing indices.

  • Dimnames are now inherited from the grobs data in gtable_col(),
    gtable_row(), and gtable_matrix()

  • gtable_trim now works with empty gtables

  • gtable_filter now has an invert argument to remove grops matching a name.

gtable 0.2.0

26 Feb 15:37
Compare
Choose a tag to compare
  • Switch from preDrawDetails() and postDrawDetails() methods to
    makeContent() and makeContext() methods (@pmur002, #50).
    This is a better approach facilitiated by changes in grid. Learn more
    at https://journal.r-project.org/archive/2013-2/murrell.pdf.
  • Added a NEWS.md file to track changes to the package.
  • Partial argument matches have been fixed.
  • Import grid instead of depending on it.