Updated tested versions to 11.3
This commit is contained in:
@@ -54,7 +54,7 @@ Only works on macOS (aka Mac OS X). Tested on macOS Sierra (10.12.6) until macOS
|
|||||||
|
|
||||||
| macOS Version | macOS name | Photos.app version |
|
| macOS Version | macOS name | Photos.app version |
|
||||||
| ----------------- |------------|:-------------------|
|
| ----------------- |------------|:-------------------|
|
||||||
| 10.16, 11.0-11.2 | Big Sur | 6.0 ✅ |
|
| 10.16, 11.0-11.3 | Big Sur | 6.0 ✅ |
|
||||||
| 10.15.1 - 10.15.7 | Catalina | 5.0 ✅ |
|
| 10.15.1 - 10.15.7 | Catalina | 5.0 ✅ |
|
||||||
| 10.14.5, 10.14.6 | Mojave | 4.0 ✅ |
|
| 10.14.5, 10.14.6 | Mojave | 4.0 ✅ |
|
||||||
| 10.13.6 | High Sierra| 3.0 ✅ |
|
| 10.13.6 | High Sierra| 3.0 ✅ |
|
||||||
|
|||||||
@@ -70,6 +70,7 @@ _TESTED_OS_VERSIONS = [
|
|||||||
("11", "0"),
|
("11", "0"),
|
||||||
("11", "1"),
|
("11", "1"),
|
||||||
("11", "2"),
|
("11", "2"),
|
||||||
|
("11", "3"),
|
||||||
]
|
]
|
||||||
|
|
||||||
# Photos 5 has persons who are empty string if unidentified face
|
# Photos 5 has persons who are empty string if unidentified face
|
||||||
@@ -212,8 +213,13 @@ EXTENDED_ATTRIBUTE_NAMES_QUOTED = [f"'{x}'" for x in EXTENDED_ATTRIBUTE_NAMES]
|
|||||||
OSXPHOTOS_EXPORT_DB = ".osxphotos_export.db"
|
OSXPHOTOS_EXPORT_DB = ".osxphotos_export.db"
|
||||||
|
|
||||||
# bit flags for burst images ("burstPickType")
|
# bit flags for burst images ("burstPickType")
|
||||||
BURST_NOT_SELECTED = 0b10 # 2: burst image is not selected
|
BURST_NOT_SELECTED = 0b10 # 2: burst image is not selected
|
||||||
BURST_DEFAULT_PICK = 0b100 # 4: burst image is the one Photos picked to be key image before any selections made
|
BURST_DEFAULT_PICK = (
|
||||||
BURST_SELECTED = 0b1000 # 8: burst image is selected
|
0b100
|
||||||
BURST_KEY = 0b10000 # 16: burst image is the key photo (top of burst stack)
|
) # 4: burst image is the one Photos picked to be key image before any selections made
|
||||||
BURST_UNKNOWN = 0b100000 # 32: this is almost always set with BURST_DEFAULT_PICK and never if BURST_DEFAULT_PICK is not set. I think this has something to do with what algorithm Photos used to pick the default image
|
BURST_SELECTED = 0b1000 # 8: burst image is selected
|
||||||
|
BURST_KEY = 0b10000 # 16: burst image is the key photo (top of burst stack)
|
||||||
|
BURST_UNKNOWN = (
|
||||||
|
0b100000
|
||||||
|
) # 32: this is almost always set with BURST_DEFAULT_PICK and never if BURST_DEFAULT_PICK is not set. I think this has something to do with what algorithm Photos used to pick the default image
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user