diff --git a/DESCRIPTION b/DESCRIPTION index 690c085..3789fca 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: tables Title: Formula-Driven Table Generation -Version: 0.9.15 +Version: 0.9.16 Author: Duncan Murdoch Description: Computes and displays complex tables of summary statistics. Output may be in LaTeX, HTML, plain text, or an R diff --git a/NEWS.md b/NEWS.md index 312f6c0..747a8c6 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# tables 0.9.15 +# tables 0.9.16 - Change host to Github. - Add `useGroupLabels()` function. diff --git a/cran-comments.md b/cran-comments.md index 2799d4c..d70939f 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,3 +1,9 @@ +# tables 0.9.16 + +This version doesn't call browseURL() non-interactively +even in a \donttest section. Hopefully this will deal with the +"calibre" files. + # tables 0.9.15 This is a relatively minor update, adding a few functions. The diff --git a/man/html.tabular.Rd b/man/html.tabular.Rd index 14766bf..f35256f 100644 --- a/man/html.tabular.Rd +++ b/man/html.tabular.Rd @@ -107,6 +107,7 @@ toHTML(tab, con, options=htmloptions(head=FALSE, table=TRUE, pad=TRUE)) table_options(save) close(con) -browseURL(f) +if (interactive()) + browseURL(f) } }