Updated tested versions

This commit is contained in:
Rhet Turnbull 2021-11-07 21:21:50 -08:00
parent 51ba54971a
commit 760386e3d7
2 changed files with 6 additions and 2 deletions

View File

@ -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
TEXT_DETECTION_CONFIDENCE_THRESHOLD = 0.75

View File

@ -1,3 +1,3 @@
""" version info """
__version__ = "0.43.2"
__version__ = "0.43.3"