Skip to content

Commit ccc98f4

Browse files
authored
Merge pull request #36 from insilentio/devel
Increment version number to 1.6.3
2 parents 63c8f44 + f079992 commit ccc98f4

3 files changed

Lines changed: 6 additions & 1 deletion

File tree

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Package: exifer
22
Type: Package
33
Title: Photo Metadata Improver
4-
Version: 1.6.2
4+
Version: 1.6.3
55
Authors@R: c(
66
person(
77
"Daniel", "Baumgartner",

NEWS.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
# exifer 1.6.3
2+
- bugfix issue with `EXIF:CreateDate`
3+
14
# exifer 1.6.2
25
- bugfix issue with `EXIF:OffsetTimeDigitized`
36

R/exiftool_time.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,8 @@ harmonize_time <- function(paths,
3434
times <- times |> tibble::add_column("IPTC:TimeCreated" = NA)
3535
if (!any(grepl("IPTC:DateCreated", colnames(times))))
3636
times <- times |> tibble::add_column("IPTC:DateCreated" = NA)
37+
if (!any(grepl("EXIF:CreateDate", colnames(times))))
38+
times <- times |> dplyr::mutate(`EXIF:CreateDate` = `EXIF:DateTimeOriginal`)
3739

3840
times <- times |>
3941
dplyr::mutate(`EXIF:DateTimeOriginal` = `EXIF:CreateDate`) |>

0 commit comments

Comments
 (0)