diff --git a/DESCRIPTION b/DESCRIPTION index 1de4e3f..623e567 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,8 +1,8 @@ Package: RLumBuild Type: Package Title: RLum Universe Package Building -Version: 0.1.7 -Date: 2024-02-12 +Version: 0.1.8.9000-8 +Date: 2024-08-20 Author: Sebastian Kreutzer [aut, cre] (), Christoph Burow [aut] () Authors@R: c( @@ -36,4 +36,4 @@ Imports: xtable (>= 1.8-4) Encoding: UTF-8 LazyData: true -RoxygenNote: 7.3.1 +RoxygenNote: 7.3.2 diff --git a/NAMESPACE b/NAMESPACE index b976549..10fe8c5 100644 --- a/NAMESPACE +++ b/NAMESPACE @@ -24,6 +24,7 @@ export(module_update_zenodoJSON) export(module_verify_ExampleTimings) export(module_write_BibTeX) export(module_write_FunctionList) +export(module_write_PDF_manual) export(module_write_codemetar) import(utils) importFrom(grDevices,dev.off) diff --git a/NEWS.Rmd b/NEWS.Rmd index f8d3804..3c1c76c 100644 --- a/NEWS.Rmd +++ b/NEWS.Rmd @@ -8,7 +8,5 @@ header-includes: # News for package 'RLumBuild' -## Changes in version `r RLumBuild::.get_pkg_version()` (`r Sys.Date()`) -* `module_add_HowToCite()`: remove argument defunct by `stringi` -* `module_add_HowToCite()`: exclude `-package` file from parsing -* `module_add_RLumTeam()`: exclude `-package` file from parsing \ No newline at end of file +* Fix `module_add_HowToCite()` +* Add `module_write_PDF_manual()` \ No newline at end of file diff --git a/NEWS.md b/NEWS.md index 930b193..e3ca709 100644 --- a/NEWS.md +++ b/NEWS.md @@ -7,8 +7,5 @@ # News for package ‘RLumBuild’ -## Changes in version 0.1.7 (2024-02-12) - -- `module_add_HowToCite()`: remove argument defunct by `stringi` -- `module_add_HowToCite()`: exclude `-package` file from parsing -- `module_add_RLumTeam()`: exclude `-package` file from parsing +- Fix `module_add_HowToCite()` +- Add `module_write_PDF_manual()` diff --git a/R/RLumBuild-package.R b/R/RLumBuild-package.R index 4692a60..0d1baad 100644 --- a/R/RLumBuild-package.R +++ b/R/RLumBuild-package.R @@ -26,6 +26,5 @@ #' @importFrom grDevices dev.off pdf #' @importFrom graphics abline barplot text plot #' -#' @docType package #' @md -NULL \ No newline at end of file +"_PACKAGE" \ No newline at end of file diff --git a/R/build_package.R b/R/build_package.R index a433d73..e42971c 100644 --- a/R/build_package.R +++ b/R/build_package.R @@ -154,9 +154,8 @@ build_package <- function( if(!"module_verify_ExampleTimings" %in% exclude) .run_module(text = "Verify example timings ...", f = module_verify_ExampleTimings()) - # # Build PDF manual ------------------------------------------------------------------------ - .run_module(text = "Build PDF manual ...", f = devtools::build_manual(pkg = ".", path = paste0(pkg_name,".BuildResults/"))) + .run_module(text = "Build PDF manual ...", f = module_write_PDF_manual()) ## Outro ------------------------------------------------------------------------------- cat("\n") diff --git a/R/module_add_HowToCite.R b/R/module_add_HowToCite.R index 548842d..8d29d62 100644 --- a/R/module_add_HowToCite.R +++ b/R/module_add_HowToCite.R @@ -83,7 +83,7 @@ module_add_HowToCite <- function(){ file.list.man <- list.files("man/", recursive = TRUE, include.dirs = FALSE, pattern = "\\.Rd") ## remove package Rd, this causes some problems - file.list.man <- file.list.man[grepl("-package", file.list.man, fixed = TRUE)] + file.list.man <- file.list.man[!grepl("-package", file.list.man, fixed = TRUE)] # build package citation pkg.authors <- character() @@ -224,7 +224,7 @@ module_add_HowToCite <- function(){ ##write BibTeX file bib_file <- paste0(DESC_PACKAGE,".BuildResults/", DESC_PACKAGE,"_",DESC_VERSION,"-fun_bibliography.bib") - ##check if exsits or not + ##check if exits or not if(!file.exists(bib_file)) write(x = character(), file = bib_file) diff --git a/R/module_write_PDF_manual.R b/R/module_write_PDF_manual.R new file mode 100644 index 0000000..f9aa279 --- /dev/null +++ b/R/module_write_PDF_manual.R @@ -0,0 +1,17 @@ +#' Create PDF Manual +#' +#' @description Build PDF Manual tar.gz is available +#' +#' @author Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany) +#' +#' @section Function version: 0.1.0 +#' +#' @seealso [devtools::build_manual] +#' +#' @export +module_write_PDF_manual <- function(){ + devtools::build_manual(pkg = ".", path = paste0(.get_pkg_name(),".BuildResults/")) + + return(TRUE) + +} diff --git a/RLumBuild.BuildResults/RLumBuild-Ex.timings.0.1.7.WARNING b/RLumBuild.BuildResults/RLumBuild-Ex.timings.0.1.8.9000-8.WARNING similarity index 100% rename from RLumBuild.BuildResults/RLumBuild-Ex.timings.0.1.7.WARNING rename to RLumBuild.BuildResults/RLumBuild-Ex.timings.0.1.8.9000-8.WARNING diff --git a/RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.7.pdf b/RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.8.9000-8.pdf similarity index 98% rename from RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.7.pdf rename to RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.8.9000-8.pdf index d8d6fd7..31a005b 100644 Binary files a/RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.7.pdf and b/RLumBuild.BuildResults/RLumBuild-TimingExamples.0.1.8.9000-8.pdf differ diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.csv b/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.csv deleted file mode 100644 index 0cbcf67..0000000 --- a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.csv +++ /dev/null @@ -1,35 +0,0 @@ -"Name","Title","Description","Version","m.Date","m.Time","Author","Citation" -"build_package","Check and Build Package","Central function to run the package build process.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"helpers","RLumBuild Helper Functions","Helper functions which are used internally to visualise the console output. Those functions are not in the overview, but are, however, documented",NA,NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_add_HowToCite","Add How to Cite Section","Adds a function tailored section 'How to Cite' to each manual page as long as author names and a section 'Function version' exists.",NA,NA,NA,"Christoph Burow (Germany), Sebastian Kreutzer, IRAMAT-CRP2A, UMR 5060, CNRS - Université Bordeaux Montaigne (Frange)
, RLum Developer Team",NA -"module_add_RLumTeam","Module: add RLum-Team and update version timestamp","If the package was supported by the RLumTeam (the standard) the RLum-Team is added as author to all functions.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_build_documentation","Module: Build Documentation","Create documentation using roxygen2","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_check_ReverseDependencies","Check Reverse Dependencies","Check the reverse dependencies of the package","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_compactVignette","Module: compact_Vignette","Try to further downsize the vignette, so far available","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_compile_Attributes","Module: Compile attributes","Compile C++ attributes if such code is part of the package","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_create_DependencyGraph","Create Dependency Graph","Create package dependency graph","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_knit_NEWS","Module: Knit NEWS","Create NEWS.md from NEWS.Rmd","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_knit_README","Module: Knit README","Create README.md from README.Rmd","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_set_VersionNumber","Module: set_VersionNumber","Automatically set version number in DESCRIPTION file if the pattern '.9000' is found.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_update_datalist","Update datalist","Updates the file `data/datalist` if available. The standard CRAN functionality only works for data > 1 MB. For whatever reason.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_update_zenodoJSON","Module: Update .zenodo.json file","Automatically update the .zenodo.json file","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_verify_ExampleTimings","Verify Example Timings","Check and display the timing results of the example checks to avoid too long example runs.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_write_BibTeX","Create Package BibTeX file","A BibTeX file to be used to cite the package is automatically created.","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_write_codemetar","Create Codemetar JSON-LD file","Add JSON-LD file file to make the package more tracable","0.1.0 -",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA -"module_write_FunctionList","Write Function Argument List","Create a spread-sheet table with all function arguments Create a HTML and markdown list of all major functions in the package","0.1.0 -",NA,NA,"Christoph Burow, Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)

Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team",NA diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.tex b/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.tex deleted file mode 100644 index 607bfd1..0000000 --- a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.tex +++ /dev/null @@ -1,44 +0,0 @@ -\begin{table}[ht] -\centering -\begin{tabular}{rllllllll} - \hline - & Name & Title & Description & Version & m.Date & m.Time & Author & Citation \\ - \hline -1 & build\_package & Check and Build Package & Central function to run the package build process. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 2 & helpers & RLumBuild Helper Functions & Helper functions which are used internally to visualise the console output. Those functions are not in the overview, but are, however, documented & & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 3 & module\_add\_HowToCite & Add How to Cite Section & Adds a function tailored section 'How to Cite' to each manual page as long as author names and a section 'Function version' exists. & & & & Christoph Burow (Germany), Sebastian Kreutzer, IRAMAT-CRP2A, UMR 5060, CNRS - Université Bordeaux Montaigne (Frange)$<$br /$>$ , RLum Developer Team & \\ - 4 & module\_add\_RLumTeam & Module: add RLum-Team and update version timestamp & If the package was supported by the RLumTeam (the standard) the RLum-Team is added as author to all functions. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 5 & module\_build\_documentation & Module: Build Documentation & Create documentation using roxygen2 & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 6 & module\_check\_ReverseDependencies & Check Reverse Dependencies & Check the reverse dependencies of the package & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 7 & module\_compactVignette & Module: compact\_Vignette & Try to further downsize the vignette, so far available & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 8 & module\_compile\_Attributes & Module: Compile attributes & Compile C++ attributes if such code is part of the package & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 9 & module\_create\_DependencyGraph & Create Dependency Graph & Create package dependency graph & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 10 & module\_knit\_NEWS & Module: Knit NEWS & Create NEWS.md from NEWS.Rmd & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 11 & module\_knit\_README & Module: Knit README & Create README.md from README.Rmd & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 12 & module\_set\_VersionNumber & Module: set\_VersionNumber & Automatically set version number in DESCRIPTION file if the pattern '.9000' is found. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 13 & module\_update\_datalist & Update datalist & Updates the file `data/datalist` if available. The standard CRAN functionality only works for data $>$ 1 MB. For whatever reason. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 14 & module\_update\_zenodoJSON & Module: Update .zenodo.json file & Automatically update the .zenodo.json file & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 15 & module\_verify\_ExampleTimings & Verify Example Timings & Check and display the timing results of the example checks to avoid too long example runs. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 16 & module\_write\_BibTeX & Create Package BibTeX file & A BibTeX file to be used to cite the package is automatically created. & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 17 & module\_write\_codemetar & Create Codemetar JSON-LD file & Add JSON-LD file file to make the package more tracable & 0.1.0 - & & & Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - 18 & module\_write\_FunctionList & Write Function Argument List & Create a spread-sheet table with all function arguments Create a HTML and markdown list of all major functions in the package & 0.1.0 - & & & Christoph Burow, Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ $<$br /$>$ Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)$<$br /$>$ , RLum Developer Team & \\ - \hline -\end{tabular} -\end{table} - diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.7.pdf b/RLumBuild.BuildResults/RLumBuild_0.1.7.pdf deleted file mode 100644 index 29a9a69..0000000 Binary files a/RLumBuild.BuildResults/RLumBuild_0.1.7.pdf and /dev/null differ diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.7.tar.gz b/RLumBuild.BuildResults/RLumBuild_0.1.7.tar.gz deleted file mode 100644 index 4dec27e..0000000 Binary files a/RLumBuild.BuildResults/RLumBuild_0.1.7.tar.gz and /dev/null differ diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.csv b/RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.csv new file mode 100644 index 0000000..2c8042f --- /dev/null +++ b/RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.csv @@ -0,0 +1,56 @@ +"Name","Title","Description","Version","m.Date","m.Time","Author","Citation" +"build_package","Check and Build Package","Central function to run the package build process.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. build_package(): Check and Build Package. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"helpers","RLumBuild Helper Functions","Helper functions which are used internally to visualise the console output. Those functions are not in the overview, but are, however, documented",NA,NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. helpers(): RLumBuild Helper Functions. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_add_HowToCite","Add How to Cite Section","Adds a function tailored section 'How to Cite' to each manual page as long as author names and a section 'Function version' exists.",NA,NA,NA,"Christoph Burow (Germany), Sebastian Kreutzer, IRAMAT-CRP2A, UMR 5060, CNRS - Université Bordeaux Montaigne (Frange)
, RLum Developer Team","Burow, C., Kreutzer, S., 2024. module_add_HowToCite(): Add How to Cite Section. Function version 0.3.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_add_RLumTeam","Module: add RLum-Team and update version timestamp","If the package was supported by the RLumTeam (the standard) the RLum-Team is added as author to all functions.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_add_RLumTeam(): Module: add RLum-Team and update version timestamp. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_build_documentation","Module: Build Documentation","Create documentation using roxygen2","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_build_documentation(): Module: Build Documentation. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_check_ReverseDependencies","Check Reverse Dependencies","Check the reverse dependencies of the package","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_check_ReverseDependencies(): Check Reverse Dependencies. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_compactVignette","Module: compact_Vignette","Try to further downsize the vignette, so far available","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_compactVignette(): Module: compact_Vignette. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_compile_Attributes","Module: Compile attributes","Compile C++ attributes if such code is part of the package","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_compile_Attributes(): Module: Compile attributes. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_create_DependencyGraph","Create Dependency Graph","Create package dependency graph","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_create_DependencyGraph(): Create Dependency Graph. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_knit_NEWS","Module: Knit NEWS","Create NEWS.md from NEWS.Rmd","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_knit_NEWS(): Module: Knit NEWS. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_knit_README","Module: Knit README","Create README.md from README.Rmd","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_knit_README(): Module: Knit README. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_set_VersionNumber","Module: set_VersionNumber","Automatically set version number in DESCRIPTION file if the pattern '.9000' is found.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_set_VersionNumber(): Module: set_VersionNumber. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_update_datalist","Update datalist","Updates the file `data/datalist` if available. The standard CRAN functionality only works for data > 1 MB. For whatever reason.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_update_datalist(): Update datalist. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_update_zenodoJSON","Module: Update .zenodo.json file","Automatically update the .zenodo.json file","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_update_zenodoJSON(): Module: Update .zenodo.json file. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_verify_ExampleTimings","Verify Example Timings","Check and display the timing results of the example checks to avoid too long example runs.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_verify_ExampleTimings(): Verify Example Timings. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_write_BibTeX","Create Package BibTeX file","A BibTeX file to be used to cite the package is automatically created.","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_write_BibTeX(): Create Package BibTeX file. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_write_codemetar","Create Codemetar JSON-LD file","Add JSON-LD file file to make the package more tracable","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_write_codemetar(): Create Codemetar JSON-LD file. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_write_FunctionList","Write Function Argument List","Create a spread-sheet table with all function arguments Create a HTML and markdown list of all major functions in the package","0.1.0 +",NA,NA,"Christoph Burow, Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)

Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Burow, C., Kreutzer, S., 2024. module_write_FunctionList(): Write Function Argument List. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" +"module_write_PDF_manual","Create PDF Manual","Build PDF Manual tar.gz is available","0.1.0 +",NA,NA,"Sebastian Kreutzer, Institute of Geography, Heidelberg University (Germany)
, RLum Developer Team","Kreutzer, S., 2024. module_write_PDF_manual(): Create PDF Manual. Function version 0.1.0. In: Kreutzer, S., Burow, C., 2024. RLumBuild: RLum Universe Package Building. R package version 0.1.8.9000-8. https://github.com/R-Lum/RLumBuild +" diff --git a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.html b/RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.html similarity index 64% rename from RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.html rename to RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.html index 065195b..02f357f 100644 --- a/RLumBuild.BuildResults/RLumBuild_0.1.7-Functions.html +++ b/RLumBuild.BuildResults/RLumBuild_0.1.8.9000-8-Functions.html @@ -1,6 +1,6 @@

Major functions in the R package 'Luminescence'

-

[version: 0.1.7 ]

+

[version: 0.1.8.9000-8 ]