From 760386e3d76f4a617efbbd903d9d29df6a8bbd30 Mon Sep 17 00:00:00 2001 From: Rhet Turnbull Date: Sun, 7 Nov 2021 21:21:50 -0800 Subject: [PATCH] Updated tested versions --- osxphotos/_constants.py | 6 +++++- osxphotos/_version.py | 2 +- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/osxphotos/_constants.py b/osxphotos/_constants.py index 8367e80d..d3d8db4a 100644 --- a/osxphotos/_constants.py +++ b/osxphotos/_constants.py @@ -95,6 +95,7 @@ _TESTED_OS_VERSIONS = [ ("11", "3"), ("11", "4"), ("11", "5"), + ("11", "6"), ] # Photos 5 has persons who are empty string if unidentified face @@ -276,12 +277,15 @@ POST_COMMAND_CATEGORIES = { # "deleted_directories": "When used with '--cleanup', all directories deleted during the export", } + class AlbumSortOrder(Enum): """Album Sort Order""" + UNKNOWN = 0 MANUAL = 1 NEWEST_FIRST = 2 OLDEST_FIRST = 3 TITLE = 5 -TEXT_DETECTION_CONFIDENCE_THRESHOLD = 0.75 \ No newline at end of file + +TEXT_DETECTION_CONFIDENCE_THRESHOLD = 0.75 diff --git a/osxphotos/_version.py b/osxphotos/_version.py index 1bc42dc9..5608dbbb 100644 --- a/osxphotos/_version.py +++ b/osxphotos/_version.py @@ -1,3 +1,3 @@ """ version info """ -__version__ = "0.43.2" +__version__ = "0.43.3"