Skip to content

Commit

Permalink
Update docs for release (#58)
Browse files Browse the repository at this point in the history
  • Loading branch information
rjake authored Jul 29, 2020
1 parent 4b9a3a2 commit 55dc9c0
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -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
Expand Down
7 changes: 5 additions & 2 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -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)

Expand Down
6 changes: 3 additions & 3 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -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.

0 comments on commit 55dc9c0

Please sign in to comment.