Skip to content

Commit 4ffb69a

Browse files
committed
update news, add co-authors, update metadata
1 parent c64800c commit 4ffb69a

File tree

7 files changed

+36
-5
lines changed

7 files changed

+36
-5
lines changed

CITATION.cff

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,10 @@ authors:
3535
given-names: Egor
3636
3737
orcid: https://orcid.org/0000-0001-6690-5345
38+
- family-names: Chan
39+
given-names: Chung-hong
40+
41+
orcid: https://orcid.org/0000-0002-6232-7530
3842
preferred-citation:
3943
type: manual
4044
title: 'rJavaEnv: Java Environments for R Projects'

DESCRIPTION

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ Version: 0.2.2.9000
44
Authors@R: c(
55
person("Egor", "Kotov", , "[email protected]", role = c("aut", "cre", "cph"),
66
comment = c(ORCID = "0000-0001-6690-5345")),
7+
person("Chung-hong", "Chan", , "[email protected]", role = "aut",
8+
comment = c(ORCID = "0000-0002-6232-7530")),
79
person("Mauricio", "Vargas", , "[email protected]", role = "ctb",
810
comment = c(ORCID = "0000-0003-1017-7574")),
911
person("Hadley", "Wickham", , "[email protected]", role = "ctb",

NEWS.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44

55
- `Java` version (currently still only for `Amazon Corretto`) is now determined dynamically using the official GitHub `json` with releases, so when new `Java` version becomes available, you will not be depenent on `rJavaEnv` to be updated. As a fallback, versions up to 24 are hardcoded.
66
- `force` argument in `java_download()`. When set to `TRUE`, allows to overwrite the distribution file if it already exist in the cache.
7+
- new function `java_valid_versions()` allows to retrieve a list of all available `Java` versions for the current automatically detected OS and CPU architecture, or user-specified platform and architecture.
78

89
## Improvements
910

README.qmd

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,10 @@ The package has several core functions:
167167
9. `java_clear()`
168168
* Removes all or some `Java` versions linked in the current project (or cached distributions or installations).
169169

170-
10. `use_java()`
170+
10 `java_valid_versions()`
171+
* Lists all valid major `Java` versions that can be downloaded and installed for either current automatically detected OS and CPU architecture or user-specified platform and architecture.
172+
173+
11. `use_java()`
171174
* Same as `java_quick_install()`, but in a less intrusive way. Does not copy or link the `Java` installation folder from cache into the project directory and does not create or edit your `.Rprofile` file. Only sets requested java in the current R session.
172175

173176
See more details on all the functions in the [Reference](https://www.ekotov.pro/rJavaEnv/reference/index.html){target="_blank"}.

codemeta.json

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,13 @@
2828
"familyName": "Kotov",
2929
"email": "[email protected]",
3030
"@id": "https://orcid.org/0000-0001-6690-5345"
31+
},
32+
{
33+
"@type": "Person",
34+
"givenName": "Chung-hong",
35+
"familyName": "Chan",
36+
"email": "[email protected]",
37+
"@id": "https://orcid.org/0000-0002-6232-7530"
3138
}
3239
],
3340
"contributor": [
@@ -178,7 +185,7 @@
178185
},
179186
"SystemRequirements": null
180187
},
181-
"fileSize": "351771.806KB",
188+
"fileSize": "351785.837KB",
182189
"citation": [
183190
{
184191
"@type": "SoftwareSourceCode",

inst/schemaorg.json

Lines changed: 12 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,18 @@
33
"@graph": [
44
{
55
"type": "SoftwareSourceCode",
6-
"author": {
7-
"id": "https://orcid.org/0000-0001-6690-5345"
8-
},
6+
"author": [
7+
{
8+
"id": "https://orcid.org/0000-0002-6232-7530",
9+
"type": "Person",
10+
"email": "[email protected]",
11+
"familyName": "Chan",
12+
"givenName": "Chung-hong"
13+
},
14+
{
15+
"id": "https://orcid.org/0000-0001-6690-5345"
16+
}
17+
],
918
"codeRepository": "https://github.com/e-kotov/rJavaEnv",
1019
"contributor": [
1120
{

man/rJavaEnv-package.Rd

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)