From 7d81b94c16623d11312aaf1b0c47fb580d01bc66 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Fri, 16 Jul 2021 19:45:19 -0700 Subject: [PATCH] Upgraded osxmetadata to add new extended attributes --- osxphotos/_constants.py | 7 +++++++ osxphotos/_version.py | 2 +- requirements.txt | 2 +- setup.py | 2 +- 4 files changed, 10 insertions(+), 3 deletions(-) diff --git a/osxphotos/_constants.py b/osxphotos/_constants.py index 91cb2125..a3d0d939 100644 --- a/osxphotos/_constants.py +++ b/osxphotos/_constants.py @@ -227,10 +227,17 @@ EXTENDED_ATTRIBUTE_NAMES = [ "authors", "comment", "copyright", + "creator", "description", "findercomment", "headline", "keywords", + "participants", + "projects", + "rating", + "subject", + "title", + "version", ] EXTENDED_ATTRIBUTE_NAMES_QUOTED = [f"'{x}'" for x in EXTENDED_ATTRIBUTE_NAMES] diff --git a/osxphotos/_version.py b/osxphotos/_version.py index edccfece..43718a29 100644 --- a/osxphotos/_version.py +++ b/osxphotos/_version.py @@ -1,3 +1,3 @@ """ version info """ -__version__ = "0.42.61" +__version__ = "0.42.62" diff --git a/requirements.txt b/requirements.txt index cbd53c33..106415cf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -15,7 +15,7 @@ dataclasses==0.7;python_version<'3.7' wurlitzer==2.1.0 photoscript==0.1.3 toml==0.10.2 -osxmetadata==0.99.14 +osxmetadata==0.99.25 textx==2.3.0 rich==10.2.2 bitmath==1.3.3.1 diff --git a/setup.py b/setup.py index 5c468bb8..4f11ed42 100755 --- a/setup.py +++ b/setup.py @@ -90,7 +90,7 @@ setup( "wurlitzer==2.1.0", "photoscript==0.1.3", "toml==0.10.2", - "osxmetadata==0.99.14", + "osxmetadata==0.99.25", "textx==2.3.0", "rich==10.2.2", "bitmath==1.3.3.1",