chore: bump MPVKit to 1.0.19

Picks up two vo_avfoundation fixes: keep the displayed frame across
seek resets, and refuse Core Image geometry rendering for Dolby
Vision passthrough frames (defense in depth - the app already keeps
mpv video-zoom at 0 on iOS/tvOS and zooms the display layer instead).
This commit is contained in:
edde746
2026-08-10 14:50:05 +02:00
parent a0269c6feb
commit 3177290083
11 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -798,7 +798,7 @@
repositoryURL = "https://github.com/edde746/MPVKit"; repositoryURL = "https://github.com/edde746/MPVKit";
requirement = { requirement = {
kind = exactVersion; kind = exactVersion;
version = 1.0.17; version = 1.0.19;
}; };
}; };
/* End XCRemoteSwiftPackageReference section */ /* End XCRemoteSwiftPackageReference section */
@@ -32,8 +32,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
}, },
{ {
@@ -32,8 +32,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
}, },
{ {
+1 -1
View File
@@ -895,7 +895,7 @@
repositoryURL = "https://github.com/edde746/MPVKit"; repositoryURL = "https://github.com/edde746/MPVKit";
requirement = { requirement = {
kind = exactVersion; kind = exactVersion;
version = 1.0.17; version = 1.0.19;
}; };
}; };
/* End XCRemoteSwiftPackageReference section */ /* End XCRemoteSwiftPackageReference section */
@@ -5,8 +5,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
}, },
{ {
@@ -5,8 +5,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
}, },
{ {
+1 -1
View File
@@ -1161,7 +1161,7 @@
repositoryURL = "https://github.com/edde746/MPVKit"; repositoryURL = "https://github.com/edde746/MPVKit";
requirement = { requirement = {
kind = exactVersion; kind = exactVersion;
version = 1.0.17; version = 1.0.19;
}; };
}; };
/* End XCRemoteSwiftPackageReference section */ /* End XCRemoteSwiftPackageReference section */
@@ -6,8 +6,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
} }
], ],
@@ -6,8 +6,8 @@
"kind" : "remoteSourceControl", "kind" : "remoteSourceControl",
"location" : "https://github.com/edde746/MPVKit", "location" : "https://github.com/edde746/MPVKit",
"state" : { "state" : {
"revision" : "8627bae097f45b705ac3cbc8972df115018f2090", "revision" : "da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc",
"version" : "1.0.17" "version" : "1.0.19"
} }
} }
], ],
+2 -2
View File
@@ -24,8 +24,8 @@ class WireMpvTest < Minitest::Test
].freeze ].freeze
MPVKIT_PIN = { MPVKIT_PIN = {
'location' => 'https://github.com/edde746/MPVKit', 'location' => 'https://github.com/edde746/MPVKit',
'revision' => '8627bae097f45b705ac3cbc8972df115018f2090', 'revision' => 'da36b149f4fe86ceadd27e1bac76c9ce8ef7a2cc',
'version' => '1.0.17', 'version' => '1.0.19',
}.freeze }.freeze
def setup def setup
+1 -1
View File
@@ -49,7 +49,7 @@ end
# Swift Package: MPVKit. Restore each graph edge independently so a project # Swift Package: MPVKit. Restore each graph edge independently so a project
# with a surviving package reference cannot silently omit the Runner linkage. # with a surviving package reference cannot silently omit the Runner linkage.
pkg_url = 'https://github.com/edde746/MPVKit' pkg_url = 'https://github.com/edde746/MPVKit'
pkg_version = '1.0.17' pkg_version = '1.0.19'
pkg = project.root_object.package_references.find do |candidate| pkg = project.root_object.package_references.find do |candidate|
candidate.repositoryURL == pkg_url rescue false candidate.repositoryURL == pkg_url rescue false
end end