eventReactive()
now parsed to return a function (#55)output$plot <- renderPlot(plot(x))
transformed tooutput$plot <- (plot(x))
(#45)reactiveValues()
now converted tolist()
(#29)
- Multi-line
x <- reactive({\n...\n...\n})
statements weren't evaluating insiderunApp()
orshinyApp()
(#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)
oreval = F(ALSE)
) (#26)
- 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)
view_ui()
can now run from selected text in the source editor (#19)
convert_selection()
now prompts user for environment if not entered (#16)
- New logo (#21)
Initial release