mirror of
https://github.com/rive-app/rive-ios.git
synced 2026-01-18 17:11:28 +01:00
Since fp32 has finite precision, a segment may reasonably become degenerate with length 0, and we need to be robust enough to handle this. Asserting that the distance is non-negative is still a good test. Fixes #7210. Diffs= 806ae1fae Fix an assert in contour_measure.cpp (#7232) 7d03c3faf Add strokes, gradients, and blend modes to path_fuzz (#7230) 4342a3f04 Wasm fallback and min safari version (#7214) 4c23759b6 Add privacy manifest for Apple platforms (#7194) Co-authored-by: Philip Chung <philterdesign@gmail.com> diff=\n\ndiff --cc RiveRuntime.podspec index 4f684ca,d485ee4..0000000 --- a/RiveRuntime.podspec +++ b/RiveRuntime.podspec @@@ -27,12 -27,12 +27,16 @@@ Pod::Spec.new do |spec LICENSE } spec.authors = { "Luigi Rosso" => "luigi@rive.app" } - spec.platform = :ios, '14.0' spec.ios.deployment_target = '14.0' + spec.osx.deployment_target = '13.1' spec.swift_version = '5.0' spec.source = { - :http => "https://github.com/rive-app/rive-ios/releases/download/3.0.1/RiveRuntime.xcframework.zip", + :http => "https://github.com/rive-app/rive-ios/releases/download/5.11.2/RiveRuntime.xcframework.zip", } spec.ios.vendored_frameworks = 'RiveRuntime.xcframework' ++<<<<<<< ours + spec.osx.vendored_frameworks = 'RiveRuntime.xcframework' ++======= + spec.resource_bundles = {'runtime_ios_privacy' => ['Resources/PrivacyInfo.xcprivacy']} ++>>>>>>> theirs end
39 lines
2.1 KiB
Ruby
39 lines
2.1 KiB
Ruby
Pod::Spec.new do |spec|
|
|
spec.name = "RiveRuntime"
|
|
spec.version = "3.0.1"
|
|
spec.summary = "iOS SDK to render Rive animations"
|
|
spec.description = "Rive is a real-time interactive design and animation tool. Use our collaborative editor to create motion graphics that respond to different states and user inputs. Then load your animations into apps, games, and websites with our lightweight open-source runtimes."
|
|
spec.homepage = "https://github.com/rive-app/rive-ios"
|
|
spec.license = { :type => "MIT", :text => <<-LICENSE
|
|
Copyright (c) 2020-2022 Rive
|
|
|
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
of this software and associated documentation files (the "Software"), to deal
|
|
in the Software without restriction, including without limitation the rights
|
|
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
copies of the Software, and to permit persons to whom the Software is
|
|
furnished to do so, subject to the following conditions:
|
|
|
|
The above copyright notice and this permission notice shall be included in all
|
|
copies or substantial portions of the Software.
|
|
|
|
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
SOFTWARE.
|
|
LICENSE
|
|
}
|
|
spec.authors = { "Luigi Rosso" => "luigi@rive.app" }
|
|
spec.platform = :ios, '14.0'
|
|
spec.ios.deployment_target = '14.0'
|
|
spec.swift_version = '5.0'
|
|
spec.source = {
|
|
:http => "https://github.com/rive-app/rive-ios/releases/download/3.0.1/RiveRuntime.xcframework.zip",
|
|
}
|
|
spec.ios.vendored_frameworks = 'RiveRuntime.xcframework'
|
|
spec.resource_bundles = {'runtime_ios_privacy' => ['Resources/PrivacyInfo.xcprivacy']}
|
|
end
|