Skip to content

Commit 00c3509

Browse files
authored
hot-fix: v0.3.1 (#175)
1 parent 6f32dab commit 00c3509

File tree

4 files changed

+9
-3
lines changed

4 files changed

+9
-3
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: chromote
22
Title: Headless Chrome Web Browser Interface
3-
Version: 0.3.0.9000
3+
Version: 0.3.1
44
Authors@R: c(
55
person("Winston", "Chang", , "[email protected]", role = c("aut", "cre")),
66
person("Barret", "Schloerke", , "[email protected]", role = "aut",

NEWS.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1-
# chromote (development version)
1+
# chromote 0.3.1
2+
3+
* Fixed a typo that caused `launch_chrome()` to throw an error. (#175)
24

35
# chromote 0.3.0
46

R/chrome.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,8 @@ inform_if_chrome_not_found <- function(
162162

163163
chrome_headless_mode <- function() {
164164
opt <- getOption("chromote.headless", NULL)
165-
env <- Sys.getenv("CHROMOTE_HEADLESS", NULL)
165+
env <- Sys.getenv("CHROMOTE_HEADLESS", "")
166+
env <- if (nzchar(env)) env else NULL
166167

167168
# TODO Chrome v128 changed the default from --headless=old to --headless=new
168169
# in 2024-08. Old headless mode was effectively a separate browser render,

cran-comments.md

+3
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
We apologize for re-submitting so quickly. We realized we introduced a serious
2+
bug in the last release and a quick fix is essential.
3+
14
## R CMD check results
25

36
0 errors | 0 warnings | 0 notes

0 commit comments

Comments
 (0)