-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
9 additions
and
6 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 |
---|---|---|
@@ -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 = "[email protected]", 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 | ||
|
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 |
---|---|---|
@@ -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. |