Skip to content

Commit a4572d2

Browse files
committed
Merge from timewarp_merge
2 parents 9e13ab4 + 5914cc7 commit a4572d2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+984
-441
lines changed

.all-contributorsrc

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -819,6 +819,53 @@
819819
"contributions": [
820820
"data"
821821
]
822+
},
823+
{
824+
"login": "danVnest",
825+
"name": "Daniel Vogelnest",
826+
"avatar_url": "https://avatars.githubusercontent.com/u/4771860?v=4",
827+
"profile": "http://daniel-vogelnest.tk",
828+
"contributions": [
829+
"bug",
830+
"data"
831+
]
832+
},
833+
{
834+
"login": "alban73",
835+
"name": "alban73",
836+
"avatar_url": "https://avatars.githubusercontent.com/u/74853805?v=4",
837+
"profile": "https://github.com/alban73",
838+
"contributions": [
839+
"bug",
840+
"data"
841+
]
842+
},
843+
{
844+
"login": "justaLoli",
845+
"name": "justaLoli",
846+
"avatar_url": "https://avatars.githubusercontent.com/u/92238102?v=4",
847+
"profile": "https://github.com/justaLoli",
848+
"contributions": [
849+
"ideas"
850+
]
851+
},
852+
{
853+
"login": "arthurward",
854+
"name": "arthurward",
855+
"avatar_url": "https://avatars.githubusercontent.com/u/8432358?v=4",
856+
"profile": "https://github.com/arthurward",
857+
"contributions": [
858+
"bug"
859+
]
860+
},
861+
{
862+
"login": "svet-b",
863+
"name": "svet-b",
864+
"avatar_url": "https://avatars.githubusercontent.com/u/12831860?v=4",
865+
"profile": "https://github.com/svet-b",
866+
"contributions": [
867+
"bug"
868+
]
822869
}
823870
],
824871
"contributorsPerLine": 7,

.bumpversion.cfg

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[bumpversion]
2-
current_version = 0.68.4
2+
current_version = 0.68.6
33
parse = (?P<major>\d+)\.(?P<minor>\d+)\.(?P<patch>\d+)
44
serialize = {major}.{minor}.{patch}
55

.github/workflows/tests.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,11 @@ jobs:
99
strategy:
1010
max-parallel: 4
1111
matrix:
12-
os: [macos-14, ubuntu-latest]
13-
# os: [macos-14]
12+
# remove ubuntu runner for now because pip is broken on ubuntu
13+
# with error pip._vendor.packaging.version.InvalidVersion: Invalid version: '6.5.0-1025-azure'
14+
# and I don't have time to try to fix this
15+
# os: [macos-14, ubuntu-latest]
16+
os: [macos-14]
1417
python-version: ['3.10', '3.11', '3.12']
1518
steps:
1619
- uses: actions/checkout@v4

API_README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2571,7 +2571,7 @@ cog.out("\n"+get_template_field_table()+"\n")
25712571
|{cr}|A carriage return: '\r'|
25722572
|{crlf}|A carriage return + line feed: '\r\n'|
25732573
|{tab}|:A tab: '\t'|
2574-
|{osxphotos_version}|The osxphotos version, e.g. '0.68.4'|
2574+
|{osxphotos_version}|The osxphotos version, e.g. '0.68.6'|
25752575
|{osxphotos_cmd_line}|The full command line used to run osxphotos|
25762576
|{album}|Album(s) photo is contained in|
25772577
|{folder_album}|Folder path + album photo is contained in. e.g. 'Folder/Subfolder/Album' or just 'Album' if no enclosing folder|

CHANGELOG.md

Lines changed: 69 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,75 @@
22

33
All notable changes to this project will be documented in this file.
44

5-
## [v0.68.3](se.mdhttps://github.com/RhetTbull/osxphotos/compare/v0.68.2...v0.68.3)
5+
## [v0.68.6](https://github.com/RhetTbull/osxphotos/compare/v0.68.5...v0.68.6)
6+
7+
Various bug fixes for macOS 15 Sequoia.
8+
9+
### v0.68.6 (2024-09-18)
10+
11+
#### Added
12+
13+
#### Changed
14+
15+
- Check for AAE files for video files on import (#1653, thanks to @oPromessa)
16+
17+
#### Removed
18+
19+
#### Fixed
20+
21+
- Fix for error running on macOS 10.15 (#1680)
22+
- Fix for `osxphotos import --auto-live` for some video files (#1670)
23+
- Fix for edited photos on macOS 15 Sequoia (#1687)
24+
25+
#### Contributors
26+
27+
- @RhetTbull [@RhetTbull](https://github.com/RhetTbull) for code.
28+
- @oPromessa [@oPromessa](https://github.com/oPromessa) for code.
29+
30+
## [v0.68.5](https://github.com/RhetTbull/osxphotos/compare/v0.68.4...v0.68.5)
31+
32+
Hot fix for unknown UTI type during export. Also incorporates changes to the `sync` command
33+
to allow syncing of location data.
34+
35+
#### Added
36+
37+
- Added support for syncing location data in `sync` command thanks to @oPromessa.
38+
39+
#### Changed
40+
41+
#### Removed
42+
43+
#### Fixed
44+
45+
- Fixed unknown UTI type during export (#1643).
46+
47+
#### Contributors
48+
49+
- @RhetTbull [@RhetTbull](https://github.com/RhetTbull) for code.
50+
- @oPromessa [@oPromessa](https://github.com/oPromessa) for code.
51+
52+
## [v0.68.4](https://github.com/RhetTbull/osxphotos/compare/v0.68.3...v0.68.4)
53+
54+
Hot fix for macOS 14.6 and 15.0/15.1. This release updates the Photos library database schema to support
55+
macOS 14.6 and 15.0/15.1. It also fixes an issue with the `sync` command when the photo could not be found.
56+
57+
#### Added
58+
59+
#### Changed
60+
61+
- Updated Photos library database schema for macOS 14.6 and 15.0/15.1.
62+
63+
#### Removed
64+
65+
#### Fixed
66+
67+
- Fixed error when using `sync` command and photo could not be found via AppleScript (#1623).
68+
69+
#### Contributors
70+
71+
- @RhetTbull [@RhetTbull](https://github.com/RhetTbull) for code.
72+
73+
## [v0.68.3](https://github.com/RhetTbull/osxphotos/compare/v0.68.2...v0.68.3)
674

775
This release fixes errors when running on macOS 14.6 and 15.0 beta due to Photos database schema changes.
876
It also adds support for Screen Recording media type and fixes bugs with the `sync` command and changes

0 commit comments

Comments
 (0)