From 3211b94abbb439fdea6198ed92a7e5cd8569f8ee Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 25 Aug 2018 20:29:44 -0500 Subject: [PATCH 1/2] Change "Cocoapods" to "CocoaPods" That seems to be the preferred capitalization. --- INSTALL.md | 2 +- iOS/README-iOS.md | 10 +++++----- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/INSTALL.md b/INSTALL.md index b197bc7..039643c 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -55,4 +55,4 @@ MinGW support is provided in the configure script. In addition, Visual C++ 6.0 ##iOS -You can integrate the STK in iOS projects either by using its iOS static library or Cocoapods. See the [iOS README file](iOS/README-iOS.md) for instructions. +You can integrate the STK in iOS projects either by using its iOS static library or CocoaPods. See the [iOS README file](iOS/README-iOS.md) for instructions. diff --git a/iOS/README-iOS.md b/iOS/README-iOS.md index cf52eb7..c9d68d3 100644 --- a/iOS/README-iOS.md +++ b/iOS/README-iOS.md @@ -2,13 +2,13 @@ This file contains instructions for integrating the STK in Xcode projects and so ## Setup -### If you have [Cocoapods](http://cocoapods.org/) +### If you have [CocoaPods](http://cocoapods.org/) 1. Add `pod 'STK', '~> 4.5'` to your Podfile. 1. Run `pod install` -### If you don't have Cocoapods +### If you don't have CocoaPods 1. Clone or [download][download_link] the STK into your project's directory. @@ -47,21 +47,21 @@ If this problem doesn't go away: 1. Follow step 1 from **Setup**, add `stk/include` to the *Header Search Paths*. If that doesn't solve it: -Install Cocoapods and use it to install the STK. It takes one minute and will make your life easier. Visit the [Cocoapods website](http://cocoapods.org/) for installation instructions. +Install CocoaPods and use it to install the STK. It takes one minute and will make your life easier. Visit the [CocoaPods website](http://cocoapods.org/) for installation instructions. ### FileRead::open: could not open or find file (../../rawwaves/filename.raw)! If you use a class that makes use of raw waves (such as `Mandolin`, `Wurley`, or `Rhodey`) you need to make sure that the STK's raw wave files are copied into your bundle and that the STK knows where they are. You'll know you need to if you get this runtime error: `FileRead::open: could not open or find file (../../rawwaves/filename.raw)!` -#### If you're using Cocoapods +#### If you're using CocoaPods Add this code before using a class that needs the raw waves: ```objective-c stk::Stk::setRawwavePath([[[NSBundle mainBundle] pathForResource:@"rawwaves" ofType:@"bundle"] UTF8String]); ``` -#### If you're not using Cocoapods +#### If you're not using CocoaPods 1. Open your project's settings, open the *Build Phases* tab. 1. In the *Copy Bundle Resources*, drag and drop **rawwaves.bundle** (it's located in **STK.xcodeproj**'s **Helpers** folder). From d1f08072f95c3f32209ea54535cec8276a7a85d8 Mon Sep 17 00:00:00 2001 From: Ryan Schmidt Date: Sat, 25 Aug 2018 20:31:01 -0500 Subject: [PATCH 2/2] Change "http://cocoapods.org/" to "https://cocoapods.org" Their web server enforces https now. --- iOS/README-iOS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/iOS/README-iOS.md b/iOS/README-iOS.md index c9d68d3..692ed5c 100644 --- a/iOS/README-iOS.md +++ b/iOS/README-iOS.md @@ -2,7 +2,7 @@ This file contains instructions for integrating the STK in Xcode projects and so ## Setup -### If you have [CocoaPods](http://cocoapods.org/) +### If you have [CocoaPods](https://cocoapods.org) 1. Add `pod 'STK', '~> 4.5'` to your Podfile. @@ -47,7 +47,7 @@ If this problem doesn't go away: 1. Follow step 1 from **Setup**, add `stk/include` to the *Header Search Paths*. If that doesn't solve it: -Install CocoaPods and use it to install the STK. It takes one minute and will make your life easier. Visit the [CocoaPods website](http://cocoapods.org/) for installation instructions. +Install CocoaPods and use it to install the STK. It takes one minute and will make your life easier. Visit the [CocoaPods website](https://cocoapods.org) for installation instructions. ### FileRead::open: could not open or find file (../../rawwaves/filename.raw)!