From 55dc9c0e6af893f65882e9b79890c142ce775a28 Mon Sep 17 00:00:00 2001 From: Jake Date: Wed, 29 Jul 2020 00:53:40 -0400 Subject: [PATCH] Update docs for release (#58) --- DESCRIPTION | 2 +- NEWS.md | 7 +++++-- cran-comments.md | 6 +++--- 3 files changed, 9 insertions(+), 6 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index fa8cd41..2da149f 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: shinyobjects Title: Access Reactive Data Interactively -Version: 0.1.1 +Version: 0.2.0 Authors@R: person("Jake", "Riley", email = "rjake@sas.upenn.edu", role = c("aut", "cre")) Description: Troubleshooting reactive data in 'shiny' can be difficult. These functions will convert reactive data frames into functions and load all assigned objects into your local environment. If you create a dummy input object, as the function will suggest, you will be able to test your server and ui functions interactively. BugReports: https://github.com/rjake/shinyobjects/issues diff --git a/NEWS.md b/NEWS.md index a1d400e..7999f73 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,12 +1,15 @@ -# shinyobjects dev +# shinyobjects 0.2.0 ### New Features +* `eventReactive()` now parsed to return a function (#55) * `output$plot <- renderPlot(plot(x))` transformed to `output$plot <- (plot(x))` (#45) * `reactiveValues()` now converted to `list()` (#29) ### Bug fixes -* `view_ui()` less picky about input (#29) +* Multi-line `x <- reactive({\n...\n...\n})` statements weren't evaluating inside `runApp()` or `shinyApp()` (#24) +* `dummy_input` removed from objects returned (#50) * Don't add empty input list unless dummy list in code (#31) * Rmd evaluated with or without spaces (`eval=F(ALSE)` or `eval = F(ALSE)`) (#26) ### Other +* Logic for extracting `server` code uses call names instead of indexing (#52, 54) * Underlying code parses expressions instead of strings (#41) * Reorganize code (renamed files/functions) (#36 #25) diff --git a/cran-comments.md b/cran-comments.md index ffc1993..10c4408 100644 --- a/cran-comments.md +++ b/cran-comments.md @@ -1,10 +1,10 @@ ## Test environments -* local R installation, R 3.6.2 -* ubuntu 16.04 (on travis-ci), R 3.6.2 +* local R installation, R 3.6.3 +* ubuntu 16.04 (on travis-ci), R 3.6.3 * win-builder (devel) ## R CMD check results 0 errors | 0 warnings | 0 notes -* Minor fixes to improve user experience and minimize the need to reference documentation. Currently convert_selection() will not work if the user doesn't specify the environment. This patch will prompt the user for the environment. +* This iteration returns more reactive objects than v 0.1.1 This version gives the user access to output$... objects and the results of eventReactive() and reactiveValues(). There is a bit of refactored code for more robust logic and bug fixes for the objects returned to the user.