Skip to content

Commit

Permalink
hot-fix: v0.3.1 (#175)
Browse files Browse the repository at this point in the history
  • Loading branch information
gadenbuie authored Aug 29, 2024
1 parent 6f32dab commit 00c3509
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 3 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: chromote
Title: Headless Chrome Web Browser Interface
Version: 0.3.0.9000
Version: 0.3.1
Authors@R: c(
person("Winston", "Chang", , "[email protected]", role = c("aut", "cre")),
person("Barret", "Schloerke", , "[email protected]", role = "aut",
Expand Down
4 changes: 3 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,6 @@
# chromote (development version)
# chromote 0.3.1

* Fixed a typo that caused `launch_chrome()` to throw an error. (#175)

# chromote 0.3.0

Expand Down
3 changes: 2 additions & 1 deletion R/chrome.R
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,8 @@ inform_if_chrome_not_found <- function(

chrome_headless_mode <- function() {
opt <- getOption("chromote.headless", NULL)
env <- Sys.getenv("CHROMOTE_HEADLESS", NULL)
env <- Sys.getenv("CHROMOTE_HEADLESS", "")
env <- if (nzchar(env)) env else NULL

# TODO Chrome v128 changed the default from --headless=old to --headless=new
# in 2024-08. Old headless mode was effectively a separate browser render,
Expand Down
3 changes: 3 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
We apologize for re-submitting so quickly. We realized we introduced a serious
bug in the last release and a quick fix is essential.

## R CMD check results

0 errors | 0 warnings | 0 notes
Expand Down

0 comments on commit 00c3509

Please sign in to comment.