From c148139fdd52c1e5244dd9f8cc8a370dc6ae98a5 Mon Sep 17 00:00:00 2001 From: Syed Haris Ali Date: Thu, 9 Jul 2015 13:46:38 -0700 Subject: [PATCH] bumped version to 1.0.1 --- EZAudio.podspec | 4 +--- README.md | 10 +++++----- 2 files changed, 6 insertions(+), 8 deletions(-) diff --git a/EZAudio.podspec b/EZAudio.podspec index d5033da3..e501f808 100644 --- a/EZAudio.podspec +++ b/EZAudio.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "EZAudio" - s.version = "1.0.0" + s.version = "1.0.1" s.summary = "A simple, intuitive audio framework for iOS and OSX useful for anyone doing audio processing and/or audio-based visualizations." s.homepage = "https://github.com/syedhali/EZAudio" s.screenshots = "https://s3-us-west-1.amazonaws.com/ezaudio-media/EZAudioSummary.png" @@ -14,7 +14,6 @@ Pod::Spec.new do |s| s.osx.frameworks = 'AudioToolbox','AudioUnit','CoreAudio','QuartzCore','OpenGL','GLKit' s.requires_arc = true; s.default_subspec = 'Full' - s.subspec 'Core' do |core| core.source_files = 'EZAudio/*.{h,m,c}' end @@ -23,5 +22,4 @@ Pod::Spec.new do |s| full.dependency 'TPCircularBuffer', '~> 0.0' full.dependency 'EZAudio/Core' end - end diff --git a/README.md b/README.md index 373e5df6..4878ae0a 100644 --- a/README.md +++ b/README.md @@ -102,7 +102,7 @@ Shows how to use the `EZMicrophone`, `EZOutput`, and the `EZAudioPlotGL` to pass Shows how to calculate the real-time FFT of the audio data coming from the `EZMicrophone` and the Accelerate framework. The audio data is plotted using two `EZAudioPlots` for the time and frequency displays. ### Documentation -The official documentation for EZAudio can be found here: http://cocoadocs.org/docsets/EZAudio/1.0.0/ +The official documentation for EZAudio can be found here: http://cocoadocs.org/docsets/EZAudio/1.0.1/
You can also generate the docset yourself using appledocs by running the appledocs on the EZAudio source folder. ##Getting Started @@ -133,14 +133,14 @@ To begin using `EZAudio` you must first make sure you have the proper build requ You can add EZAudio to your project in a few ways:

1.) The easiest way to use EZAudio is via
Cocoapods. Simply add EZAudio to your Podfile like so: ` -pod 'EZAudio', '~> 1.0.0' +pod 'EZAudio', '~> 1.0.1' ` ####Using EZAudio & The Amazing Audio Engine If you're also using the Amazing Audio Engine then use the `EZAudio/Core` subspec like so: ` -pod 'EZAudio/Core', '~> 1.0.0' +pod 'EZAudio/Core', '~> 1.0.1' ` 2.) Alternatively, you could clone or fork this repo and just drag and drop the source into your project. @@ -361,7 +361,7 @@ Anytime the `EZOutput` changes its device it will trigger the `EZOutputDelegate` #####Setting The Input Format -When providing audio data the `EZOutputDataSource` will expect you to fill out the AudioBufferList provided with whatever `inputFormat` that is set on the `EZOutput`. By default the input format is a stereo, non-interleaved, float format (see [defaultInputFormat](http://cocoadocs.org/docsets/EZAudio/1.0.0/Classes/EZOutput.html#//api/name/defaultInputFormat) for more information). If you're dealing with a different input format (which is typically the case), just set the `inputFormat` property. For instance: +When providing audio data the `EZOutputDataSource` will expect you to fill out the AudioBufferList provided with whatever `inputFormat` that is set on the `EZOutput`. By default the input format is a stereo, non-interleaved, float format (see [defaultInputFormat](http://cocoadocs.org/docsets/EZAudio/1.0.1/Classes/EZOutput.html#//api/name/defaultInputFormat) for more information). If you're dealing with a different input format (which is typically the case), just set the `inputFormat` property. For instance: ```objectivec // Set a mono, float format with a sample rate of 44.1 kHz AudioStreamBasicDescription monoFloatFormat = [EZAudioUtilities monoFloatFormatWithSampleRate:44100.0f]; @@ -776,7 +776,7 @@ float volume = [self.player volume]; ``` ####Notifications -The `EZAudioPlayer` provides the following notifications (as of 1.0.0): +The `EZAudioPlayer` provides the following notifications (as of 1.0.1): ```objectivec /** Notification that occurs whenever the EZAudioPlayer changes its `audioFile` property. Check the new value using the EZAudioPlayer's `audioFile` property.