EXTERNAL LIBRARIES AND FRAMEWORKS

GOOGLE TOOLBOX
20140317 - older toolbox, only using the string additions
http://google-toolbox-for-mac.googlecode.com

SSTOOLKIT
used for base64 encoding

FLATUIKIT
used for the button in ProVersionViewController

KEYCHAIN
used to store the pro credentials

SPARKLE
used to compare versions


OTHER LIBRARIES HAVE ALL BEEN MIGRATED TO COCOAPODS

COCOAPODS = iOS9 issues

had to manually add the googleanalytics library in libraries
=> TODO remove and have cocoapods do it

had to switch bitcode to NO to avoid this error:
"does not contain bitcode. You must rebuild it with bitcode enabled (Xcode setting ENABLE_BITCODE), obtain an updated library from the vendor, or disable bitcode for this target"
=> TODO get updated library from Google
=> http://stackoverflow.com/questions/30848208/new-warnings-in-ios9


COCOAPODS = MANUAL UPDATES

//TODONOW - these need to be applied everytime the cocoapods are updates/reinstalled


COREPLOT
-> compile errors caused by a new version of cocoapods
can be fixed by changing these lines in coreplot:
https://github.com/IngmarStein/core-plot/commit/3413d8b7fa382921a918e7801a22e614a17b8bbf

JPBParallaxBlurViewController
-> customisations
-> think a
static CGFloat INVIS_DELTA = 50.0f;             // WAS 50
static CGFloat BLUR_DISTANCE = 100.0f;          // WAS 200
static CGFloat HEADER_HEIGHT = 60.0f;           // WAS 60
static CGFloat IMAGE_HEIGHT = 200.0f;           // WAS 320

ASMImageCropView
--> remove the grid in drawrect
--> change tolerance from 22 to 33
static const NSInteger sHandleTolerance = 22;

