-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
5 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Package: gridpattern | ||
Type: Package | ||
Title: 'grid' Pattern Grobs | ||
Version: 0.5.4-4 | ||
Version: 1.0.0 | ||
Authors@R: c(person("Mike", "FC", role = "aut", comment = "Code/docs adapted from ggpattern"), | ||
person("Trevor L", "Davis", role=c("aut", "cre"), email="[email protected]", | ||
comment = c(ORCID = "0000-0001-6341-4639")), | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,11 @@ | ||
## Test environments | ||
|
||
* win-builder (windows, R devel) | ||
* local (linux, R 4.1.3) | ||
* local (linux, R devel) | ||
* github actions (windows, R release) | ||
* github actions (osx, R release) | ||
* local (linux, R 4.2.1) | ||
* github actions (linux, R oldrel) | ||
* github actions (linux, R release) | ||
* github actions (linux, R devel) | ||
|
||
## R CMD check --as-cran results | ||
|
||
1 NOTE on 'oldrel': | ||
|
||
``` | ||
create_gradient_as_geometry: no visible global function definition for | ||
‘linearGradient’ | ||
create_gradient_as_geometry: no visible global function definition for | ||
‘radialGradient’ | ||
Undefined global functions or variables: | ||
linearGradient radialGradient | ||
``` | ||
|
||
The `linearGradient()` and `radialGradient()` functions are only available | ||
in the `{grid}` package bundled with R 4.1 and later. | ||
This package checks the R version and if the R version is too old to support | ||
these new functions it falls back to an alternative. | ||
Hence this package should not depend on R (>= 4.1). | ||
OK |