From 6565aade5aa749c9bb7a6a48d1aa716a1af88037 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Wed, 14 Oct 2020 12:37:09 +0200 Subject: [PATCH 01/12] Add Package.swift --- Package.swift | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 Package.swift diff --git a/Package.swift b/Package.swift new file mode 100644 index 0000000..cc9f1d8 --- /dev/null +++ b/Package.swift @@ -0,0 +1,31 @@ +// swift-tools-version:5.3 + +import PackageDescription + +let package = Package( + name: "M13ProgressSuite", + platforms: [ + .iOS(.v9) + ], + products: [ + .library( + name: "M13ProgressSuite", + targets: ["M13ProgressSuite"]) + ], + dependencies: [ + ], + targets: [ + .target( + name: "M13ProgressSuite", + path: "Classes", + publicHeadersPath: "", + cSettings: [ + .headerSearchPath("Application"), + .headerSearchPath("Console"), + .headerSearchPath("HUD"), + .headerSearchPath("NavigationController"), + .headerSearchPath("ProgressViews"), + ] + ), + ] +) From 8db23a08a1599846628068e030d181e769b19bc2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Wed, 14 Oct 2020 14:49:40 +0200 Subject: [PATCH 02/12] Fix imports --- .../UIApplication+M13ProgressSuite.h | 1 + Classes/Console/M13ProgressConsole.h | 1 + Classes/HUD/M13ProgressHUD.h | 1 + ...INavigationController+M13ProgressViewBar.h | 1 + Classes/ProgressViews/M13ProgressView.h | 1 + Classes/ProgressViews/M13ProgressViewBar.h | 2 + .../M13ProgressViewBorderedBar.h | 2 + .../M13ProgressViewFilteredImage.h | 2 + Classes/ProgressViews/M13ProgressViewImage.h | 2 + .../M13ProgressViewLetterpress.h | 2 + Classes/ProgressViews/M13ProgressViewMetro.h | 2 + .../M13ProgressViewMetroDotPolygon.h | 1 + Classes/ProgressViews/M13ProgressViewPie.h | 2 + .../ProgressViews/M13ProgressViewRadiative.h | 2 + Classes/ProgressViews/M13ProgressViewRing.h | 2 + .../M13ProgressViewSegmentedBar.h | 2 + .../ProgressViews/M13ProgressViewStripedBar.h | 2 + M13ProgressSuite.xcodeproj/project.pbxproj | 185 +++++++++++++++++- .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../M13ProgressSuiteDemo-SPM.xcscheme | 78 ++++++++ .../xcshareddata/IDEWorkspaceChecks.plist | 8 + .../SegmentedRingViewController.m | 1 + Package.swift | 1 - 23 files changed, 303 insertions(+), 6 deletions(-) create mode 100644 M13ProgressSuite.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist create mode 100644 M13ProgressSuite.xcodeproj/xcshareddata/xcschemes/M13ProgressSuiteDemo-SPM.xcscheme create mode 100644 M13ProgressSuite.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist diff --git a/Classes/Application/UIApplication+M13ProgressSuite.h b/Classes/Application/UIApplication+M13ProgressSuite.h index afe0e7b..c48e251 100644 --- a/Classes/Application/UIApplication+M13ProgressSuite.h +++ b/Classes/Application/UIApplication+M13ProgressSuite.h @@ -12,6 +12,7 @@ */ #import +#import /**A UIApplication category that deals with app extensions.*/ @interface UIApplication (M13ProgressSuite) diff --git a/Classes/Console/M13ProgressConsole.h b/Classes/Console/M13ProgressConsole.h index 2cb106b..1b808b1 100644 --- a/Classes/Console/M13ProgressConsole.h +++ b/Classes/Console/M13ProgressConsole.h @@ -12,6 +12,7 @@ */ #import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/HUD/M13ProgressHUD.h b/Classes/HUD/M13ProgressHUD.h index ecc6b03..dda2ad4 100644 --- a/Classes/HUD/M13ProgressHUD.h +++ b/Classes/HUD/M13ProgressHUD.h @@ -12,6 +12,7 @@ */ #import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/NavigationController/UINavigationController+M13ProgressViewBar.h b/Classes/NavigationController/UINavigationController+M13ProgressViewBar.h index feaf529..533aa93 100644 --- a/Classes/NavigationController/UINavigationController+M13ProgressViewBar.h +++ b/Classes/NavigationController/UINavigationController+M13ProgressViewBar.h @@ -12,6 +12,7 @@ */ #import +#import /**A UINavagationController category that adds a progress view to the UINavigationBar.*/ @interface UINavigationController (M13ProgressViewBar) diff --git a/Classes/ProgressViews/M13ProgressView.h b/Classes/ProgressViews/M13ProgressView.h index 732fc06..44aec7b 100644 --- a/Classes/ProgressViews/M13ProgressView.h +++ b/Classes/ProgressViews/M13ProgressView.h @@ -12,6 +12,7 @@ */ #import +#import typedef enum { /**Resets the action and returns the progress view to its normal state.*/ diff --git a/Classes/ProgressViews/M13ProgressViewBar.h b/Classes/ProgressViews/M13ProgressViewBar.h index 6bdb439..858f351 100644 --- a/Classes/ProgressViews/M13ProgressViewBar.h +++ b/Classes/ProgressViews/M13ProgressViewBar.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewBorderedBar.h b/Classes/ProgressViews/M13ProgressViewBorderedBar.h index 0f8a539..9f9da3d 100644 --- a/Classes/ProgressViews/M13ProgressViewBorderedBar.h +++ b/Classes/ProgressViews/M13ProgressViewBorderedBar.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewFilteredImage.h b/Classes/ProgressViews/M13ProgressViewFilteredImage.h index b3ef66f..1b9d120 100644 --- a/Classes/ProgressViews/M13ProgressViewFilteredImage.h +++ b/Classes/ProgressViews/M13ProgressViewFilteredImage.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" #import diff --git a/Classes/ProgressViews/M13ProgressViewImage.h b/Classes/ProgressViews/M13ProgressViewImage.h index c3d334a..068fea3 100644 --- a/Classes/ProgressViews/M13ProgressViewImage.h +++ b/Classes/ProgressViews/M13ProgressViewImage.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewLetterpress.h b/Classes/ProgressViews/M13ProgressViewLetterpress.h index d70aa3f..8b9b3cf 100644 --- a/Classes/ProgressViews/M13ProgressViewLetterpress.h +++ b/Classes/ProgressViews/M13ProgressViewLetterpress.h @@ -6,6 +6,8 @@ // Copyright (c) 2014 Brandon McQuilkin. All rights reserved. // +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewMetro.h b/Classes/ProgressViews/M13ProgressViewMetro.h index 88fae63..c4bf494 100644 --- a/Classes/ProgressViews/M13ProgressViewMetro.h +++ b/Classes/ProgressViews/M13ProgressViewMetro.h @@ -6,6 +6,8 @@ // Copyright (c) 2014 Brandon McQuilkin. All rights reserved. // +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h b/Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h index 4047143..60aae64 100644 --- a/Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h +++ b/Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h @@ -7,6 +7,7 @@ // #import +#import #import "M13ProgressViewMetro.h" /**A subclass of M13ProgressViewMetroDot.*/ diff --git a/Classes/ProgressViews/M13ProgressViewPie.h b/Classes/ProgressViews/M13ProgressViewPie.h index 9e9d7c2..0e46cc2 100644 --- a/Classes/ProgressViews/M13ProgressViewPie.h +++ b/Classes/ProgressViews/M13ProgressViewPie.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" /**A progress view that shows progress with a pie chart.*/ diff --git a/Classes/ProgressViews/M13ProgressViewRadiative.h b/Classes/ProgressViews/M13ProgressViewRadiative.h index 3b9d21d..4d3f384 100644 --- a/Classes/ProgressViews/M13ProgressViewRadiative.h +++ b/Classes/ProgressViews/M13ProgressViewRadiative.h @@ -6,6 +6,8 @@ // Copyright (c) 2014 Brandon McQuilkin. All rights reserved. // +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewRing.h b/Classes/ProgressViews/M13ProgressViewRing.h index 0b6d9ce..238bcf7 100755 --- a/Classes/ProgressViews/M13ProgressViewRing.h +++ b/Classes/ProgressViews/M13ProgressViewRing.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" /**A progress view stylized similarly to the iOS 7 App store progress view.*/ diff --git a/Classes/ProgressViews/M13ProgressViewSegmentedBar.h b/Classes/ProgressViews/M13ProgressViewSegmentedBar.h index 3240aae..ff75094 100644 --- a/Classes/ProgressViews/M13ProgressViewSegmentedBar.h +++ b/Classes/ProgressViews/M13ProgressViewSegmentedBar.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/Classes/ProgressViews/M13ProgressViewStripedBar.h b/Classes/ProgressViews/M13ProgressViewStripedBar.h index a2fe9da..9f7b084 100644 --- a/Classes/ProgressViews/M13ProgressViewStripedBar.h +++ b/Classes/ProgressViews/M13ProgressViewStripedBar.h @@ -11,6 +11,8 @@ 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. */ +#import +#import #import "M13ProgressView.h" typedef enum { diff --git a/M13ProgressSuite.xcodeproj/project.pbxproj b/M13ProgressSuite.xcodeproj/project.pbxproj index 83862fc..795a336 100644 --- a/M13ProgressSuite.xcodeproj/project.pbxproj +++ b/M13ProgressSuite.xcodeproj/project.pbxproj @@ -3,7 +3,7 @@ archiveVersion = 1; classes = { }; - objectVersion = 46; + objectVersion = 52; objects = { /* Begin PBXAggregateTarget section */ @@ -22,6 +22,38 @@ /* Begin PBXBuildFile section */ 62BB86011C87300F0019306A /* UIApplication+M13ProgressSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */; }; + 84390FBF253723C4000E2704 /* UIApplication+M13ProgressSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */; }; + 84390FC0253723C4000E2704 /* SampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB01B1889946F00BCAEF5 /* SampleViewController.m */; }; + 84390FC1253723C4000E2704 /* LetterpressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */; }; + 84390FC2253723C4000E2704 /* BarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0091889946F00BCAEF5 /* BarViewController.m */; }; + 84390FC3253723C4000E2704 /* M13ProgressViewBarNavigationControllerViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0131889946F00BCAEF5 /* M13ProgressViewBarNavigationControllerViewController.m */; }; + 84390FC4253723C4000E2704 /* RadiativeViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA412B0418D2638E00FCB7CC /* RadiativeViewController.m */; }; + 84390FC5253723C4000E2704 /* ProgressHUDViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0171889946F00BCAEF5 /* ProgressHUDViewController.m */; }; + 84390FC6253723C4000E2704 /* RingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0191889946F00BCAEF5 /* RingViewController.m */; }; + 84390FC7253723C4000E2704 /* SegmentedBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB01D1889946F00BCAEF5 /* SegmentedBarViewController.m */; }; + 84390FC8253723C4000E2704 /* MetroViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA66890518CBEF9300827C48 /* MetroViewController.m */; }; + 84390FC9253723C4000E2704 /* PieViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0151889946F00BCAEF5 /* PieViewController.m */; }; + 84390FCA253723C4000E2704 /* ImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0111889946F00BCAEF5 /* ImageViewController.m */; }; + 84390FCB253723C4000E2704 /* BorderedBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB00B1889946F00BCAEF5 /* BorderedBarViewController.m */; }; + 84390FCC253723C4000E2704 /* AppDelegate.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFAB1889907300BCAEF5 /* AppDelegate.m */; }; + 84390FCD253723C4000E2704 /* main.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFA71889907300BCAEF5 /* main.m */; }; + 84390FCE253723C4000E2704 /* FilteredImageViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB00F1889946F00BCAEF5 /* FilteredImageViewController.m */; }; + 84390FCF253723C4000E2704 /* ConsoleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB00D1889946F00BCAEF5 /* ConsoleViewController.m */; }; + 84390FD0253723C4000E2704 /* StripedBarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0211889946F00BCAEF5 /* StripedBarViewController.m */; }; + 84390FD1253723C4000E2704 /* SegmentedRingViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB01F1889946F00BCAEF5 /* SegmentedRingViewController.m */; }; + 84390FD3253723C4000E2704 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9D1889907300BCAEF5 /* CoreGraphics.framework */; }; + 84390FD5253723C4000E2704 /* QuartzCore.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FB03D1889975A00BCAEF5 /* QuartzCore.framework */; }; + 84390FD6253723C4000E2704 /* CoreImage.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FB03B1889975400BCAEF5 /* CoreImage.framework */; }; + 84390FD7253723C4000E2704 /* Accelerate.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FB0391889974600BCAEF5 /* Accelerate.framework */; }; + 84390FD8253723C4000E2704 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9F1889907300BCAEF5 /* UIKit.framework */; }; + 84390FD9253723C4000E2704 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9B1889907300BCAEF5 /* Foundation.framework */; }; + 84390FDB253723C4000E2704 /* Main_iPad.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CA2FAFB01889907300BCAEF5 /* Main_iPad.storyboard */; }; + 84390FDC253723C4000E2704 /* Galaxy.jpg in Resources */ = {isa = PBXBuildFile; fileRef = CA2FB0341889952E00BCAEF5 /* Galaxy.jpg */; }; + 84390FDD253723C4000E2704 /* Images.xcassets in Resources */ = {isa = PBXBuildFile; fileRef = CA2FAFB61889907300BCAEF5 /* Images.xcassets */; }; + 84390FDE253723C4000E2704 /* Striped_apple_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = CA2FB0351889952E00BCAEF5 /* Striped_apple_logo.png */; }; + 84390FDF253723C4000E2704 /* Main_iPhone.storyboard in Resources */ = {isa = PBXBuildFile; fileRef = CA2FAFAD1889907300BCAEF5 /* Main_iPhone.storyboard */; }; + 84390FE0253723C4000E2704 /* InfoPlist.strings in Resources */ = {isa = PBXBuildFile; fileRef = CA2FAFA41889907300BCAEF5 /* InfoPlist.strings */; }; + 84390FFB25372598000E2704 /* M13ProgressSuite in Frameworks */ = {isa = PBXBuildFile; productRef = 84390FFA25372598000E2704 /* M13ProgressSuite */; }; CA2FAF9C1889907300BCAEF5 /* Foundation.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9B1889907300BCAEF5 /* Foundation.framework */; }; CA2FAF9E1889907300BCAEF5 /* CoreGraphics.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9D1889907300BCAEF5 /* CoreGraphics.framework */; }; CA2FAFA01889907300BCAEF5 /* UIKit.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CA2FAF9F1889907300BCAEF5 /* UIKit.framework */; }; @@ -132,6 +164,7 @@ /* Begin PBXFileReference section */ 62BB85FF1C87300F0019306A /* UIApplication+M13ProgressSuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIApplication+M13ProgressSuite.h"; path = "Classes/Application/UIApplication+M13ProgressSuite.h"; sourceTree = ""; }; 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+M13ProgressSuite.m"; path = "Classes/Application/UIApplication+M13ProgressSuite.m"; sourceTree = ""; }; + 84390FE6253723C4000E2704 /* M13ProgressSuiteDemo-SPM.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "M13ProgressSuiteDemo-SPM.app"; sourceTree = BUILT_PRODUCTS_DIR; }; CA1C945C18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewMetroDotPolygon.h; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h; sourceTree = ""; }; CA1C945D18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewMetroDotPolygon.m; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.m; sourceTree = ""; }; CA2FAF981889907300BCAEF5 /* M13ProgressSuiteDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = M13ProgressSuiteDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -229,6 +262,20 @@ /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ + 84390FD2253723C4000E2704 /* Frameworks */ = { + isa = PBXFrameworksBuildPhase; + buildActionMask = 2147483647; + files = ( + 84390FD3253723C4000E2704 /* CoreGraphics.framework in Frameworks */, + 84390FD5253723C4000E2704 /* QuartzCore.framework in Frameworks */, + 84390FD6253723C4000E2704 /* CoreImage.framework in Frameworks */, + 84390FFB25372598000E2704 /* M13ProgressSuite in Frameworks */, + 84390FD7253723C4000E2704 /* Accelerate.framework in Frameworks */, + 84390FD8253723C4000E2704 /* UIKit.framework in Frameworks */, + 84390FD9253723C4000E2704 /* Foundation.framework in Frameworks */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA2FAF951889907300BCAEF5 /* Frameworks */ = { isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; @@ -291,6 +338,7 @@ CA2FAF981889907300BCAEF5 /* M13ProgressSuiteDemo.app */, CA2FAFBC1889907300BCAEF5 /* M13ProgressSuiteTests.xctest */, FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */, + 84390FE6253723C4000E2704 /* M13ProgressSuiteDemo-SPM.app */, ); name = Products; sourceTree = ""; @@ -629,6 +677,26 @@ /* End PBXHeadersBuildPhase section */ /* Begin PBXNativeTarget section */ + 84390FBB253723C4000E2704 /* M13ProgressSuiteDemo-SPM */ = { + isa = PBXNativeTarget; + buildConfigurationList = 84390FE3253723C4000E2704 /* Build configuration list for PBXNativeTarget "M13ProgressSuiteDemo-SPM" */; + buildPhases = ( + 84390FBE253723C4000E2704 /* Sources */, + 84390FD2253723C4000E2704 /* Frameworks */, + 84390FDA253723C4000E2704 /* Resources */, + ); + buildRules = ( + ); + dependencies = ( + ); + name = "M13ProgressSuiteDemo-SPM"; + packageProductDependencies = ( + 84390FFA25372598000E2704 /* M13ProgressSuite */, + ); + productName = M13ProgressSuite; + productReference = 84390FE6253723C4000E2704 /* M13ProgressSuiteDemo-SPM.app */; + productType = "com.apple.product-type.application"; + }; CA2FAF971889907300BCAEF5 /* M13ProgressSuiteDemo */ = { isa = PBXNativeTarget; buildConfigurationList = CA2FAFCD1889907300BCAEF5 /* Build configuration list for PBXNativeTarget "M13ProgressSuiteDemo" */; @@ -706,6 +774,7 @@ developmentRegion = English; hasScannedForEncodings = 0; knownRegions = ( + English, en, Base, ); @@ -718,11 +787,25 @@ CA2FAFBB1889907300BCAEF5 /* M13ProgressSuiteTests */, FB2A7BDB1B793E5600FE4E4A /* M13ProgressSuiteFramework */, CA2FB0431889986D00BCAEF5 /* Documentation */, + 84390FBB253723C4000E2704 /* M13ProgressSuiteDemo-SPM */, ); }; /* End PBXProject section */ /* Begin PBXResourcesBuildPhase section */ + 84390FDA253723C4000E2704 /* Resources */ = { + isa = PBXResourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 84390FDB253723C4000E2704 /* Main_iPad.storyboard in Resources */, + 84390FDC253723C4000E2704 /* Galaxy.jpg in Resources */, + 84390FDD253723C4000E2704 /* Images.xcassets in Resources */, + 84390FDE253723C4000E2704 /* Striped_apple_logo.png in Resources */, + 84390FDF253723C4000E2704 /* Main_iPhone.storyboard in Resources */, + 84390FE0253723C4000E2704 /* InfoPlist.strings in Resources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA2FAF961889907300BCAEF5 /* Resources */ = { isa = PBXResourcesBuildPhase; buildActionMask = 2147483647; @@ -770,6 +853,32 @@ /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ + 84390FBE253723C4000E2704 /* Sources */ = { + isa = PBXSourcesBuildPhase; + buildActionMask = 2147483647; + files = ( + 84390FBF253723C4000E2704 /* UIApplication+M13ProgressSuite.m in Sources */, + 84390FC0253723C4000E2704 /* SampleViewController.m in Sources */, + 84390FC1253723C4000E2704 /* LetterpressViewController.m in Sources */, + 84390FC2253723C4000E2704 /* BarViewController.m in Sources */, + 84390FC3253723C4000E2704 /* M13ProgressViewBarNavigationControllerViewController.m in Sources */, + 84390FC4253723C4000E2704 /* RadiativeViewController.m in Sources */, + 84390FC5253723C4000E2704 /* ProgressHUDViewController.m in Sources */, + 84390FC6253723C4000E2704 /* RingViewController.m in Sources */, + 84390FC7253723C4000E2704 /* SegmentedBarViewController.m in Sources */, + 84390FC8253723C4000E2704 /* MetroViewController.m in Sources */, + 84390FC9253723C4000E2704 /* PieViewController.m in Sources */, + 84390FCA253723C4000E2704 /* ImageViewController.m in Sources */, + 84390FCB253723C4000E2704 /* BorderedBarViewController.m in Sources */, + 84390FCC253723C4000E2704 /* AppDelegate.m in Sources */, + 84390FCD253723C4000E2704 /* main.m in Sources */, + 84390FCE253723C4000E2704 /* FilteredImageViewController.m in Sources */, + 84390FCF253723C4000E2704 /* ConsoleViewController.m in Sources */, + 84390FD0253723C4000E2704 /* StripedBarViewController.m in Sources */, + 84390FD1253723C4000E2704 /* SegmentedRingViewController.m in Sources */, + ); + runOnlyForDeploymentPostprocessing = 0; + }; CA2FAF941889907300BCAEF5 /* Sources */ = { isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; @@ -880,6 +989,42 @@ /* End PBXVariantGroup section */ /* Begin XCBuildConfiguration section */ + 84390FE4253723C4000E2704 /* Debug */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; + INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Debug; + }; + 84390FE5253723C4000E2704 /* Release */ = { + isa = XCBuildConfiguration; + buildSettings = { + ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; + ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; + GCC_PRECOMPILE_PREFIX_HEADER = YES; + GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; + INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); + PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}"; + PRODUCT_NAME = "$(TARGET_NAME)"; + WRAPPER_EXTENSION = app; + }; + name = Release; + }; CA2FAFCB1889907300BCAEF5 /* Debug */ = { isa = XCBuildConfiguration; buildSettings = { @@ -961,7 +1106,10 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; @@ -976,7 +1124,10 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + ); PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.${PRODUCT_NAME:rfc1034identifier}"; PRODUCT_NAME = "$(TARGET_NAME)"; WRAPPER_EXTENSION = app; @@ -1061,7 +1212,11 @@ INFOPLIST_FILE = M13ProgressSuiteFramework/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); MTL_ENABLE_DEBUG_INFO = YES; PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = M13ProgressSuite; @@ -1090,7 +1245,11 @@ INFOPLIST_FILE = M13ProgressSuiteFramework/Info.plist; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; IPHONEOS_DEPLOYMENT_TARGET = 8.0; - LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; + LD_RUNPATH_SEARCH_PATHS = ( + "$(inherited)", + "@executable_path/Frameworks", + "@loader_path/Frameworks", + ); MTL_ENABLE_DEBUG_INFO = NO; PRODUCT_BUNDLE_IDENTIFIER = "com.BrandonMcQuilkin.$(PRODUCT_NAME:rfc1034identifier)"; PRODUCT_NAME = M13ProgressSuite; @@ -1103,6 +1262,15 @@ /* End XCBuildConfiguration section */ /* Begin XCConfigurationList section */ + 84390FE3253723C4000E2704 /* Build configuration list for PBXNativeTarget "M13ProgressSuiteDemo-SPM" */ = { + isa = XCConfigurationList; + buildConfigurations = ( + 84390FE4253723C4000E2704 /* Debug */, + 84390FE5253723C4000E2704 /* Release */, + ); + defaultConfigurationIsVisible = 0; + defaultConfigurationName = Release; + }; CA2FAF931889907300BCAEF5 /* Build configuration list for PBXProject "M13ProgressSuite" */ = { isa = XCConfigurationList; buildConfigurations = ( @@ -1149,6 +1317,13 @@ defaultConfigurationName = Release; }; /* End XCConfigurationList section */ + +/* Begin XCSwiftPackageProductDependency section */ + 84390FFA25372598000E2704 /* M13ProgressSuite */ = { + isa = XCSwiftPackageProductDependency; + productName = M13ProgressSuite; + }; +/* End XCSwiftPackageProductDependency section */ }; rootObject = CA2FAF901889907300BCAEF5 /* Project object */; } diff --git a/M13ProgressSuite.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/M13ProgressSuite.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/M13ProgressSuite.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/M13ProgressSuite.xcodeproj/xcshareddata/xcschemes/M13ProgressSuiteDemo-SPM.xcscheme b/M13ProgressSuite.xcodeproj/xcshareddata/xcschemes/M13ProgressSuiteDemo-SPM.xcscheme new file mode 100644 index 0000000..8fe4723 --- /dev/null +++ b/M13ProgressSuite.xcodeproj/xcshareddata/xcschemes/M13ProgressSuiteDemo-SPM.xcscheme @@ -0,0 +1,78 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/M13ProgressSuite.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/M13ProgressSuite.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist new file mode 100644 index 0000000..18d9810 --- /dev/null +++ b/M13ProgressSuite.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist @@ -0,0 +1,8 @@ + + + + + IDEDidComputeMac32BitWarning + + + diff --git a/M13ProgressSuite/SegmentedRingViewController.m b/M13ProgressSuite/SegmentedRingViewController.m index 746bd58..9dd861c 100644 --- a/M13ProgressSuite/SegmentedRingViewController.m +++ b/M13ProgressSuite/SegmentedRingViewController.m @@ -12,6 +12,7 @@ */ #import "SegmentedRingViewController.h" +@import M13ProgressSuite; @interface SegmentedRingViewController () diff --git a/Package.swift b/Package.swift index cc9f1d8..ff1f57b 100644 --- a/Package.swift +++ b/Package.swift @@ -18,7 +18,6 @@ let package = Package( .target( name: "M13ProgressSuite", path: "Classes", - publicHeadersPath: "", cSettings: [ .headerSearchPath("Application"), .headerSearchPath("Console"), From de8daa37f8fd93ae19ceb424e21c5429ddab7094 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Wed, 14 Oct 2020 15:08:17 +0200 Subject: [PATCH 03/12] Fix Package.swift --- Package.swift | 1 + 1 file changed, 1 insertion(+) diff --git a/Package.swift b/Package.swift index ff1f57b..cc9f1d8 100644 --- a/Package.swift +++ b/Package.swift @@ -18,6 +18,7 @@ let package = Package( .target( name: "M13ProgressSuite", path: "Classes", + publicHeadersPath: "", cSettings: [ .headerSearchPath("Application"), .headerSearchPath("Console"), From fa2cba9e179082ad24cd07ed944cbd3492dd1bf5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Wed, 14 Oct 2020 15:37:28 +0200 Subject: [PATCH 04/12] Change sample to cocoapods WIP: Fix SPM --- M13ProgressSuite.xcodeproj/project.pbxproj | 366 ++++----------------- Package.swift | 16 +- Podfile | 10 + 3 files changed, 76 insertions(+), 316 deletions(-) create mode 100644 Podfile diff --git a/M13ProgressSuite.xcodeproj/project.pbxproj b/M13ProgressSuite.xcodeproj/project.pbxproj index 795a336..0dc8554 100644 --- a/M13ProgressSuite.xcodeproj/project.pbxproj +++ b/M13ProgressSuite.xcodeproj/project.pbxproj @@ -21,8 +21,7 @@ /* End PBXAggregateTarget section */ /* Begin PBXBuildFile section */ - 62BB86011C87300F0019306A /* UIApplication+M13ProgressSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */; }; - 84390FBF253723C4000E2704 /* UIApplication+M13ProgressSuite.m in Sources */ = {isa = PBXBuildFile; fileRef = 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */; }; + 0A4BF74D4294774D5CA1D703 /* Pods_M13ProgressSuiteDemo.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = BAA4432C67FD122402B77C82 /* Pods_M13ProgressSuiteDemo.framework */; }; 84390FC0253723C4000E2704 /* SampleViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB01B1889946F00BCAEF5 /* SampleViewController.m */; }; 84390FC1253723C4000E2704 /* LetterpressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */; }; 84390FC2253723C4000E2704 /* BarViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FB0091889946F00BCAEF5 /* BarViewController.m */; }; @@ -90,44 +89,6 @@ CA66890618CBEF9300827C48 /* MetroViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA66890518CBEF9300827C48 /* MetroViewController.m */; }; CA6F31C7190EBF11008D1E64 /* LetterpressViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */; }; FB2A7BE11B793E5600FE4E4A /* M13ProgressSuite.h in Headers */ = {isa = PBXBuildFile; fileRef = FB2A7BE01B793E5600FE4E4A /* M13ProgressSuite.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7BF31B793E5600FE4E4A /* M13ProgressSuite.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */; }; - FB2A7BF41B793E5600FE4E4A /* M13ProgressSuite.framework in Embed Frameworks */ = {isa = PBXBuildFile; fileRef = FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */; settings = {ATTRIBUTES = (CodeSignOnCopy, RemoveHeadersOnCopy, ); }; }; - FB2A7BFC1B793E6B00FE4E4A /* M13ProgressView.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE11889937800BCAEF5 /* M13ProgressView.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7BFD1B793E6B00FE4E4A /* M13ProgressView.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFE21889937800BCAEF5 /* M13ProgressView.m */; }; - FB2A7BFE1B793E6B00FE4E4A /* M13ProgressViewBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE31889937800BCAEF5 /* M13ProgressViewBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7BFF1B793E6B00FE4E4A /* M13ProgressViewBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFE41889937800BCAEF5 /* M13ProgressViewBar.m */; }; - FB2A7C001B793E6B00FE4E4A /* M13ProgressViewBorderedBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE51889937800BCAEF5 /* M13ProgressViewBorderedBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C011B793E6B00FE4E4A /* M13ProgressViewBorderedBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFE61889937800BCAEF5 /* M13ProgressViewBorderedBar.m */; }; - FB2A7C021B793E6B00FE4E4A /* M13ProgressViewFilteredImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE71889937800BCAEF5 /* M13ProgressViewFilteredImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C031B793E6B00FE4E4A /* M13ProgressViewFilteredImage.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFE81889937800BCAEF5 /* M13ProgressViewFilteredImage.m */; }; - FB2A7C041B793E6B00FE4E4A /* M13ProgressViewImage.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFE91889937800BCAEF5 /* M13ProgressViewImage.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C051B793E6B00FE4E4A /* M13ProgressViewImage.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFEA1889937800BCAEF5 /* M13ProgressViewImage.m */; }; - FB2A7C061B793E6B00FE4E4A /* M13ProgressViewPie.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFEB1889937800BCAEF5 /* M13ProgressViewPie.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C071B793E6B00FE4E4A /* M13ProgressViewPie.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFEC1889937800BCAEF5 /* M13ProgressViewPie.m */; }; - FB2A7C081B793E6B00FE4E4A /* M13ProgressViewRing.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFED1889937800BCAEF5 /* M13ProgressViewRing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C091B793E6B00FE4E4A /* M13ProgressViewRing.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFEE1889937800BCAEF5 /* M13ProgressViewRing.m */; }; - FB2A7C0A1B793E6B00FE4E4A /* M13ProgressViewSegmentedBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFEF1889937800BCAEF5 /* M13ProgressViewSegmentedBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C0B1B793E6B00FE4E4A /* M13ProgressViewSegmentedBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFF01889937800BCAEF5 /* M13ProgressViewSegmentedBar.m */; }; - FB2A7C0C1B793E6B00FE4E4A /* M13ProgressViewSegmentedRing.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFF11889937800BCAEF5 /* M13ProgressViewSegmentedRing.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C0D1B793E6B00FE4E4A /* M13ProgressViewSegmentedRing.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFF21889937800BCAEF5 /* M13ProgressViewSegmentedRing.m */; }; - FB2A7C0E1B793E6B00FE4E4A /* M13ProgressViewStripedBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFF31889937800BCAEF5 /* M13ProgressViewStripedBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C0F1B793E6B00FE4E4A /* M13ProgressViewStripedBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFF41889937800BCAEF5 /* M13ProgressViewStripedBar.m */; }; - FB2A7C101B793E6B00FE4E4A /* M13ProgressViewMetro.h in Headers */ = {isa = PBXBuildFile; fileRef = CA66890118CBBD1400827C48 /* M13ProgressViewMetro.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C111B793E6B00FE4E4A /* M13ProgressViewMetro.m in Sources */ = {isa = PBXBuildFile; fileRef = CA66890218CBBD1400827C48 /* M13ProgressViewMetro.m */; }; - FB2A7C121B793E6B00FE4E4A /* M13ProgressViewMetroDotPolygon.h in Headers */ = {isa = PBXBuildFile; fileRef = CA1C945C18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C131B793E6B00FE4E4A /* M13ProgressViewMetroDotPolygon.m in Sources */ = {isa = PBXBuildFile; fileRef = CA1C945D18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.m */; }; - FB2A7C141B793E6B00FE4E4A /* M13ProgressViewRadiative.h in Headers */ = {isa = PBXBuildFile; fileRef = CA412B0018D252FE00FCB7CC /* M13ProgressViewRadiative.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C151B793E6B00FE4E4A /* M13ProgressViewRadiative.m in Sources */ = {isa = PBXBuildFile; fileRef = CA412B0118D252FE00FCB7CC /* M13ProgressViewRadiative.m */; }; - FB2A7C161B793E6B00FE4E4A /* M13ProgressViewLetterpress.h in Headers */ = {isa = PBXBuildFile; fileRef = CA6F31C1190EA88D008D1E64 /* M13ProgressViewLetterpress.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C171B793E6B00FE4E4A /* M13ProgressViewLetterpress.m in Sources */ = {isa = PBXBuildFile; fileRef = CA6F31C2190EA88D008D1E64 /* M13ProgressViewLetterpress.m */; }; - FB2A7C181B793E6B00FE4E4A /* UIImage+ImageEffects.h in Headers */ = {isa = PBXBuildFile; fileRef = CA42BE271A12A92F0018E53E /* UIImage+ImageEffects.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C191B793E6B00FE4E4A /* UIImage+ImageEffects.m in Sources */ = {isa = PBXBuildFile; fileRef = CA42BE281A12A92F0018E53E /* UIImage+ImageEffects.m */; }; - FB2A7C1A1B793E6B00FE4E4A /* M13ProgressHUD.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFDC1889935400BCAEF5 /* M13ProgressHUD.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C1B1B793E6B00FE4E4A /* M13ProgressHUD.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFDD1889935400BCAEF5 /* M13ProgressHUD.m */; }; - FB2A7C1C1B793E6B00FE4E4A /* M13ProgressConsole.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFD81889933F00BCAEF5 /* M13ProgressConsole.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C1D1B793E6B00FE4E4A /* M13ProgressConsole.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFD91889933F00BCAEF5 /* M13ProgressConsole.m */; }; - FB2A7C1E1B793E6B00FE4E4A /* UINavigationController+M13ProgressViewBar.h in Headers */ = {isa = PBXBuildFile; fileRef = CA2FAFD51889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.h */; settings = {ATTRIBUTES = (Public, ); }; }; - FB2A7C1F1B793E6B00FE4E4A /* UINavigationController+M13ProgressViewBar.m in Sources */ = {isa = PBXBuildFile; fileRef = CA2FAFD61889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.m */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -138,13 +99,6 @@ remoteGlobalIDString = CA2FAF971889907300BCAEF5; remoteInfo = M13ProgressSuite; }; - FB2A7BF11B793E5600FE4E4A /* PBXContainerItemProxy */ = { - isa = PBXContainerItemProxy; - containerPortal = CA2FAF901889907300BCAEF5 /* Project object */; - proxyType = 1; - remoteGlobalIDString = FB2A7BDB1B793E5600FE4E4A; - remoteInfo = M13ProgressSuiteFramework; - }; /* End PBXContainerItemProxy section */ /* Begin PBXCopyFilesBuildPhase section */ @@ -154,7 +108,6 @@ dstPath = ""; dstSubfolderSpec = 10; files = ( - FB2A7BF41B793E5600FE4E4A /* M13ProgressSuite.framework in Embed Frameworks */, ); name = "Embed Frameworks"; runOnlyForDeploymentPostprocessing = 0; @@ -162,11 +115,10 @@ /* End PBXCopyFilesBuildPhase section */ /* Begin PBXFileReference section */ - 62BB85FF1C87300F0019306A /* UIApplication+M13ProgressSuite.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIApplication+M13ProgressSuite.h"; path = "Classes/Application/UIApplication+M13ProgressSuite.h"; sourceTree = ""; }; - 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIApplication+M13ProgressSuite.m"; path = "Classes/Application/UIApplication+M13ProgressSuite.m"; sourceTree = ""; }; + 00D792F975B8E7AC1C5DE5B0 /* Pods-M13ProgressSuiteDemo.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-M13ProgressSuiteDemo.debug.xcconfig"; path = "Target Support Files/Pods-M13ProgressSuiteDemo/Pods-M13ProgressSuiteDemo.debug.xcconfig"; sourceTree = ""; }; + 6568F0733E1C864455A4CCA2 /* Pods-M13ProgressSuiteDemo.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-M13ProgressSuiteDemo.release.xcconfig"; path = "Target Support Files/Pods-M13ProgressSuiteDemo/Pods-M13ProgressSuiteDemo.release.xcconfig"; sourceTree = ""; }; 84390FE6253723C4000E2704 /* M13ProgressSuiteDemo-SPM.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = "M13ProgressSuiteDemo-SPM.app"; sourceTree = BUILT_PRODUCTS_DIR; }; - CA1C945C18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewMetroDotPolygon.h; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.h; sourceTree = ""; }; - CA1C945D18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewMetroDotPolygon.m; path = Classes/ProgressViews/M13ProgressViewMetroDotPolygon.m; sourceTree = ""; }; + BAA4432C67FD122402B77C82 /* Pods_M13ProgressSuiteDemo.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_M13ProgressSuiteDemo.framework; sourceTree = BUILT_PRODUCTS_DIR; }; CA2FAF981889907300BCAEF5 /* M13ProgressSuiteDemo.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = M13ProgressSuiteDemo.app; sourceTree = BUILT_PRODUCTS_DIR; }; CA2FAF9B1889907300BCAEF5 /* Foundation.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Foundation.framework; path = System/Library/Frameworks/Foundation.framework; sourceTree = SDKROOT; }; CA2FAF9D1889907300BCAEF5 /* CoreGraphics.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreGraphics.framework; path = System/Library/Frameworks/CoreGraphics.framework; sourceTree = SDKROOT; }; @@ -185,32 +137,6 @@ CA2FAFC51889907300BCAEF5 /* M13ProgressSuiteTests-Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = "M13ProgressSuiteTests-Info.plist"; sourceTree = ""; }; CA2FAFC71889907300BCAEF5 /* en */ = {isa = PBXFileReference; lastKnownFileType = text.plist.strings; name = en; path = en.lproj/InfoPlist.strings; sourceTree = ""; }; CA2FAFC91889907300BCAEF5 /* M13ProgressSuiteTests.m */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.objc; path = M13ProgressSuiteTests.m; sourceTree = ""; }; - CA2FAFD51889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UINavigationController+M13ProgressViewBar.h"; path = "Classes/NavigationController/UINavigationController+M13ProgressViewBar.h"; sourceTree = ""; }; - CA2FAFD61889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UINavigationController+M13ProgressViewBar.m"; path = "Classes/NavigationController/UINavigationController+M13ProgressViewBar.m"; sourceTree = ""; }; - CA2FAFD81889933F00BCAEF5 /* M13ProgressConsole.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressConsole.h; path = Classes/Console/M13ProgressConsole.h; sourceTree = ""; }; - CA2FAFD91889933F00BCAEF5 /* M13ProgressConsole.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressConsole.m; path = Classes/Console/M13ProgressConsole.m; sourceTree = ""; }; - CA2FAFDC1889935400BCAEF5 /* M13ProgressHUD.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressHUD.h; path = Classes/HUD/M13ProgressHUD.h; sourceTree = ""; }; - CA2FAFDD1889935400BCAEF5 /* M13ProgressHUD.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressHUD.m; path = Classes/HUD/M13ProgressHUD.m; sourceTree = ""; }; - CA2FAFE11889937800BCAEF5 /* M13ProgressView.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressView.h; path = Classes/ProgressViews/M13ProgressView.h; sourceTree = ""; }; - CA2FAFE21889937800BCAEF5 /* M13ProgressView.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressView.m; path = Classes/ProgressViews/M13ProgressView.m; sourceTree = ""; }; - CA2FAFE31889937800BCAEF5 /* M13ProgressViewBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewBar.h; path = Classes/ProgressViews/M13ProgressViewBar.h; sourceTree = ""; }; - CA2FAFE41889937800BCAEF5 /* M13ProgressViewBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewBar.m; path = Classes/ProgressViews/M13ProgressViewBar.m; sourceTree = ""; }; - CA2FAFE51889937800BCAEF5 /* M13ProgressViewBorderedBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewBorderedBar.h; path = Classes/ProgressViews/M13ProgressViewBorderedBar.h; sourceTree = ""; }; - CA2FAFE61889937800BCAEF5 /* M13ProgressViewBorderedBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewBorderedBar.m; path = Classes/ProgressViews/M13ProgressViewBorderedBar.m; sourceTree = ""; }; - CA2FAFE71889937800BCAEF5 /* M13ProgressViewFilteredImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewFilteredImage.h; path = Classes/ProgressViews/M13ProgressViewFilteredImage.h; sourceTree = ""; }; - CA2FAFE81889937800BCAEF5 /* M13ProgressViewFilteredImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewFilteredImage.m; path = Classes/ProgressViews/M13ProgressViewFilteredImage.m; sourceTree = ""; }; - CA2FAFE91889937800BCAEF5 /* M13ProgressViewImage.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewImage.h; path = Classes/ProgressViews/M13ProgressViewImage.h; sourceTree = ""; }; - CA2FAFEA1889937800BCAEF5 /* M13ProgressViewImage.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewImage.m; path = Classes/ProgressViews/M13ProgressViewImage.m; sourceTree = ""; }; - CA2FAFEB1889937800BCAEF5 /* M13ProgressViewPie.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewPie.h; path = Classes/ProgressViews/M13ProgressViewPie.h; sourceTree = ""; }; - CA2FAFEC1889937800BCAEF5 /* M13ProgressViewPie.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewPie.m; path = Classes/ProgressViews/M13ProgressViewPie.m; sourceTree = ""; }; - CA2FAFED1889937800BCAEF5 /* M13ProgressViewRing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewRing.h; path = Classes/ProgressViews/M13ProgressViewRing.h; sourceTree = ""; }; - CA2FAFEE1889937800BCAEF5 /* M13ProgressViewRing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewRing.m; path = Classes/ProgressViews/M13ProgressViewRing.m; sourceTree = ""; }; - CA2FAFEF1889937800BCAEF5 /* M13ProgressViewSegmentedBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewSegmentedBar.h; path = Classes/ProgressViews/M13ProgressViewSegmentedBar.h; sourceTree = ""; }; - CA2FAFF01889937800BCAEF5 /* M13ProgressViewSegmentedBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewSegmentedBar.m; path = Classes/ProgressViews/M13ProgressViewSegmentedBar.m; sourceTree = ""; }; - CA2FAFF11889937800BCAEF5 /* M13ProgressViewSegmentedRing.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewSegmentedRing.h; path = Classes/ProgressViews/M13ProgressViewSegmentedRing.h; sourceTree = ""; }; - CA2FAFF21889937800BCAEF5 /* M13ProgressViewSegmentedRing.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewSegmentedRing.m; path = Classes/ProgressViews/M13ProgressViewSegmentedRing.m; sourceTree = ""; }; - CA2FAFF31889937800BCAEF5 /* M13ProgressViewStripedBar.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewStripedBar.h; path = Classes/ProgressViews/M13ProgressViewStripedBar.h; sourceTree = ""; }; - CA2FAFF41889937800BCAEF5 /* M13ProgressViewStripedBar.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewStripedBar.m; path = Classes/ProgressViews/M13ProgressViewStripedBar.m; sourceTree = ""; }; CA2FB0081889946F00BCAEF5 /* BarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BarViewController.h; sourceTree = ""; }; CA2FB0091889946F00BCAEF5 /* BarViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = BarViewController.m; sourceTree = ""; }; CA2FB00A1889946F00BCAEF5 /* BorderedBarViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = BorderedBarViewController.h; sourceTree = ""; }; @@ -242,18 +168,10 @@ CA2FB0391889974600BCAEF5 /* Accelerate.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = Accelerate.framework; path = System/Library/Frameworks/Accelerate.framework; sourceTree = SDKROOT; }; CA2FB03B1889975400BCAEF5 /* CoreImage.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreImage.framework; path = System/Library/Frameworks/CoreImage.framework; sourceTree = SDKROOT; }; CA2FB03D1889975A00BCAEF5 /* QuartzCore.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = QuartzCore.framework; path = System/Library/Frameworks/QuartzCore.framework; sourceTree = SDKROOT; }; - CA412B0018D252FE00FCB7CC /* M13ProgressViewRadiative.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewRadiative.h; path = Classes/ProgressViews/M13ProgressViewRadiative.h; sourceTree = ""; }; - CA412B0118D252FE00FCB7CC /* M13ProgressViewRadiative.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewRadiative.m; path = Classes/ProgressViews/M13ProgressViewRadiative.m; sourceTree = ""; }; CA412B0318D2638E00FCB7CC /* RadiativeViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = RadiativeViewController.h; sourceTree = ""; }; CA412B0418D2638E00FCB7CC /* RadiativeViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = RadiativeViewController.m; sourceTree = ""; }; - CA42BE271A12A92F0018E53E /* UIImage+ImageEffects.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = "UIImage+ImageEffects.h"; path = "Classes/HUD/UIImage+ImageEffects.h"; sourceTree = ""; }; - CA42BE281A12A92F0018E53E /* UIImage+ImageEffects.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = "UIImage+ImageEffects.m"; path = "Classes/HUD/UIImage+ImageEffects.m"; sourceTree = ""; }; - CA66890118CBBD1400827C48 /* M13ProgressViewMetro.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewMetro.h; path = Classes/ProgressViews/M13ProgressViewMetro.h; sourceTree = ""; }; - CA66890218CBBD1400827C48 /* M13ProgressViewMetro.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewMetro.m; path = Classes/ProgressViews/M13ProgressViewMetro.m; sourceTree = ""; }; CA66890418CBEF9300827C48 /* MetroViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = MetroViewController.h; sourceTree = ""; }; CA66890518CBEF9300827C48 /* MetroViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = MetroViewController.m; sourceTree = ""; }; - CA6F31C1190EA88D008D1E64 /* M13ProgressViewLetterpress.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = M13ProgressViewLetterpress.h; path = Classes/ProgressViews/M13ProgressViewLetterpress.h; sourceTree = ""; }; - CA6F31C2190EA88D008D1E64 /* M13ProgressViewLetterpress.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; name = M13ProgressViewLetterpress.m; path = Classes/ProgressViews/M13ProgressViewLetterpress.m; sourceTree = ""; }; CA6F31C5190EBF11008D1E64 /* LetterpressViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = LetterpressViewController.h; sourceTree = ""; }; CA6F31C6190EBF11008D1E64 /* LetterpressViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = LetterpressViewController.m; sourceTree = ""; }; FB2A7BDC1B793E5600FE4E4A /* M13ProgressSuite.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = M13ProgressSuite.framework; sourceTree = BUILT_PRODUCTS_DIR; }; @@ -281,12 +199,12 @@ buildActionMask = 2147483647; files = ( CA2FAF9E1889907300BCAEF5 /* CoreGraphics.framework in Frameworks */, - FB2A7BF31B793E5600FE4E4A /* M13ProgressSuite.framework in Frameworks */, CA2FB03E1889975A00BCAEF5 /* QuartzCore.framework in Frameworks */, CA2FB03C1889975400BCAEF5 /* CoreImage.framework in Frameworks */, CA2FB03A1889974600BCAEF5 /* Accelerate.framework in Frameworks */, CA2FAFA01889907300BCAEF5 /* UIKit.framework in Frameworks */, CA2FAF9C1889907300BCAEF5 /* Foundation.framework in Frameworks */, + 0A4BF74D4294774D5CA1D703 /* Pods_M13ProgressSuiteDemo.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -310,25 +228,16 @@ /* End PBXFrameworksBuildPhase section */ /* Begin PBXGroup section */ - 62BB85FE1C872FF50019306A /* M13ProgressApplication */ = { - isa = PBXGroup; - children = ( - 62BB85FF1C87300F0019306A /* UIApplication+M13ProgressSuite.h */, - 62BB86001C87300F0019306A /* UIApplication+M13ProgressSuite.m */, - ); - name = M13ProgressApplication; - sourceTree = ""; - }; CA2FAF8F1889907300BCAEF5 = { isa = PBXGroup; children = ( - CA2FAFD31889924500BCAEF5 /* Classes */, CA2FB033188994E200BCAEF5 /* Images */, CA2FAFA11889907300BCAEF5 /* M13ProgressSuite */, CA2FAFC31889907300BCAEF5 /* M13ProgressSuiteTests */, FB2A7BDD1B793E5600FE4E4A /* M13ProgressSuiteFramework */, CA2FAF9A1889907300BCAEF5 /* Frameworks */, CA2FAF991889907300BCAEF5 /* Products */, + F7CD63C2B9A0AB31F9811961 /* Pods */, ); sourceTree = ""; }; @@ -353,6 +262,7 @@ CA2FAF9D1889907300BCAEF5 /* CoreGraphics.framework */, CA2FAF9F1889907300BCAEF5 /* UIKit.framework */, CA2FAFBD1889907300BCAEF5 /* XCTest.framework */, + BAA4432C67FD122402B77C82 /* Pods_M13ProgressSuiteDemo.framework */, ); name = Frameworks; sourceTree = ""; @@ -400,149 +310,6 @@ name = "Supporting Files"; sourceTree = ""; }; - CA2FAFD31889924500BCAEF5 /* Classes */ = { - isa = PBXGroup; - children = ( - CA2FAFE01889935F00BCAEF5 /* ProgressViews */, - CA2FAFDF1889935700BCAEF5 /* HUD */, - CA2FAFDB1889934300BCAEF5 /* Console */, - CA2FAFD41889928200BCAEF5 /* M13ProgressNavigationController */, - 62BB85FE1C872FF50019306A /* M13ProgressApplication */, - ); - name = Classes; - sourceTree = ""; - }; - CA2FAFD41889928200BCAEF5 /* M13ProgressNavigationController */ = { - isa = PBXGroup; - children = ( - CA2FAFD51889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.h */, - CA2FAFD61889933200BCAEF5 /* UINavigationController+M13ProgressViewBar.m */, - ); - name = M13ProgressNavigationController; - sourceTree = ""; - }; - CA2FAFDB1889934300BCAEF5 /* Console */ = { - isa = PBXGroup; - children = ( - CA2FAFD81889933F00BCAEF5 /* M13ProgressConsole.h */, - CA2FAFD91889933F00BCAEF5 /* M13ProgressConsole.m */, - ); - name = Console; - sourceTree = ""; - }; - CA2FAFDF1889935700BCAEF5 /* HUD */ = { - isa = PBXGroup; - children = ( - CA42BE271A12A92F0018E53E /* UIImage+ImageEffects.h */, - CA42BE281A12A92F0018E53E /* UIImage+ImageEffects.m */, - CA2FAFDC1889935400BCAEF5 /* M13ProgressHUD.h */, - CA2FAFDD1889935400BCAEF5 /* M13ProgressHUD.m */, - ); - name = HUD; - sourceTree = ""; - }; - CA2FAFE01889935F00BCAEF5 /* ProgressViews */ = { - isa = PBXGroup; - children = ( - CA2FAFE11889937800BCAEF5 /* M13ProgressView.h */, - CA2FAFE21889937800BCAEF5 /* M13ProgressView.m */, - CA2FAFFF1889937E00BCAEF5 /* Bar */, - CA2FB0001889938300BCAEF5 /* Bordered Bar */, - CA2FB0011889938B00BCAEF5 /* Filtered Image */, - CA2FB0031889939F00BCAEF5 /* Image */, - CA2FB0021889939300BCAEF5 /* Pie */, - CA2FB004188993A500BCAEF5 /* Ring */, - CA2FB005188993AA00BCAEF5 /* Segmented Bar */, - CA2FB006188993B300BCAEF5 /* Segmented Ring */, - CA2FB007188993BF00BCAEF5 /* Striped Bar */, - CA66890018CBBCB800827C48 /* Metro */, - CA412AEA18D1F1A400FCB7CC /* Radiative */, - CA6F31C4190EA898008D1E64 /* Letterpress */, - ); - name = ProgressViews; - sourceTree = ""; - }; - CA2FAFFF1889937E00BCAEF5 /* Bar */ = { - isa = PBXGroup; - children = ( - CA2FAFE31889937800BCAEF5 /* M13ProgressViewBar.h */, - CA2FAFE41889937800BCAEF5 /* M13ProgressViewBar.m */, - ); - name = Bar; - sourceTree = ""; - }; - CA2FB0001889938300BCAEF5 /* Bordered Bar */ = { - isa = PBXGroup; - children = ( - CA2FAFE51889937800BCAEF5 /* M13ProgressViewBorderedBar.h */, - CA2FAFE61889937800BCAEF5 /* M13ProgressViewBorderedBar.m */, - ); - name = "Bordered Bar"; - sourceTree = ""; - }; - CA2FB0011889938B00BCAEF5 /* Filtered Image */ = { - isa = PBXGroup; - children = ( - CA2FAFE71889937800BCAEF5 /* M13ProgressViewFilteredImage.h */, - CA2FAFE81889937800BCAEF5 /* M13ProgressViewFilteredImage.m */, - ); - name = "Filtered Image"; - sourceTree = ""; - }; - CA2FB0021889939300BCAEF5 /* Pie */ = { - isa = PBXGroup; - children = ( - CA2FAFEB1889937800BCAEF5 /* M13ProgressViewPie.h */, - CA2FAFEC1889937800BCAEF5 /* M13ProgressViewPie.m */, - ); - name = Pie; - sourceTree = ""; - }; - CA2FB0031889939F00BCAEF5 /* Image */ = { - isa = PBXGroup; - children = ( - CA2FAFE91889937800BCAEF5 /* M13ProgressViewImage.h */, - CA2FAFEA1889937800BCAEF5 /* M13ProgressViewImage.m */, - ); - name = Image; - sourceTree = ""; - }; - CA2FB004188993A500BCAEF5 /* Ring */ = { - isa = PBXGroup; - children = ( - CA2FAFED1889937800BCAEF5 /* M13ProgressViewRing.h */, - CA2FAFEE1889937800BCAEF5 /* M13ProgressViewRing.m */, - ); - name = Ring; - sourceTree = ""; - }; - CA2FB005188993AA00BCAEF5 /* Segmented Bar */ = { - isa = PBXGroup; - children = ( - CA2FAFEF1889937800BCAEF5 /* M13ProgressViewSegmentedBar.h */, - CA2FAFF01889937800BCAEF5 /* M13ProgressViewSegmentedBar.m */, - ); - name = "Segmented Bar"; - sourceTree = ""; - }; - CA2FB006188993B300BCAEF5 /* Segmented Ring */ = { - isa = PBXGroup; - children = ( - CA2FAFF11889937800BCAEF5 /* M13ProgressViewSegmentedRing.h */, - CA2FAFF21889937800BCAEF5 /* M13ProgressViewSegmentedRing.m */, - ); - name = "Segmented Ring"; - sourceTree = ""; - }; - CA2FB007188993BF00BCAEF5 /* Striped Bar */ = { - isa = PBXGroup; - children = ( - CA2FAFF31889937800BCAEF5 /* M13ProgressViewStripedBar.h */, - CA2FAFF41889937800BCAEF5 /* M13ProgressViewStripedBar.m */, - ); - name = "Striped Bar"; - sourceTree = ""; - }; CA2FB02F1889947500BCAEF5 /* Example View Controllers */ = { isa = PBXGroup; children = ( @@ -560,15 +327,6 @@ name = Images; sourceTree = ""; }; - CA412AEA18D1F1A400FCB7CC /* Radiative */ = { - isa = PBXGroup; - children = ( - CA412B0018D252FE00FCB7CC /* M13ProgressViewRadiative.h */, - CA412B0118D252FE00FCB7CC /* M13ProgressViewRadiative.m */, - ); - name = Radiative; - sourceTree = ""; - }; CA412B0618D2655500FCB7CC /* Finished */ = { isa = PBXGroup; children = ( @@ -608,24 +366,13 @@ name = Finished; sourceTree = ""; }; - CA66890018CBBCB800827C48 /* Metro */ = { - isa = PBXGroup; - children = ( - CA66890118CBBD1400827C48 /* M13ProgressViewMetro.h */, - CA66890218CBBD1400827C48 /* M13ProgressViewMetro.m */, - CA1C945C18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.h */, - CA1C945D18CCF59500B469BF /* M13ProgressViewMetroDotPolygon.m */, - ); - name = Metro; - sourceTree = ""; - }; - CA6F31C4190EA898008D1E64 /* Letterpress */ = { + F7CD63C2B9A0AB31F9811961 /* Pods */ = { isa = PBXGroup; children = ( - CA6F31C1190EA88D008D1E64 /* M13ProgressViewLetterpress.h */, - CA6F31C2190EA88D008D1E64 /* M13ProgressViewLetterpress.m */, + 00D792F975B8E7AC1C5DE5B0 /* Pods-M13ProgressSuiteDemo.debug.xcconfig */, + 6568F0733E1C864455A4CCA2 /* Pods-M13ProgressSuiteDemo.release.xcconfig */, ); - name = Letterpress; + path = Pods; sourceTree = ""; }; FB2A7BDD1B793E5600FE4E4A /* M13ProgressSuiteFramework */ = { @@ -653,24 +400,6 @@ buildActionMask = 2147483647; files = ( FB2A7BE11B793E5600FE4E4A /* M13ProgressSuite.h in Headers */, - FB2A7BFC1B793E6B00FE4E4A /* M13ProgressView.h in Headers */, - FB2A7BFE1B793E6B00FE4E4A /* M13ProgressViewBar.h in Headers */, - FB2A7C001B793E6B00FE4E4A /* M13ProgressViewBorderedBar.h in Headers */, - FB2A7C021B793E6B00FE4E4A /* M13ProgressViewFilteredImage.h in Headers */, - FB2A7C041B793E6B00FE4E4A /* M13ProgressViewImage.h in Headers */, - FB2A7C061B793E6B00FE4E4A /* M13ProgressViewPie.h in Headers */, - FB2A7C081B793E6B00FE4E4A /* M13ProgressViewRing.h in Headers */, - FB2A7C0A1B793E6B00FE4E4A /* M13ProgressViewSegmentedBar.h in Headers */, - FB2A7C0C1B793E6B00FE4E4A /* M13ProgressViewSegmentedRing.h in Headers */, - FB2A7C0E1B793E6B00FE4E4A /* M13ProgressViewStripedBar.h in Headers */, - FB2A7C101B793E6B00FE4E4A /* M13ProgressViewMetro.h in Headers */, - FB2A7C121B793E6B00FE4E4A /* M13ProgressViewMetroDotPolygon.h in Headers */, - FB2A7C141B793E6B00FE4E4A /* M13ProgressViewRadiative.h in Headers */, - FB2A7C161B793E6B00FE4E4A /* M13ProgressViewLetterpress.h in Headers */, - FB2A7C181B793E6B00FE4E4A /* UIImage+ImageEffects.h in Headers */, - FB2A7C1A1B793E6B00FE4E4A /* M13ProgressHUD.h in Headers */, - FB2A7C1C1B793E6B00FE4E4A /* M13ProgressConsole.h in Headers */, - FB2A7C1E1B793E6B00FE4E4A /* UINavigationController+M13ProgressViewBar.h in Headers */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -701,15 +430,16 @@ isa = PBXNativeTarget; buildConfigurationList = CA2FAFCD1889907300BCAEF5 /* Build configuration list for PBXNativeTarget "M13ProgressSuiteDemo" */; buildPhases = ( + 073E8EBC415ABB0629091437 /* [CP] Check Pods Manifest.lock */, CA2FAF941889907300BCAEF5 /* Sources */, CA2FAF951889907300BCAEF5 /* Frameworks */, CA2FAF961889907300BCAEF5 /* Resources */, FB2A7BFA1B793E5600FE4E4A /* Embed Frameworks */, + F5B0C307639EB8ABC2A4133B /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); dependencies = ( - FB2A7BF21B793E5600FE4E4A /* PBXTargetDependency */, ); name = M13ProgressSuiteDemo; productName = M13ProgressSuite; @@ -837,6 +567,28 @@ /* End PBXResourcesBuildPhase section */ /* Begin PBXShellScriptBuildPhase section */ + 073E8EBC415ABB0629091437 /* [CP] Check Pods Manifest.lock */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + ); + inputPaths = ( + "${PODS_PODFILE_DIR_PATH}/Podfile.lock", + "${PODS_ROOT}/Manifest.lock", + ); + name = "[CP] Check Pods Manifest.lock"; + outputFileListPaths = ( + ); + outputPaths = ( + "$(DERIVED_FILE_DIR)/Pods-M13ProgressSuiteDemo-checkManifestLockResult.txt", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; + showEnvVarsInLog = 0; + }; CA2FB0471889988600BCAEF5 /* ShellScript */ = { isa = PBXShellScriptBuildPhase; buildActionMask = 2147483647; @@ -850,6 +602,23 @@ shellPath = /bin/sh; shellScript = "#appledoc Xcode script\n# Start constants\ncompany=\"Marxon13 Productions (Brandon McQuilkin)\";\ncompanyID=\"com.BrandonMcQuilkin\";\ncompanyURL=\"http://marxon13.com\";\ntarget=\"iphoneos\";\noutputPath=\"/Users/Brandon/Documents/Development/Github/Marxon13/M13ProgressSuite/Documentation\";\n# End constants\n/usr/local/bin/appledoc \\\n--project-name \"${PROJECT_NAME}\" \\\n--project-company \"${company}\" \\\n--company-id \"${companyID}\" \\\n--docset-atom-filename \"${company}.atom\" \\\n--docset-feed-url \"${companyURL}/${company}/%DOCSETATOMFILENAME\" \\\n--docset-package-url \"${companyURL}/${company}/%DOCSETPACKAGEFILENAME\" \\\n--docset-fallback-url \"${companyURL}/${company}\" \\\n--output \"${outputPath}\" \\\n--publish-docset \\\n--docset-platform-family \"${target}\" \\\n--logformat xcode \\\n--keep-intermediate-files \\\n--no-repeat-first-par \\\n--no-warn-invalid-crossref \\\n--exit-threshold 2 \\\n\"${PROJECT_DIR}\""; }; + F5B0C307639EB8ABC2A4133B /* [CP] Embed Pods Frameworks */ = { + isa = PBXShellScriptBuildPhase; + buildActionMask = 2147483647; + files = ( + ); + inputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-M13ProgressSuiteDemo/Pods-M13ProgressSuiteDemo-frameworks-${CONFIGURATION}-input-files.xcfilelist", + ); + name = "[CP] Embed Pods Frameworks"; + outputFileListPaths = ( + "${PODS_ROOT}/Target Support Files/Pods-M13ProgressSuiteDemo/Pods-M13ProgressSuiteDemo-frameworks-${CONFIGURATION}-output-files.xcfilelist", + ); + runOnlyForDeploymentPostprocessing = 0; + shellPath = /bin/sh; + shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-M13ProgressSuiteDemo/Pods-M13ProgressSuiteDemo-frameworks.sh\"\n"; + showEnvVarsInLog = 0; + }; /* End PBXShellScriptBuildPhase section */ /* Begin PBXSourcesBuildPhase section */ @@ -857,7 +626,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 84390FBF253723C4000E2704 /* UIApplication+M13ProgressSuite.m in Sources */, 84390FC0253723C4000E2704 /* SampleViewController.m in Sources */, 84390FC1253723C4000E2704 /* LetterpressViewController.m in Sources */, 84390FC2253723C4000E2704 /* BarViewController.m in Sources */, @@ -883,7 +651,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - 62BB86011C87300F0019306A /* UIApplication+M13ProgressSuite.m in Sources */, CA2FB02B1889946F00BCAEF5 /* SampleViewController.m in Sources */, CA6F31C7190EBF11008D1E64 /* LetterpressViewController.m in Sources */, CA2FB0221889946F00BCAEF5 /* BarViewController.m in Sources */, @@ -917,24 +684,6 @@ isa = PBXSourcesBuildPhase; buildActionMask = 2147483647; files = ( - FB2A7BFD1B793E6B00FE4E4A /* M13ProgressView.m in Sources */, - FB2A7BFF1B793E6B00FE4E4A /* M13ProgressViewBar.m in Sources */, - FB2A7C011B793E6B00FE4E4A /* M13ProgressViewBorderedBar.m in Sources */, - FB2A7C031B793E6B00FE4E4A /* M13ProgressViewFilteredImage.m in Sources */, - FB2A7C051B793E6B00FE4E4A /* M13ProgressViewImage.m in Sources */, - FB2A7C071B793E6B00FE4E4A /* M13ProgressViewPie.m in Sources */, - FB2A7C091B793E6B00FE4E4A /* M13ProgressViewRing.m in Sources */, - FB2A7C0B1B793E6B00FE4E4A /* M13ProgressViewSegmentedBar.m in Sources */, - FB2A7C0D1B793E6B00FE4E4A /* M13ProgressViewSegmentedRing.m in Sources */, - FB2A7C0F1B793E6B00FE4E4A /* M13ProgressViewStripedBar.m in Sources */, - FB2A7C111B793E6B00FE4E4A /* M13ProgressViewMetro.m in Sources */, - FB2A7C131B793E6B00FE4E4A /* M13ProgressViewMetroDotPolygon.m in Sources */, - FB2A7C151B793E6B00FE4E4A /* M13ProgressViewRadiative.m in Sources */, - FB2A7C171B793E6B00FE4E4A /* M13ProgressViewLetterpress.m in Sources */, - FB2A7C191B793E6B00FE4E4A /* UIImage+ImageEffects.m in Sources */, - FB2A7C1B1B793E6B00FE4E4A /* M13ProgressHUD.m in Sources */, - FB2A7C1D1B793E6B00FE4E4A /* M13ProgressConsole.m in Sources */, - FB2A7C1F1B793E6B00FE4E4A /* UINavigationController+M13ProgressViewBar.m in Sources */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -946,11 +695,6 @@ target = CA2FAF971889907300BCAEF5 /* M13ProgressSuiteDemo */; targetProxy = CA2FAFC11889907300BCAEF5 /* PBXContainerItemProxy */; }; - FB2A7BF21B793E5600FE4E4A /* PBXTargetDependency */ = { - isa = PBXTargetDependency; - target = FB2A7BDB1B793E5600FE4E4A /* M13ProgressSuiteFramework */; - targetProxy = FB2A7BF11B793E5600FE4E4A /* PBXContainerItemProxy */; - }; /* End PBXTargetDependency section */ /* Begin PBXVariantGroup section */ @@ -997,6 +741,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1015,6 +760,7 @@ GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1100,12 +846,14 @@ }; CA2FAFCE1889907300BCAEF5 /* Debug */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 00D792F975B8E7AC1C5DE5B0 /* Pods-M13ProgressSuiteDemo.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1118,12 +866,14 @@ }; CA2FAFCF1889907300BCAEF5 /* Release */ = { isa = XCBuildConfiguration; + baseConfigurationReference = 6568F0733E1C864455A4CCA2 /* Pods-M13ProgressSuiteDemo.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; ASSETCATALOG_COMPILER_LAUNCHIMAGE_NAME = LaunchImage; GCC_PRECOMPILE_PREFIX_HEADER = YES; GCC_PREFIX_HEADER = "M13ProgressSuite/M13ProgressSuite-Prefix.pch"; INFOPLIST_FILE = "M13ProgressSuite/M13ProgressSuite-Info.plist"; + IPHONEOS_DEPLOYMENT_TARGET = 9.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", diff --git a/Package.swift b/Package.swift index cc9f1d8..4613479 100644 --- a/Package.swift +++ b/Package.swift @@ -18,14 +18,14 @@ let package = Package( .target( name: "M13ProgressSuite", path: "Classes", - publicHeadersPath: "", - cSettings: [ - .headerSearchPath("Application"), - .headerSearchPath("Console"), - .headerSearchPath("HUD"), - .headerSearchPath("NavigationController"), - .headerSearchPath("ProgressViews"), - ] + sources: [ + "Application", + "Console", + "HUD", + "NavigationController", + "ProgressViews", + ], + publicHeadersPath: "" ), ] ) diff --git a/Podfile b/Podfile new file mode 100644 index 0000000..9382496 --- /dev/null +++ b/Podfile @@ -0,0 +1,10 @@ +source 'https://github.com/CocoaPods/Specs.git' + +platform :ios, '9.0' +install! 'cocoapods', :deterministic_uuids => false +use_frameworks! +inhibit_all_warnings! + +target 'M13ProgressSuiteDemo' do + pod 'M13ProgressSuite', :path => '.', :inhibit_warnings => false +end From e194a0fe14d46468c16bc210215f8533048a97a2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez?= Date: Thu, 15 Oct 2020 08:41:57 +0200 Subject: [PATCH 05/12] Update gitignore --- .gitignore | 82 ++++++++----------- .../contents.xcworkspacedata | 13 +++ Podfile.lock | 16 ++++ 3 files changed, 64 insertions(+), 47 deletions(-) create mode 100644 M13ProgressSuite.xcworkspace/contents.xcworkspacedata create mode 100644 Podfile.lock diff --git a/.gitignore b/.gitignore index a0ad350..04f93e8 100644 --- a/.gitignore +++ b/.gitignore @@ -1,63 +1,51 @@ -##### -# OS X temporary files that should never be committed -.DS_Store -*.swp -*.lock -profile - -#### -# Xcode temporary files that should never be committed -*~.nib +### Xcode ### +build +*.xcodeproj/* +!*.xcodeproj/project.pbxproj +!*.xcworkspace/contents.xcworkspacedata -#### -# Xcode build files -DerivedData/ +## Build generated build/ -Builds/ +DerivedData/ -##### -# Xcode private settings (window sizes, bookmarks, breakpoints, custom executables, smart groups) +## Various settings *.pbxuser -*.mode1v3 -*.mode2v3 -*.perspectivev3 !default.pbxuser +*.mode1v3 !default.mode1v3 +*.mode2v3 !default.mode2v3 +*.perspectivev3 !default.perspectivev3 +xcuserdata/ +Pods/ -#### -# Xcode 4 - semi-personal settings, often included in workspaces -xcuserdata +## Other +*.moved-aside +*.xccheckout +*.xcscmblueprint -#### -# XCode 4 workspaces - more detailed -!xcshareddata -!default.xcworkspace -*.xcworkspacedata +## Obj-C/Swift specific +*.hmap +*.ipa -#### -# XCode 4 build-schemes -!xcschemes +# Carthage +# +# Add this line if you want to avoid checking in source code from Carthage dependencies. +# Carthage/Checkouts -#### -# Xcode 4 - Deprecated classes -*.moved-aside +Carthage/Build -#### -# Xcode 5 - Source Control files -*.xccheckout +# fastlane +# +# It is recommended to not store the screenshots in the git repo. Instead, use fastlane to re-generate the +# screenshots whenever they are needed. +# For more information about the recommended setup visit: +# https://github.com/fastlane/fastlane/blob/master/docs/Gitignore.md -#### -# AppCode -.idea/ +fastlane/report.xml +fastlane/screenshots -#### -# Other Xcode files -profile -*.hmap -*.ipa +#macOS +.DS_Store -#### -# CocoaPods -Pods/ diff --git a/M13ProgressSuite.xcworkspace/contents.xcworkspacedata b/M13ProgressSuite.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..e5a7f17 --- /dev/null +++ b/M13ProgressSuite.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,13 @@ + + + + + + + + + diff --git a/Podfile.lock b/Podfile.lock new file mode 100644 index 0000000..7044c11 --- /dev/null +++ b/Podfile.lock @@ -0,0 +1,16 @@ +PODS: + - M13ProgressSuite (1.2.9) + +DEPENDENCIES: + - M13ProgressSuite (from `.`) + +EXTERNAL SOURCES: + M13ProgressSuite: + :path: "." + +SPEC CHECKSUMS: + M13ProgressSuite: ea9f7263e73e9215e6849dfa54e29ee0ad6a145c + +PODFILE CHECKSUM: 368c1b6119851027ce695d080c0952f824e3d347 + +COCOAPODS: 1.9.3 From 1541da0aa367f98967576bfc1df6bba41cfa3871 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Fern=C3=A1ndez?= Date: Thu, 15 Oct 2020 10:43:22 +0200 Subject: [PATCH 06/12] Fix imports problems --- .../package.xcworkspace/contents.xcworkspacedata | 7 +++++++ Classes/M13ProgressConsole.h | 1 + Classes/M13ProgressHUD.h | 1 + Classes/M13ProgressView.h | 1 + Classes/M13ProgressViewBar.h | 1 + Classes/M13ProgressViewBorderedBar.h | 1 + Classes/M13ProgressViewFilteredImage.h | 1 + Classes/M13ProgressViewImage.h | 1 + Classes/M13ProgressViewLetterpress.h | 1 + Classes/M13ProgressViewMetro.h | 1 + Classes/M13ProgressViewMetroDotPolygon.h | 1 + Classes/M13ProgressViewPie.h | 1 + Classes/M13ProgressViewRadiative.h | 1 + Classes/M13ProgressViewRing.h | 1 + Classes/M13ProgressViewSegmentedBar.h | 1 + Classes/M13ProgressViewSegmentedRing.h | 1 + Classes/M13ProgressViewStripedBar.h | 1 + Classes/UIApplication+M13ProgressSuite.h | 1 + Classes/UIImage+ImageEffects.h | 1 + .../UINavigationController+M13ProgressViewBar.h | 1 + M13ProgressSuite/BarViewController.h | 3 +-- M13ProgressSuite/BorderedBarViewController.h | 2 +- M13ProgressSuite/ConsoleViewController.h | 2 +- M13ProgressSuite/FilteredImageViewController.h | 2 +- M13ProgressSuite/ImageViewController.h | 2 +- M13ProgressSuite/LetterpressViewController.h | 2 +- ...ssViewBarNavigationControllerViewController.m | 2 +- M13ProgressSuite/MetroViewController.h | 2 +- M13ProgressSuite/MetroViewController.m | 2 +- M13ProgressSuite/PieViewController.h | 2 +- M13ProgressSuite/ProgressHUDViewController.m | 4 +--- M13ProgressSuite/RadiativeViewController.h | 2 +- M13ProgressSuite/RingViewController.h | 2 +- M13ProgressSuite/SegmentedBarViewController.h | 2 +- M13ProgressSuite/SegmentedRingViewController.h | 2 +- M13ProgressSuite/StripedBarViewController.h | 2 +- Package.swift | 16 ++++++++-------- 37 files changed, 50 insertions(+), 27 deletions(-) create mode 100644 .swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata create mode 120000 Classes/M13ProgressConsole.h create mode 120000 Classes/M13ProgressHUD.h create mode 120000 Classes/M13ProgressView.h create mode 120000 Classes/M13ProgressViewBar.h create mode 120000 Classes/M13ProgressViewBorderedBar.h create mode 120000 Classes/M13ProgressViewFilteredImage.h create mode 120000 Classes/M13ProgressViewImage.h create mode 120000 Classes/M13ProgressViewLetterpress.h create mode 120000 Classes/M13ProgressViewMetro.h create mode 120000 Classes/M13ProgressViewMetroDotPolygon.h create mode 120000 Classes/M13ProgressViewPie.h create mode 120000 Classes/M13ProgressViewRadiative.h create mode 120000 Classes/M13ProgressViewRing.h create mode 120000 Classes/M13ProgressViewSegmentedBar.h create mode 120000 Classes/M13ProgressViewSegmentedRing.h create mode 120000 Classes/M13ProgressViewStripedBar.h create mode 120000 Classes/UIApplication+M13ProgressSuite.h create mode 120000 Classes/UIImage+ImageEffects.h create mode 120000 Classes/UINavigationController+M13ProgressViewBar.h diff --git a/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata new file mode 100644 index 0000000..919434a --- /dev/null +++ b/.swiftpm/xcode/package.xcworkspace/contents.xcworkspacedata @@ -0,0 +1,7 @@ + + + + + diff --git a/Classes/M13ProgressConsole.h b/Classes/M13ProgressConsole.h new file mode 120000 index 0000000..d8f4713 --- /dev/null +++ b/Classes/M13ProgressConsole.h @@ -0,0 +1 @@ +Console/M13ProgressConsole.h \ No newline at end of file diff --git a/Classes/M13ProgressHUD.h b/Classes/M13ProgressHUD.h new file mode 120000 index 0000000..e7b570a --- /dev/null +++ b/Classes/M13ProgressHUD.h @@ -0,0 +1 @@ +HUD/M13ProgressHUD.h \ No newline at end of file diff --git a/Classes/M13ProgressView.h b/Classes/M13ProgressView.h new file mode 120000 index 0000000..622a8d0 --- /dev/null +++ b/Classes/M13ProgressView.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressView.h \ No newline at end of file diff --git a/Classes/M13ProgressViewBar.h b/Classes/M13ProgressViewBar.h new file mode 120000 index 0000000..9e9330b --- /dev/null +++ b/Classes/M13ProgressViewBar.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewBar.h \ No newline at end of file diff --git a/Classes/M13ProgressViewBorderedBar.h b/Classes/M13ProgressViewBorderedBar.h new file mode 120000 index 0000000..0e24e8e --- /dev/null +++ b/Classes/M13ProgressViewBorderedBar.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewBorderedBar.h \ No newline at end of file diff --git a/Classes/M13ProgressViewFilteredImage.h b/Classes/M13ProgressViewFilteredImage.h new file mode 120000 index 0000000..c095b3a --- /dev/null +++ b/Classes/M13ProgressViewFilteredImage.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewFilteredImage.h \ No newline at end of file diff --git a/Classes/M13ProgressViewImage.h b/Classes/M13ProgressViewImage.h new file mode 120000 index 0000000..b4d86d0 --- /dev/null +++ b/Classes/M13ProgressViewImage.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewImage.h \ No newline at end of file diff --git a/Classes/M13ProgressViewLetterpress.h b/Classes/M13ProgressViewLetterpress.h new file mode 120000 index 0000000..44141d8 --- /dev/null +++ b/Classes/M13ProgressViewLetterpress.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewLetterpress.h \ No newline at end of file diff --git a/Classes/M13ProgressViewMetro.h b/Classes/M13ProgressViewMetro.h new file mode 120000 index 0000000..4f82429 --- /dev/null +++ b/Classes/M13ProgressViewMetro.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewMetro.h \ No newline at end of file diff --git a/Classes/M13ProgressViewMetroDotPolygon.h b/Classes/M13ProgressViewMetroDotPolygon.h new file mode 120000 index 0000000..7864a6e --- /dev/null +++ b/Classes/M13ProgressViewMetroDotPolygon.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewMetroDotPolygon.h \ No newline at end of file diff --git a/Classes/M13ProgressViewPie.h b/Classes/M13ProgressViewPie.h new file mode 120000 index 0000000..eb5bf75 --- /dev/null +++ b/Classes/M13ProgressViewPie.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewPie.h \ No newline at end of file diff --git a/Classes/M13ProgressViewRadiative.h b/Classes/M13ProgressViewRadiative.h new file mode 120000 index 0000000..b2c8bb4 --- /dev/null +++ b/Classes/M13ProgressViewRadiative.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewRadiative.h \ No newline at end of file diff --git a/Classes/M13ProgressViewRing.h b/Classes/M13ProgressViewRing.h new file mode 120000 index 0000000..8721108 --- /dev/null +++ b/Classes/M13ProgressViewRing.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewRing.h \ No newline at end of file diff --git a/Classes/M13ProgressViewSegmentedBar.h b/Classes/M13ProgressViewSegmentedBar.h new file mode 120000 index 0000000..e6673eb --- /dev/null +++ b/Classes/M13ProgressViewSegmentedBar.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewSegmentedBar.h \ No newline at end of file diff --git a/Classes/M13ProgressViewSegmentedRing.h b/Classes/M13ProgressViewSegmentedRing.h new file mode 120000 index 0000000..2fba570 --- /dev/null +++ b/Classes/M13ProgressViewSegmentedRing.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewSegmentedRing.h \ No newline at end of file diff --git a/Classes/M13ProgressViewStripedBar.h b/Classes/M13ProgressViewStripedBar.h new file mode 120000 index 0000000..c184276 --- /dev/null +++ b/Classes/M13ProgressViewStripedBar.h @@ -0,0 +1 @@ +ProgressViews/M13ProgressViewStripedBar.h \ No newline at end of file diff --git a/Classes/UIApplication+M13ProgressSuite.h b/Classes/UIApplication+M13ProgressSuite.h new file mode 120000 index 0000000..d5694aa --- /dev/null +++ b/Classes/UIApplication+M13ProgressSuite.h @@ -0,0 +1 @@ +Application/UIApplication+M13ProgressSuite.h \ No newline at end of file diff --git a/Classes/UIImage+ImageEffects.h b/Classes/UIImage+ImageEffects.h new file mode 120000 index 0000000..14d8e91 --- /dev/null +++ b/Classes/UIImage+ImageEffects.h @@ -0,0 +1 @@ +HUD/UIImage+ImageEffects.h \ No newline at end of file diff --git a/Classes/UINavigationController+M13ProgressViewBar.h b/Classes/UINavigationController+M13ProgressViewBar.h new file mode 120000 index 0000000..2944342 --- /dev/null +++ b/Classes/UINavigationController+M13ProgressViewBar.h @@ -0,0 +1 @@ +NavigationController/UINavigationController+M13ProgressViewBar.h \ No newline at end of file diff --git a/M13ProgressSuite/BarViewController.h b/M13ProgressSuite/BarViewController.h index b6f0c73..4302559 100644 --- a/M13ProgressSuite/BarViewController.h +++ b/M13ProgressSuite/BarViewController.h @@ -12,8 +12,7 @@ */ #import - -#import "M13ProgressViewBar.h" +@import M13ProgressSuite; @interface BarViewController : UIViewController diff --git a/M13ProgressSuite/BorderedBarViewController.h b/M13ProgressSuite/BorderedBarViewController.h index ea9f21c..4b4b197 100644 --- a/M13ProgressSuite/BorderedBarViewController.h +++ b/M13ProgressSuite/BorderedBarViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewBorderedBar.h" +@import M13ProgressSuite; @interface BorderedBarViewController : UIViewController diff --git a/M13ProgressSuite/ConsoleViewController.h b/M13ProgressSuite/ConsoleViewController.h index 5a1504b..06ac226 100644 --- a/M13ProgressSuite/ConsoleViewController.h +++ b/M13ProgressSuite/ConsoleViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressConsole.h" +@import M13ProgressSuite; @interface ConsoleViewController : UIViewController diff --git a/M13ProgressSuite/FilteredImageViewController.h b/M13ProgressSuite/FilteredImageViewController.h index fecb329..6cf1b21 100644 --- a/M13ProgressSuite/FilteredImageViewController.h +++ b/M13ProgressSuite/FilteredImageViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewFilteredImage.h" +@import M13ProgressSuite; @interface FilteredImageViewController : UIViewController diff --git a/M13ProgressSuite/ImageViewController.h b/M13ProgressSuite/ImageViewController.h index b9597ec..09b6169 100644 --- a/M13ProgressSuite/ImageViewController.h +++ b/M13ProgressSuite/ImageViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewImage.h" +@import M13ProgressSuite; @interface ImageViewController : UIViewController diff --git a/M13ProgressSuite/LetterpressViewController.h b/M13ProgressSuite/LetterpressViewController.h index 94be4a0..6e954b3 100644 --- a/M13ProgressSuite/LetterpressViewController.h +++ b/M13ProgressSuite/LetterpressViewController.h @@ -7,7 +7,7 @@ // #import -#import "M13ProgressViewLetterpress.h" +@import M13ProgressSuite; @interface LetterpressViewController : UIViewController diff --git a/M13ProgressSuite/M13ProgressViewBarNavigationControllerViewController.m b/M13ProgressSuite/M13ProgressViewBarNavigationControllerViewController.m index e3b5b6d..ceedc69 100644 --- a/M13ProgressSuite/M13ProgressViewBarNavigationControllerViewController.m +++ b/M13ProgressSuite/M13ProgressViewBarNavigationControllerViewController.m @@ -12,7 +12,7 @@ */ #import "M13ProgressViewBarNavigationControllerViewController.h" -#import "UINavigationController+M13ProgressViewBar.h" +@import M13ProgressSuite; @interface M13ProgressViewBarNavigationControllerViewController () diff --git a/M13ProgressSuite/MetroViewController.h b/M13ProgressSuite/MetroViewController.h index 74bd748..ef30bf3 100644 --- a/M13ProgressSuite/MetroViewController.h +++ b/M13ProgressSuite/MetroViewController.h @@ -7,7 +7,7 @@ // #import -#import "M13ProgressViewMetro.h" +@import M13ProgressSuite; @interface MetroViewController : UIViewController diff --git a/M13ProgressSuite/MetroViewController.m b/M13ProgressSuite/MetroViewController.m index fdbd312..256ebe6 100644 --- a/M13ProgressSuite/MetroViewController.m +++ b/M13ProgressSuite/MetroViewController.m @@ -7,7 +7,7 @@ // #import "MetroViewController.h" -#import "M13ProgressViewMetroDotPolygon.h" +@import M13ProgressSuite; @interface MetroViewController () diff --git a/M13ProgressSuite/PieViewController.h b/M13ProgressSuite/PieViewController.h index 93634ac..650b0aa 100644 --- a/M13ProgressSuite/PieViewController.h +++ b/M13ProgressSuite/PieViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewPie.h" +@import M13ProgressSuite; @interface PieViewController : UIViewController diff --git a/M13ProgressSuite/ProgressHUDViewController.m b/M13ProgressSuite/ProgressHUDViewController.m index 63753c1..10c671c 100644 --- a/M13ProgressSuite/ProgressHUDViewController.m +++ b/M13ProgressSuite/ProgressHUDViewController.m @@ -12,10 +12,8 @@ */ #import "ProgressHUDViewController.h" -#import "M13ProgressHUD.h" -#import "M13ProgressViewRing.h" #import "AppDelegate.h" -#import "UIApplication+M13ProgressSuite.h" +@import M13ProgressSuite; @interface ProgressHUDViewController () diff --git a/M13ProgressSuite/RadiativeViewController.h b/M13ProgressSuite/RadiativeViewController.h index c65768a..8fb6c80 100644 --- a/M13ProgressSuite/RadiativeViewController.h +++ b/M13ProgressSuite/RadiativeViewController.h @@ -7,7 +7,7 @@ // #import -#import "M13ProgressViewRadiative.h" +@import M13ProgressSuite; @interface RadiativeViewController : UIViewController diff --git a/M13ProgressSuite/RingViewController.h b/M13ProgressSuite/RingViewController.h index 4c5fbf4..1301762 100644 --- a/M13ProgressSuite/RingViewController.h +++ b/M13ProgressSuite/RingViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewRing.h" +@import M13ProgressSuite; @interface RingViewController : UIViewController diff --git a/M13ProgressSuite/SegmentedBarViewController.h b/M13ProgressSuite/SegmentedBarViewController.h index 4a07fd5..377ae9d 100644 --- a/M13ProgressSuite/SegmentedBarViewController.h +++ b/M13ProgressSuite/SegmentedBarViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewSegmentedBar.h" +@import M13ProgressSuite; @interface SegmentedBarViewController : UIViewController diff --git a/M13ProgressSuite/SegmentedRingViewController.h b/M13ProgressSuite/SegmentedRingViewController.h index b9d6a7e..0d5d0a8 100644 --- a/M13ProgressSuite/SegmentedRingViewController.h +++ b/M13ProgressSuite/SegmentedRingViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewSegmentedRing.h" +@import M13ProgressSuite; @interface SegmentedRingViewController : UIViewController diff --git a/M13ProgressSuite/StripedBarViewController.h b/M13ProgressSuite/StripedBarViewController.h index fd4ea7b..c8c562c 100644 --- a/M13ProgressSuite/StripedBarViewController.h +++ b/M13ProgressSuite/StripedBarViewController.h @@ -12,7 +12,7 @@ */ #import -#import "M13ProgressViewStripedBar.h" +@import M13ProgressSuite; @interface StripedBarViewController : UIViewController diff --git a/Package.swift b/Package.swift index 4613479..53ebedd 100644 --- a/Package.swift +++ b/Package.swift @@ -18,14 +18,14 @@ let package = Package( .target( name: "M13ProgressSuite", path: "Classes", - sources: [ - "Application", - "Console", - "HUD", - "NavigationController", - "ProgressViews", - ], - publicHeadersPath: "" + publicHeadersPath: "", + cSettings: [ + .headerSearchPath("Application"), + .headerSearchPath("Console"), + .headerSearchPath("HUD"), + .headerSearchPath("NavigationController"), + .headerSearchPath("ProgressViews"), + ] ), ] ) From 3772e8f571aac6ed070d89927c02a0048cd1d3c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Fri, 30 Oct 2020 08:49:28 +0100 Subject: [PATCH 07/12] Add instalation section in readme --- README.md | 44 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 44 insertions(+) diff --git a/README.md b/README.md index e223b0d..80a3aed 100644 --- a/README.md +++ b/README.md @@ -4,6 +4,50 @@ M13ProgressSuite A set of classes used to display progress information to users on iOS. +Installation +------------ + +### CocoaPods + +Add to Podfile: + +``` bash +pod 'M13ProgressSuite' +``` + +### Swift Package Manager + +Add te dependency to your `Package.swift` and use in your target +``` swift +dependencies: [ + .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.0")) +] +``` + +Sample `Package.swift` + +``` swift +let package = Package( + name: "YourDependency", + products: [ + .library( + name: "YourDependency", + targets: ["YourDependency"]) + ], + dependencies: [ + .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.0")), + ], + targets: [ + .target( + name: "YourDependency", + dependencies: [ + "M13ProgressSuite" + ] + ), + ] +) +``` + Includes: --------- * A interchangeable set of progress view of diffrent styles. All the progress views are based on the same superclass, allowing any of them to be switched with any other easily. From e053c97b313f1d6ebe0406f847bde584726d276d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Thu, 5 Nov 2020 10:03:35 +0100 Subject: [PATCH 08/12] Change version in podspec --- M13ProgressSuite.podspec | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/M13ProgressSuite.podspec b/M13ProgressSuite.podspec index dc5a4da..b3bd6c2 100644 --- a/M13ProgressSuite.podspec +++ b/M13ProgressSuite.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "M13ProgressSuite" - s.version = "1.2.9" + s.version = "1.3.0" s.summary = "A suite containing many tools to display progress information on iOS." s.description = <<-DESC @@ -27,7 +27,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI s.platform = :ios, '7.0' - s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "v1.2.9"} + s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "1.3.0"} s.source_files = 'Classes/*/*' From 82ceb39e335fb3f1186c6ad888d6aa70cbf19cc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Antonio=20Jesu=CC=81s=20Pallares=20Marti=CC=81n?= Date: Sat, 18 Sep 2021 17:46:00 +0200 Subject: [PATCH 09/12] fix: compilation issue in Xcode 13 --- Classes/HUD/M13ProgressHUD.m | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Classes/HUD/M13ProgressHUD.m b/Classes/HUD/M13ProgressHUD.m index 86dbabe..7ec4d1f 100644 --- a/Classes/HUD/M13ProgressHUD.m +++ b/Classes/HUD/M13ProgressHUD.m @@ -407,7 +407,7 @@ - (void)unregisterFromNotificationCenter { } - (void)deviceOrientationDidChange:(NSNotification *)notification { - UIDeviceOrientation deviceOrientation = [notification.object orientation]; + UIDeviceOrientation deviceOrientation = [(UIDevice *)notification.object orientation]; if (_shouldAutorotate && UIDeviceOrientationIsValidInterfaceOrientation(deviceOrientation)) { if (UIDeviceOrientationIsPortrait(deviceOrientation)) { From b58036c170add2282bc81a7ddd7886590288d626 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Thu, 23 Sep 2021 12:42:40 +0200 Subject: [PATCH 10/12] Change podspec version --- M13ProgressSuite.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/M13ProgressSuite.podspec b/M13ProgressSuite.podspec index b3bd6c2..dc0608e 100644 --- a/M13ProgressSuite.podspec +++ b/M13ProgressSuite.podspec @@ -27,7 +27,7 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI s.platform = :ios, '7.0' - s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "1.3.0"} + s.source = { :git => "https://github.com/Marxon13/M13ProgressSuite.git", :tag => "1.3.1"} s.source_files = 'Classes/*/*' From d1fea3ec3dc98c9a5ac728bb76538beb9516606e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Thu, 23 Sep 2021 12:45:27 +0200 Subject: [PATCH 11/12] Create changelog and update versions in README.md --- CHANGELOG.md | 5 +++++ README.md | 4 ++-- 2 files changed, 7 insertions(+), 2 deletions(-) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 0000000..1842ffa --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,5 @@ +## [1.3.1 Fix Xcode 13](https://github.com/SDOSLabs/M13ProgressSuite/tree/1.3.1) + +### Fix + +- Fix a compile error in Xcode 13 \ No newline at end of file diff --git a/README.md b/README.md index 80a3aed..7cf2171 100644 --- a/README.md +++ b/README.md @@ -20,7 +20,7 @@ pod 'M13ProgressSuite' Add te dependency to your `Package.swift` and use in your target ``` swift dependencies: [ - .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.0")) + .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.1")) ] ``` @@ -35,7 +35,7 @@ let package = Package( targets: ["YourDependency"]) ], dependencies: [ - .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.0")), + .package(url: "https://github.com/Marxon13/M13ProgressSuite.git", .upToNextMajor(from: "1.3.1")), ], targets: [ .target( From 6989209be199342ae4eeca5170367cd806712325 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rafael=20Ferna=CC=81ndez?= Date: Thu, 23 Sep 2021 12:46:59 +0200 Subject: [PATCH 12/12] Change podspec version --- M13ProgressSuite.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/M13ProgressSuite.podspec b/M13ProgressSuite.podspec index dc0608e..dac0b8f 100644 --- a/M13ProgressSuite.podspec +++ b/M13ProgressSuite.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "M13ProgressSuite" - s.version = "1.3.0" + s.version = "1.3.1" s.summary = "A suite containing many tools to display progress information on iOS." s.description = <<-DESC