Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ vignettes/
inst/user2025
#inst/tinytest/
Makefile
^.devcontainer
24 changes: 24 additions & 0 deletions .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"name": "tinyplot devcontainer",
"image": "rocker/r2u:24.04",

"containerEnv": {
"NOT_CRAN": "true"
},

"postCreateCommand": "R -e \"install.packages(c('devtools', 'tinytest', 'tinysnapshot'))\" && R -e \"install.packages('httpgd', repos = c('https://community.r-multiverse.org', 'https://cloud.r-project.org'))\" && Rscript -e 'read.dcf(\"DESCRIPTION\", c(\"Imports\", \"Suggests\")) |> tools:::.split_dependencies() |> names() |> setdiff(tools:::.get_standard_package_names()$base) |> install.packages()'",

"customizations": {
"vscode": {
"extensions": [
"REditorSupport.r",
"quarto.quarto"
],
"settings": {
"r.plot.useHttpgd": true
}
}
},

"remoteUser": "root"
}
3 changes: 2 additions & 1 deletion NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ where the formatting is also better._

- Added support for "bubble" scatter plots, allowing for point size scaling via
an appropriate `cex` argument (e.g., a continuous variable from your dataset).
The updated `?type_point` helpfile contains several examples. Simultaneously
The updated `?type_points` helpfile contains several examples. Simultaneously
enables dual-legend support for combined size + color mappings.
(#433 @grantmcdermott)
- Improved horizontal legend spacing, as well as multicolumn legend support. A
Expand Down Expand Up @@ -49,6 +49,7 @@ where the formatting is also better._
- Move `altdoc` from `Suggests` to `Config/Needs/website`.
Thanks to @etiennebacher for the suggestion and to @eddelbuettel for help
with the CI implementation.
- Add a `devcontainer.json` file for remote testing. (#480 @grantmcdermott)

## 0.4.2

Expand Down