diff --git a/CRAN-RELEASE b/CRAN-RELEASE new file mode 100644 index 0000000..e9d72a6 --- /dev/null +++ b/CRAN-RELEASE @@ -0,0 +1,2 @@ +This package was submitted to CRAN on 2020-06-13. +Once it is accepted, delete this file and tag the release (commit 6dc04f3881). diff --git a/DESCRIPTION b/DESCRIPTION index 363bb3b..ef47a9c 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -34,4 +34,4 @@ Imports: utils, httr, magrittr -RoxygenNote: 6.1.1 +RoxygenNote: 7.1.0 diff --git a/R/utils-pipe.R b/R/utils-pipe.R index fb8c818..e79f3d8 100644 --- a/R/utils-pipe.R +++ b/R/utils-pipe.R @@ -1,6 +1,6 @@ #' Pipe operator #' -#' See \code{magrittr::\link[magrittr]{\%>\%}} for details. +#' See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. #' #' @name %>% #' @rdname pipe diff --git a/cran-comments.md b/cran-comments.md index 83d4e67..321bbf5 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,22 +1,10 @@ ## Test environments - -* local OS X install, R 3.5.2 -* ubuntu 14.04 (on travis-ci), R 3.5.2 -* r-hub (fedora & windows) -* win-builder (devel and release) +* local R installation, R 4.0.1 +* ubuntu 16.04 (on travis-ci), R 4.0.1 +* win-builder (devel) ## R CMD check results 0 errors | 0 warnings | 1 note -* checking CRAN incoming feasibility ... NOTE - ---- - -This is an update to fix the errors introduced by the -recent tidyverse update as noted by Kurt on 2018-01-05 -(https://cran.r-project.org/web/checks/check_results_docxtractr.html) - -The code has been modified to account for the new -behavior of the tidyverse. All tests and examples have been -left intact. +* This is a update that tweaks some existing functionality and adds support for using LibreOffice (if installed) to extract information from PPTX files. diff --git a/man/docx_extract_all.Rd b/man/docx_extract_all.Rd index e83f56d..c40ae5b 100644 --- a/man/docx_extract_all.Rd +++ b/man/docx_extract_all.Rd @@ -4,8 +4,7 @@ \alias{docx_extract_all} \title{Extract all tables from a Word document} \usage{ -docx_extract_all(docx, guess_header = TRUE, preserve = FALSE, - trim = TRUE) +docx_extract_all(docx, guess_header = TRUE, preserve = FALSE, trim = TRUE) } \arguments{ \item{docx}{\code{docx} object read with \code{read_docx}} diff --git a/man/docx_extract_all_tbls.Rd b/man/docx_extract_all_tbls.Rd index c9b4c9c..bc6e4e7 100644 --- a/man/docx_extract_all_tbls.Rd +++ b/man/docx_extract_all_tbls.Rd @@ -4,8 +4,7 @@ \alias{docx_extract_all_tbls} \title{Extract all tables from a Word document} \usage{ -docx_extract_all_tbls(docx, guess_header = TRUE, preserve = FALSE, - trim = TRUE) +docx_extract_all_tbls(docx, guess_header = TRUE, preserve = FALSE, trim = TRUE) } \arguments{ \item{docx}{\code{docx} object read with \code{read_docx}} diff --git a/man/docx_extract_tbl.Rd b/man/docx_extract_tbl.Rd index 74be34b..463495c 100644 --- a/man/docx_extract_tbl.Rd +++ b/man/docx_extract_tbl.Rd @@ -4,8 +4,13 @@ \alias{docx_extract_tbl} \title{Extract a table from a Word document} \usage{ -docx_extract_tbl(docx, tbl_number = 1, header = TRUE, - preserve = FALSE, trim = TRUE) +docx_extract_tbl( + docx, + tbl_number = 1, + header = TRUE, + preserve = FALSE, + trim = TRUE +) } \arguments{ \item{docx}{\code{docx} object read with \code{read_docx}} diff --git a/man/docxtractr.Rd b/man/docxtractr.Rd index 0072885..3275a58 100644 --- a/man/docxtractr.Rd +++ b/man/docxtractr.Rd @@ -3,7 +3,6 @@ \docType{package} \name{docxtractr} \alias{docxtractr} -\alias{docxtractr-package} \title{Extract Data Tables and Comments from 'Microsoft' 'Word' Documents} \description{ Microsoft Word `docx`` files provide an XML structure that is fairly diff --git a/man/pipe.Rd b/man/pipe.Rd index b7daf6a..0eec752 100644 --- a/man/pipe.Rd +++ b/man/pipe.Rd @@ -7,6 +7,6 @@ lhs \%>\% rhs } \description{ -See \code{magrittr::\link[magrittr]{\%>\%}} for details. +See \code{magrittr::\link[magrittr:pipe]{\%>\%}} for details. } \keyword{internal}