-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
app crashed when exporting a trimmed video due to a failure in the regift dependency
- Loading branch information
Showing
29 changed files
with
144 additions
and
127 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
github "Clipy/KeyHolder" | ||
github "Clipy/Magnet" | ||
github "dehlen/Regift" ~> 1.5.1 | ||
github "dehlen/Regift" ~> 1.5.3 | ||
github "mxcl/PromiseKit" | ||
github "PromiseKit/Foundation" ~> 3.0 | ||
github "dehlen/AboutWindowController" ~> 1.5.7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
github "Clipy/KeyHolder" "v3.0.1" | ||
github "Clipy/Magnet" "v2.3.1" | ||
github "PromiseKit/Foundation" "3.3.1" | ||
github "PromiseKit/Foundation" "3.3.2" | ||
github "dehlen/AboutWindowController" "1.5.7" | ||
github "dehlen/Regift" "1.5.1" | ||
github "mxcl/PromiseKit" "6.8.3" | ||
github "dehlen/Regift" "1.5.3" | ||
github "mxcl/PromiseKit" "6.8.4" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
github "AliSoftware/OHHTTPStubs" "6.1.0" | ||
github "mxcl/PromiseKit" "6.5.0" | ||
github "AliSoftware/OHHTTPStubs" "6.2.0" | ||
github "mxcl/PromiseKit" "6.8.3" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
...heckouts/Foundation/PMKFoundation.xcodeproj/xcshareddata/xcschemes/PMKFoundation.xcscheme
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,7 @@ | ||
Pod::Spec.new do |s| | ||
s.name = "PromiseKit" | ||
|
||
`xcodebuild -project PromiseKit.xcodeproj -showBuildSettings` =~ /CURRENT_PROJECT_VERSION = ((\d\.)+\d)/ | ||
abort("No version detected") if $1.nil? | ||
s.version = $1 | ||
s.version = '0.0.1' | ||
|
||
s.source = { | ||
:git => "https://github.com/mxcl/#{s.name}.git", | ||
|
@@ -13,17 +11,15 @@ Pod::Spec.new do |s| | |
|
||
s.license = 'MIT' | ||
s.summary = 'Promises for Swift & ObjC.' | ||
s.homepage = 'http://promisekit.org' | ||
s.homepage = 'http://mxcl.dev/PromiseKit/' | ||
s.description = 'A thoughtful and complete implementation of promises for iOS, macOS, watchOS and tvOS with first-class support for both Objective-C and Swift.' | ||
s.social_media_url = 'https://twitter.com/mxcl' | ||
s.authors = { 'Max Howell' => '[email protected]' } | ||
s.documentation_url = 'http://promisekit.org/docs/' | ||
s.documentation_url = 'http://mxcl.dev/PromiseKit/reference/v6/Classes/Promise.html' | ||
s.default_subspecs = 'CorePromise', 'UIKit', 'Foundation' | ||
s.requires_arc = true | ||
|
||
# CocoaPods documentation (like usual) is unclear about the | ||
# consequences of setting this; we support 3.2 THROUGH 4.2 | ||
# s.swift_version = '4.0' | ||
s.swift_versions = ['3.1', '3.2', '3.3', '3.4', '4.0', '4.1', '4.2', '5.0'] | ||
|
||
# CocoaPods requires us to specify the root deployment targets | ||
# even though for us it is nonsense. Our root spec has no | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
module: PromiseKit | ||
custom_categories: | ||
- name: Core Components | ||
children: | ||
- Promise | ||
- Guarantee | ||
- Thenable | ||
- CatchMixin | ||
- Resolver | ||
xcodebuild_arguments: | ||
- UseModernBuildSystem=NO | ||
output: | ||
../output | ||
# output directory is relative to config file… ugh | ||
readme: | ||
Documentation/README.md | ||
theme: | ||
fullwidth |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,2 @@ | ||
merges: | ||
- action: delete_branch | ||
- action: tag |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.