-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update version, add installation instructions, as if on CRAN (#115)
* Update version, add installation instructions, as if on CRAN * Update pkgdown dev mode, add cran comments, README urls, formatting in CONTRIBUTING * Update cran comments * correct spelling * Update for resubmission * Address CRAN concerns: - add to Python and Altair to SystemRequirements - deprecate some functions re-exported from vegawidget - update CRAN comments - update NEWS - update pkgdown reference * Update cran comments * update CRAN comments * Correct date of email * one more edit * Make CRAN corrections 🎉 on CRAN
- Loading branch information
Showing
21 changed files
with
227 additions
and
105 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,3 +12,5 @@ | |
^\.gitattributes$ | ||
^CONTRIBUTING\.md$ | ||
^CONTRIBUTING\.Rmd$ | ||
^cran-comments\.md$ | ||
^CRAN-RELEASE$ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
#' Coerce vegaspec to JSON | ||
#' | ||
#' Deprecated, please use \code{vegawidget::\link[vegawidget]{vw_as_json}}. | ||
#' | ||
#' @inherit vegawidget::vw_as_json params return | ||
#' @export | ||
#' | ||
vw_as_json <- function(spec, pretty = TRUE) { | ||
.Deprecated("vegawidget::vw_as_json") | ||
vegawidget::vw_as_json(spec, pretty = pretty) | ||
} | ||
|
||
#' Shiny-output for vegawidget | ||
#' | ||
#' Deprecated, please use \code{vegawidget::\link[vegawidget]{vegawidgetOutput}}. | ||
#' | ||
#' @inherit vegawidget::vegawidgetOutput params return | ||
#' @export | ||
#' | ||
vegawidgetOutput <- function(outputId, width = "auto", height = "auto") { | ||
.Deprecated("vegawidget::vegawidgetOutput") | ||
vegawidget::vegawidgetOutput( | ||
outputId = outputId, | ||
width = width, | ||
height = height | ||
) | ||
} | ||
|
||
#' Render shiny-output for vegawidget | ||
#' | ||
#' Deprecated, please use \code{vegawidget::\link[vegawidget]{renderVegawidget}}. | ||
#' | ||
#' @inherit vegawidget::renderVegawidget params return | ||
#' @export | ||
#' | ||
renderVegawidget <- function(expr, env = parent.frame(), quoted = FALSE) { | ||
.Deprecated("vegawidget::renderVegawidget") | ||
vegawidget::renderVegawidget(expr = expr, env = env, quoted = quoted) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.