diff --git a/DESCRIPTION b/DESCRIPTION index dbe3d68..8b05267 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,6 +1,6 @@ Package: LightLogR Title: Work With Data from Wearable Light Loggers and Optical Radiation Dosimeters -Version: 0.2.1.9000 +Version: 0.2.2.9000 Authors@R: c( person("Johannes", "Zauner", email = "johannes.zauner@tum.de", role = c("aut", "cre"), diff --git a/NEWS.md b/NEWS.md index 4b212b1..d7821bf 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,3 +1,7 @@ +# LightLogR 0.2.2.9000 + +* Bugfix for `LiDo` import + * Added import support for new devices: `LiDo`, `DeLux`, and `Speccy` * Removed minor inconsistencies in naming conventions. Also, all imported columns will have syntactic naming now diff --git a/R/import_LL.R b/R/import_LL.R index cbfe71d..ed4374e 100644 --- a/R/import_LL.R +++ b/R/import_LL.R @@ -238,8 +238,9 @@ import_arguments <- list( #LiDo LiDo = rlang::expr({ tmp <- suppressMessages( - readr::read_csv2( + readr::read_delim( filename, + delim = ";", n_max = n_max, id = "file.name", locale = locale,