Skip to content

Commit 735a15d

Browse files
committed
Merge tag 'v/0/10/2.2'
Shiny version 0.10.2.2 Conflicts: DESCRIPTION
2 parents 0984e6e + 7b887d2 commit 735a15d

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

NEWS

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,11 @@ shiny 0.10.2.9xxx
3434
`encodeURIComponent()`, and `decodeURIComponent()` from the httpuv package
3535
instead of `utils::URLencode()` and `utils::URLdecode()`. (#630)
3636

37+
shiny 0.10.2.2
38+
--------------------------------------------------------------------------------
39+
40+
* Remove use of `rstudio::viewer` in a code example, for R CMD check.
41+
3742
shiny 0.10.2.1
3843
--------------------------------------------------------------------------------
3944

R/app.R

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@
3434
#' ),
3535
#' server = function(input, output) {
3636
#' output$plot <- renderPlot( plot(head(cars, input$n)) )
37-
#' },
38-
#' options=list(launch.browser = rstudio::viewer)
37+
#' }
3938
#' )
4039
#'
4140
#' shinyAppDir(system.file("examples/01_hello", package="shiny"))

man/shinyApp.Rd

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,8 +77,7 @@ shinyApp(
7777
),
7878
server = function(input, output) {
7979
output$plot <- renderPlot( plot(head(cars, input$n)) )
80-
},
81-
options=list(launch.browser = rstudio::viewer)
80+
}
8281
)
8382
8483
shinyAppDir(system.file("examples/01_hello", package="shiny"))

0 commit comments

Comments
 (0)