Skip to content

Commit

Permalink
Merge pull request #59 from EcologyR/1st_submission_rev
Browse files Browse the repository at this point in the history
1st submission rev
  • Loading branch information
iramosgutierrez committed Jan 16, 2024
2 parents 48fb1b1 + 9ac6996 commit 0ba480c
Show file tree
Hide file tree
Showing 5 changed files with 21 additions and 3 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: labeleR
Title: Automate the Production of Custom Labels, Badges, Certificates, and Other Documents
Version: 0.1.0
Version: 0.1.1
Authors@R:
c(
person("Ignacio", "Ramos-Gutierrez",, "ig.ramosgutierrez@gmail.com", role = c("aut", "cre", "cph"),
Expand All @@ -11,7 +11,7 @@ Authors@R:
comment = c(ORCID = "0000-0002-7981-1599")),
person("Giorgio", "Comai", role = "ctb")
)
Description: Functions to create custom labels, badges, certificates
Description: Create custom labels, badges, certificates
and other documents. Automate the production of potentially large
numbers of accreditation badges, attendance and participation certificates,
herbarium and collection labels, etc. Documents are generated in PDF format,
Expand Down
6 changes: 6 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
# labeleR 0.1.1

* Functions names renamed
* Keep user parameters unchanged
* Description ammended

# labeleR 0.1.0

* First release
3 changes: 3 additions & 0 deletions R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,9 @@ use_image <- function(image = NULL, name = NULL, folder = NULL) {

## If logos not provided
if (is.null(image)) { # create blank image
oldpar <- graphics::par(no.readonly = TRUE)
on.exit(suppressWarnings(graphics::par(oldpar)))

grDevices::png(file.path(folder, paste0(name, ".png")), 150, 150, "px")
graphics::par(bg="transparent")
graphics::plot.new()
Expand Down
8 changes: 8 additions & 0 deletions cran-comments.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,11 @@
## Comments for labeleR 0.1.1 submission

* We have ammended the description section within the description file.
* We do not include references in the description file.
* User parameters are restored after changing in zzz.R
* We do not include any vignettes in labeleR, so we do not have to choose a title.


## R CMD check results

0 errors | 0 warnings | 1 note
Expand Down
3 changes: 2 additions & 1 deletion man/labeleR-package.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 0ba480c

Please sign in to comment.