Skip to content

Commit 32b9ece

Browse files
author
Jonathan Hill
committed
Merge branch 'release/fixes_#98'
2 parents 0a87d90 + 68bd338 commit 32b9ece

2 files changed

Lines changed: 15 additions & 15 deletions

File tree

DESCRIPTION

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,26 +25,26 @@ Authors@R: c(
2525
Maintainer: Jon Hill <jon.mark.hill@gmail.com>
2626
URL: www.ficonsulting.com
2727
BugReports: https://github.com/ficonsulting/RInno/issues
28-
Description: Installs shiny apps using Inno Setup, an open source software that builds installers for Windows programs <http://www.jrsoftware.org/ishelp/>.
28+
Description: Installs shiny apps packaged as stand-alone Electron apps using Inno Setup, an open source software that builds installers for Windows programs <http://www.jrsoftware.org/ishelp/>.
2929
License: GPL-3 | file LICENSE
3030
Encoding: UTF-8
3131
LazyData: true
3232
Depends:
3333
R (>= 3.3.0)
3434
Imports:
35-
curl (>= 2.8.1),
36-
glue (>= 1.1.1),
37-
httr (>= 1.3.0),
38-
installr (>= 0.19.0),
39-
jsonlite (>= 1.5),
40-
magrittr (>= 1.5),
41-
methods (>= 3.5.1),
42-
pkgbuild (>= 1.0.0),
43-
remotes (>= 1.1.1),
44-
rmarkdown (>= 1.6),
45-
shiny (>= 1.0.4),
46-
stringr (>= 1.2.0),
47-
utils (>= 3.5.1)
35+
curl,
36+
glue (>= 1.2.0),
37+
httr,
38+
installr,
39+
jsonlite,
40+
magrittr,
41+
methods,
42+
pkgbuild,
43+
remotes,
44+
rmarkdown,
45+
shiny,
46+
stringr ,
47+
utils
4848
Suggests:
4949
knitr,
5050
stringi,

R/code_section.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ code_section <- function(iss, R_version = paste0(">=", R.version$major, ".", R.v
3838
inequality,
3939
"numeric_version('", R_version, "')")
4040

41-
if (!R_version %in% R_versions) stop(glue::glue("R version - {R_version} - was not found on CRAN. Please use `R_version` to specify one that is or let us know if you think you received this message in error: \n\nhttps://github.com/ficonsulting/RInno/issues"), call. = FALSE)
41+
if (!R_version %in% R_versions && interactive()) stop(glue::glue("R version - {R_version} - was not found on CRAN. Please use `R_version` to specify one that is or let us know if you think you received this message in error: \n\nhttps://github.com/ficonsulting/RInno/issues"), call. = FALSE)
4242

4343
results <- unlist(lapply(version_specs, function(x) eval(parse(text = x))))
4444
acceptable_R_versions <-

0 commit comments

Comments
 (0)