diff --git a/Frameworks/Aviary/Headers/AFFeatherConstants.h b/Frameworks/Aviary/Headers/AFFeatherConstants.h index 77bbb18..bbdb9ab 100644 --- a/Frameworks/Aviary/Headers/AFFeatherConstants.h +++ b/Frameworks/Aviary/Headers/AFFeatherConstants.h @@ -15,6 +15,7 @@ extern NSString *const kAFCrop; extern NSString *const kAFDrawing; extern NSString *const kAFEffects; extern NSString *const kAFFlip; +extern NSString *const kAFMeme; extern NSString *const kAFRedeye; extern NSString *const kAFRotate; extern NSString *const kAFSaturation; @@ -32,3 +33,25 @@ extern NSString *const kAFHeatwave; extern NSString *const kAFIndiglow; extern NSString *const kAFNegative; extern NSString *const kAFOriginal; + +static NSArray *AFDefaultTools() +{ + return [NSArray arrayWithObjects: + kAFEffects, + kAFCrop, + kAFRotate, + kAFFlip, + kAFBrightness, + kAFContrast, + kAFSaturation, + kAFColors, + kAFRedeye, + kAFStickers, + kAFDrawing, + kAFText, + kAFWhiten, + kAFBlemish, + kAFSharpen, + kAFBlur, + nil]; +} diff --git a/Frameworks/Aviary/Headers/AFFeatherController.h b/Frameworks/Aviary/Headers/AFFeatherController.h index bbf62cf..adb730c 100644 --- a/Frameworks/Aviary/Headers/AFFeatherController.h +++ b/Frameworks/Aviary/Headers/AFFeatherController.h @@ -1,26 +1,27 @@ // // AFFeatherController.h +// AviarySDK // +// Created by Cameron Spickert on 9/16/11. // Copyright 2011 Aviary INC. All rights reserved. // -// Note 1.1: we are continuing to update/clean up this file, so please don't rely -// on any properties, methods or protocols marked "don't use." - -#import -#import "AFFeatherConstants.h" - @class AFFeatherController; #pragma mark - -#pragma mark AFFeatherPluginButton protocol +#pragma mark AFInterfaceElement protocol @protocol AFInterfaceElement @required + @property (nonatomic, retain) UIColor *tintColor; @property (nonatomic, retain) UIImage *backgroundImage; + @end +#pragma mark - +#pragma mark AFFeatherPluginButton protocol + @protocol AFFeatherPluginButton @end @@ -28,6 +29,7 @@ #pragma mark AFFeatherPlugin protocol @protocol AFFeatherPlugin +@required @property (nonatomic, readonly) NSString *pluginId; @property (nonatomic, readonly) NSString *localizedName; @@ -36,80 +38,29 @@ @end -#pragma mark - -#pragma mark AFFeatherDelegate protocol - @protocol AFFeatherDelegate @optional #pragma mark - -#pragma mark New delegate methods (use these) +#pragma mark Delegate methods - (void)feather:(AFFeatherController *)featherController finishedWithImage:(UIImage *)image; - (void)featherCanceled:(AFFeatherController *)featherController; +- (BOOL)featherShouldConfirmCancel:(AFFeatherController *)featherController; - (UIButton *)feather:(AFFeatherController *)featherController buttonForPlugin:(id)plugin; -#pragma mark - -#pragma mark Old delegate methods (don't use) - -// These methods were removed in 1.1. Please use the methods above instead. - -// - (void)afFinishedWithImage:(UIImage *)image; -// - (void)afCanceled; +- (BOOL)featherShouldConfirmCancel:(AFFeatherController *)featherController; @end -@class AFToolbar; -@class AFTaskBar; -@class AFImageView; -@class AFPlugin; - -@interface AFFeatherController : UIViewController { -@private - IBOutlet AFToolbar *toolbar; - IBOutlet UIBarButtonItem *toolbarCancel; - IBOutlet UIBarButtonItem *toolbarBack; - IBOutlet UIBarButtonItem *toolbarTitle; - IBOutlet UIBarButtonItem *toolbarLogo; - IBOutlet UIBarButtonItem *toolbarDone; - IBOutlet UIBarButtonItem *toolbarSave; - IBOutlet UIActivityIndicatorView *activityWheel; - - IBOutlet AFTaskBar *taskBar; - IBOutlet AFImageView *imageView, *imageViewTmp; -} - -#pragma mark - -#pragma mark Public methods +@interface AFFeatherController : UIViewController @property (nonatomic, assign) id delegate; -@property (nonatomic, retain, readonly) id topBar; -@property (nonatomic, retain, readonly) id bottomBar; -@property (nonatomic, retain, readonly) id paramsBar; +@property (nonatomic, retain) id topBar, bottomBar, paramsBar; - (id)initWithImage:(UIImage *)image; - (id)initWithImage:(UIImage *)image andTools:(NSArray *)tools; - -#pragma mark - -#pragma mark Deprecated methods - -// These methods will be removed in the future. Use the -// AFInterfaceElement-compliant properties above instead. - -- (void)setTitleBarTintColor:(UIColor *)color; -- (void)setPluginBarTintColor:(UIColor *)color; -- (void)setPluginParametersBarTintColor:(UIColor *)color; - -#pragma mark - -#pragma mark Internal methods (don't use) - -+ (AFPlugin *)pluginByPluginId:(NSString *)pluginId; - -- (IBAction)handleLogoPressed:(id)sender; -- (IBAction)toolbarCancel:(id)sender; -- (IBAction)toolbarSave:(id)sender; -- (IBAction)toolbarDone:(id)sender; -- (IBAction)toolbarBack:(id)sender; +- (id)initWithImage:(UIImage *)image andTools:(NSArray *)tools andUserInterfaceIdiom:(UIUserInterfaceIdiom)idiom; @end diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherController.nib b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherController.nib deleted file mode 100644 index b5d03f7..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherController.nib and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPad.nib b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPad.nib new file mode 100644 index 0000000..baa827f Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPad.nib differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPhone.nib b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPhone.nib new file mode 100644 index 0000000..45f6bc5 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/AFFeatherControllerPhone.nib differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Info.plist index b0990dd..88f84c5 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/1140.css b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/1140.css deleted file mode 100644 index b8d6fa2..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/1140.css +++ /dev/null @@ -1,130 +0,0 @@ -/* CSS Resets */ - -html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,address,cite,code,del,dfn,em,img,ins,q,small,strong,sub,sup,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{border:0;margin:0;padding:0}article,aside,figure,figure img,figcaption,hgroup,footer,header,nav,section,video,object{display:block}a img{border:0}figure{position:relative}figure img{width:100%} - - -/* ==================================================================================================================== */ -/* ! The 1140px Grid V2 by Andy Taylor \ http://cssgrid.net \ http://www.twitter.com/andytlr \ http://www.andytlr.com */ -/* ==================================================================================================================== */ - -.container { -padding-left: 20px; -padding-right: 20px; -} - -.row { -width: 100%; -max-width: 1140px; -min-width: 755px; -margin: 0 auto; -overflow: hidden; -} - -.onecol, .twocol, .threecol, .fourcol, .fivecol, .sixcol, .sevencol, .eightcol, .ninecol, .tencol, .elevencol { -margin-right: 3.8%; -float: left; -min-height: 1px; -} - -.row .onecol { -width: 4.85%; -} - -.row .twocol { -width: 13.45%; -} - -.row .threecol { -width: 22.05%; -} - -.row .fourcol { -width: 30.75%; -} - -.row .fivecol { -width: 39.45%; -} - -.row .sixcol { -width: 48%; -} - -.row .sevencol { -width: 56.75%; -} - -.row .eightcol { -width: 65.4%; -} - -.row .ninecol { -width: 74.05%; -} - -.row .tencol { -width: 82.7%; -} - -.row .elevencol { -width: 91.35%; -} - -.row .twelvecol { -width: 100%; -float: left; -} - -.last { -margin-right: 0px; -} - -img, object, embed { -max-width: 100%; -} - -img { - height: auto; -} - - -/* Smaller screens */ - -@media only screen and (max-width: 1023px) { - - body { - font-size: 0.8em; - line-height: 1.5em; - } - - } - - -/* Mobile */ - -@media handheld, only screen and (max-width: 767px) { - - body { - font-size: 16px; - -webkit-text-size-adjust: none; - } - - .row, body, .container { - width: 100%; - min-width: 0; - margin-left: 0px; - margin-right: 0px; - padding-left: 0px; - padding-right: 0px; - } - - .row .onecol, .row .twocol, .row .threecol, .row .fourcol, .row .fivecol, .row .sixcol, .row .sevencol, .row .eightcol, .row .ninecol, .row .tencol, .row .elevencol, .row .twelvecol { - width: auto; - float: none; - margin-left: 0px; - margin-right: 0px; - padding-left: 20px; - padding-right: 20px; - } - -} \ No newline at end of file diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/ie.css b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/ie.css deleted file mode 100644 index 530c113..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/ie.css +++ /dev/null @@ -1,43 +0,0 @@ -.onecol { -width: 4.7%; -} - -.twocol { -width: 13.2%; -} - -.threecol { -width: 22.05%; -} - -.fourcol { -width: 30.6%; -} - -.fivecol { -width: 39%; -} - -.sixcol { -width: 48%; -} - -.sevencol { -width: 56.75%; -} - -.eightcol { -width: 61.6%; -} - -.ninecol { -width: 74.05%; -} - -.tencol { -width: 82%; -} - -.elevencol { -width: 91.35%; -} \ No newline at end of file diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/styles.css b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/styles.css deleted file mode 100644 index 9e2707d..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/css/styles.css +++ /dev/null @@ -1,152 +0,0 @@ -/* ============================== */ -/* ! Layout for desktop version */ -/* ============================== */ - - body { - - } - - -/* ============================= */ -/* ! Layout for mobile version */ -/* ============================= */ - -@media handheld, only screen and (max-width: 767px) { - - body { - } - - h1, h2, h3, h4, p, a { - font-family:"helvetica" arial sans-serif; - } - - #mobile_container { - width:460px; - display:block; - padding-left:10px; - padding-right:10px; - } - - .mobile_header h1 { - font-size:20px; - color:#fff; - padding-bottom:5px; - text-align:center; - font-family:"helvetica" arial sans-serif; - } - - .mobile_header span { - font-size:20px; - } - - .mobile_header { - border-bottom:1px solid #000; - background-color:#020e26; - padding-top:15px; - } - - .mobile_info { - padding-top:20px; - padding-bottom:20px; - background-image:url("../images/background.png"); - box-shadow:inset 0px 0px 10px #515151; - -webkit-box-shadow:inset 0px 0px 10px #515151; - } - - .mobile_info p { - color:#000; - font-size:18px; - line-height:26px; - text-shadow:1px 0px 0px #fff; - font-family:"helvetica" arial sans-serif; - padding-bottom:15px; - } - - .mobile_header img { - margin-top:10px; - width:169px; - margin:0 auto; - display:block; - margin-bottom:2px; - } - - .mobile_link { - } - - .mobile_link a { - color:#fff; - text-shadow:0px -1px 0px #000; - text-decoration:none; - font-weight:bold; - font-family:"helvetica" arial sans-serif; - } - - .mobile_info input { - width:250px; - display:block; - margin:0 auto; - padding-left:10px; - padding-right:10px; - padding-top:6px; - padding-bottom:6px; - font-size:22px; - font-family:"helvetica" arial sans-serif; - color:#515151; - } - - .questions { - background-image:url("../images/lime_button.png"); - background-color:#4c9e49; - color:#fff; - border-top:1px solid #54b648; - border-left:1px solid #54b648; - border-right:1px solid #54b648; - border-bottom:1px solid #387930; - text-shadow:0px 1px 2px #000; - box-shadow:0px 1px 2px #515151; - -moz-box-shadow:0px 1px 2px #515151; - -webkit-box-shadow:0px 1px 2px #515151; - text-align:center; - text-decoration:none; - font-weight:bold; - width:270px; - margin:0 auto; - display:block; - padding:8px 0px; - margin-top:15px; - margin-bottom:10px; - } - - .info { - text-align:center; - color:#898989; - display:block; - } - - .mobile_footer p { - color:#fff; - text-align:center; - padding-top:20px; - padding-bottom:15px; - font-family:"helvetica" arial sans-serif; - } - - .mobile_footer { - background-color:#020e26; - } - -} - - -/* ========================================== */ -/* ! Provide higher res assets for iPhone 4 */ -/* ========================================== */ - -@media only screen and (-webkit-min-device-pixel-ratio: 2) { - -/* .logo { - background: url(logo2x.jpg) no-repeat; - background-size: 212px 303px; - }*/ - -} \ No newline at end of file diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/background.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/background.png deleted file mode 100644 index 086543c..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/background.png and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/handmadepaper.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/handmadepaper.png deleted file mode 100644 index 27c305f..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/handmadepaper.png and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/lime_button.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/lime_button.png deleted file mode 100644 index fae4067..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/lime_button.png and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_link.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_link.png deleted file mode 100644 index 6f12d7e..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_link.png and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_logo.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_logo.png deleted file mode 100644 index 154b7b0..0000000 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/images/mobile_logo.png and /dev/null differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/index.html b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/index.html deleted file mode 100644 index 65fbca5..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/index.html +++ /dev/null @@ -1,71 +0,0 @@ - - - - - - Aviary Mobile SDK - - - - - - - - - - - - - - - - - - - - - - - -
-
-
- -
-

Mobile SDK Version __SDK_VERSION__

-
-
-
-

Feather for Mobile is a free SDK available for iOS and Android that allows you to add photo-editing capabilities and effects to your app with just a few lines of code. - Interested? We'll send you some info.

- -
- - - - - - -
- - -
-
- - Send! - -
- -
-
- - - \ No newline at end of file diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/js/css3-mediaqueries.js b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/js/css3-mediaqueries.js deleted file mode 100644 index 1ea806d..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/js/css3-mediaqueries.js +++ /dev/null @@ -1,779 +0,0 @@ -if(typeof Object.create!=="function"){ -Object.create=function(o){ -function F(){ -}; -F.prototype=o; -return new F(); -}; -} -var ua={toString:function(){ -return navigator.userAgent; -},test:function(s){ -return this.toString().toLowerCase().indexOf(s.toLowerCase())>-1; -}}; -ua.version=(ua.toString().toLowerCase().match(/[\s\S]+(?:rv|it|ra|ie)[\/: ]([\d.]+)/)||[])[1]; -ua.webkit=ua.test("webkit"); -ua.gecko=ua.test("gecko")&&!ua.webkit; -ua.opera=ua.test("opera"); -ua.ie=ua.test("msie")&&!ua.opera; -ua.ie6=ua.ie&&document.compatMode&&typeof document.documentElement.style.maxHeight==="undefined"; -ua.ie7=ua.ie&&document.documentElement&&typeof document.documentElement.style.maxHeight!=="undefined"&&typeof XDomainRequest==="undefined"; -ua.ie8=ua.ie&&typeof XDomainRequest!=="undefined"; -var domReady=function(){ -var _1=[]; -var _2=function(){ -if(!arguments.callee.done){ -arguments.callee.done=true; -for(var i=0;i<_1.length;i++){ -_1[i](); -} -} -}; -if(document.addEventListener){ -document.addEventListener("DOMContentLoaded",_2,false); -} -if(ua.ie){ -(function(){ -try{ -document.documentElement.doScroll("left"); -} -catch(e){ -setTimeout(arguments.callee,50); -return; -} -_2(); -})(); -document.onreadystatechange=function(){ -if(document.readyState==="complete"){ -document.onreadystatechange=null; -_2(); -} -}; -} -if(ua.webkit&&document.readyState){ -(function(){ -if(document.readyState!=="loading"){ -_2(); -}else{ -setTimeout(arguments.callee,10); -} -})(); -} -window.onload=_2; -return function(fn){ -if(typeof fn==="function"){ -_1[_1.length]=fn; -} -return fn; -}; -}(); -var cssHelper=function(){ -var _3={BLOCKS:/[^\s{][^{]*\{(?:[^{}]*\{[^{}]*\}[^{}]*|[^{}]*)*\}/g,BLOCKS_INSIDE:/[^\s{][^{]*\{[^{}]*\}/g,DECLARATIONS:/[a-zA-Z\-]+[^;]*:[^;]+;/g,RELATIVE_URLS:/url\(['"]?([^\/\)'"][^:\)'"]+)['"]?\)/g,REDUNDANT_COMPONENTS:/(?:\/\*([^*\\\\]|\*(?!\/))+\*\/|@import[^;]+;)/g,REDUNDANT_WHITESPACE:/\s*(,|:|;|\{|\})\s*/g,MORE_WHITESPACE:/\s{2,}/g,FINAL_SEMICOLONS:/;\}/g,NOT_WHITESPACE:/\S+/g}; -var _4,_5=false; -var _6=[]; -var _7=function(fn){ -if(typeof fn==="function"){ -_6[_6.length]=fn; -} -}; -var _8=function(){ -for(var i=0;i<_6.length;i++){ -_6[i](_4); -} -}; -var _9={}; -var _a=function(n,v){ -if(_9[n]){ -var _b=_9[n].listeners; -if(_b){ -for(var i=0;i<_b.length;i++){ -_b[i](v); -} -} -} -}; -var _c=function(_d,_e,_f){ -if(ua.ie&&!window.XMLHttpRequest){ -window.XMLHttpRequest=function(){ -return new ActiveXObject("Microsoft.XMLHTTP"); -}; -} -if(!XMLHttpRequest){ -return ""; -} -var r=new XMLHttpRequest(); -try{ -r.open("get",_d,true); -r.setRequestHeader("X_REQUESTED_WITH","XMLHttpRequest"); -} -catch(e){ -_f(); -return; -} -var _10=false; -setTimeout(function(){ -_10=true; -},5000); -document.documentElement.style.cursor="progress"; -r.onreadystatechange=function(){ -if(r.readyState===4&&!_10){ -if(!r.status&&location.protocol==="file:"||(r.status>=200&&r.status<300)||r.status===304||navigator.userAgent.indexOf("Safari")>-1&&typeof r.status==="undefined"){ -_e(r.responseText); -}else{ -_f(); -} -document.documentElement.style.cursor=""; -r=null; -} -}; -r.send(""); -}; -var _11=function(_12){ -_12=_12.replace(_3.REDUNDANT_COMPONENTS,""); -_12=_12.replace(_3.REDUNDANT_WHITESPACE,"$1"); -_12=_12.replace(_3.MORE_WHITESPACE," "); -_12=_12.replace(_3.FINAL_SEMICOLONS,"}"); -return _12; -}; -var _13={mediaQueryList:function(s){ -var o={}; -var idx=s.indexOf("{"); -var lt=s.substring(0,idx); -s=s.substring(idx+1,s.length-1); -var mqs=[],rs=[]; -var qts=lt.toLowerCase().substring(7).split(","); -for(var i=0;i-1&&_23.href&&_23.href.length!==0&&!_23.disabled){ -_1f[_1f.length]=_23; -} -} -if(_1f.length>0){ -var c=0; -var _24=function(){ -c++; -if(c===_1f.length){ -_20(); -} -}; -var _25=function(_26){ -var _27=_26.href; -_c(_27,function(_28){ -_28=_11(_28).replace(_3.RELATIVE_URLS,"url("+_27.substring(0,_27.lastIndexOf("/"))+"/$1)"); -_26.cssHelperText=_28; -_24(); -},_24); -}; -for(i=0;i<_1f.length;i++){ -_25(_1f[i]); -} -}else{ -_20(); -} -}; -var _29={mediaQueryLists:"array",rules:"array",selectors:"object",declarations:"array",properties:"object"}; -var _2a={mediaQueryLists:null,rules:null,selectors:null,declarations:null,properties:null}; -var _2b=function(_2c,v){ -if(_2a[_2c]!==null){ -if(_29[_2c]==="array"){ -return (_2a[_2c]=_2a[_2c].concat(v)); -}else{ -var c=_2a[_2c]; -for(var n in v){ -if(v.hasOwnProperty(n)){ -if(!c[n]){ -c[n]=v[n]; -}else{ -c[n]=c[n].concat(v[n]); -} -} -} -return c; -} -} -}; -var _2d=function(_2e){ -_2a[_2e]=(_29[_2e]==="array")?[]:{}; -for(var i=0;i<_4.length;i++){ -_2b(_2e,_4[i].cssHelperParsed[_2e]); -} -return _2a[_2e]; -}; -domReady(function(){ -var els=document.body.getElementsByTagName("*"); -for(var i=0;i=_44)||(max&&_46<_44)||(!min&&!max&&_46===_44)); -}else{ -return false; -} -}else{ -return _46>0; -} -}else{ -if("device-height"===_41.substring(l-13,l)){ -_47=screen.height; -if(_42!==null){ -if(_43==="length"){ -return ((min&&_47>=_44)||(max&&_47<_44)||(!min&&!max&&_47===_44)); -}else{ -return false; -} -}else{ -return _47>0; -} -}else{ -if("width"===_41.substring(l-5,l)){ -_46=document.documentElement.clientWidth||document.body.clientWidth; -if(_42!==null){ -if(_43==="length"){ -return ((min&&_46>=_44)||(max&&_46<_44)||(!min&&!max&&_46===_44)); -}else{ -return false; -} -}else{ -return _46>0; -} -}else{ -if("height"===_41.substring(l-6,l)){ -_47=document.documentElement.clientHeight||document.body.clientHeight; -if(_42!==null){ -if(_43==="length"){ -return ((min&&_47>=_44)||(max&&_47<_44)||(!min&&!max&&_47===_44)); -}else{ -return false; -} -}else{ -return _47>0; -} -}else{ -if("device-aspect-ratio"===_41.substring(l-19,l)){ -return _43==="aspect-ratio"&&screen.width*_44[1]===screen.height*_44[0]; -}else{ -if("color-index"===_41.substring(l-11,l)){ -var _48=Math.pow(2,screen.colorDepth); -if(_42!==null){ -if(_43==="absolute"){ -return ((min&&_48>=_44)||(max&&_48<_44)||(!min&&!max&&_48===_44)); -}else{ -return false; -} -}else{ -return _48>0; -} -}else{ -if("color"===_41.substring(l-5,l)){ -var _49=screen.colorDepth; -if(_42!==null){ -if(_43==="absolute"){ -return ((min&&_49>=_44)||(max&&_49<_44)||(!min&&!max&&_49===_44)); -}else{ -return false; -} -}else{ -return _49>0; -} -}else{ -if("resolution"===_41.substring(l-10,l)){ -var res; -if(_45==="dpcm"){ -res=_3d("1cm"); -}else{ -res=_3d("1in"); -} -if(_42!==null){ -if(_43==="resolution"){ -return ((min&&res>=_44)||(max&&res<_44)||(!min&&!max&&res===_44)); -}else{ -return false; -} -}else{ -return res>0; -} -}else{ -return false; -} -} -} -} -} -} -} -} -}; -var _4a=function(mq){ -var _4b=mq.getValid(); -var _4c=mq.getExpressions(); -var l=_4c.length; -if(l>0){ -for(var i=0;i0){ -s[c++]=","; -} -s[c++]=n; -} -} -if(s.length>0){ -_39[_39.length]=cssHelper.addStyle("@media "+s.join("")+"{"+mql.getCssText()+"}",false); -} -}; -var _4e=function(_4f){ -for(var i=0;i<_4f.length;i++){ -_4d(_4f[i]); -} -if(ua.ie){ -document.documentElement.style.display="block"; -setTimeout(function(){ -document.documentElement.style.display=""; -},0); -setTimeout(function(){ -cssHelper.broadcast("cssMediaQueriesTested"); -},100); -}else{ -cssHelper.broadcast("cssMediaQueriesTested"); -} -}; -var _50=function(){ -for(var i=0;i<_39.length;i++){ -cssHelper.removeStyle(_39[i]); -} -_39=[]; -cssHelper.mediaQueryLists(_4e); -}; -var _51=0; -var _52=function(){ -var _53=cssHelper.getViewportWidth(); -var _54=cssHelper.getViewportHeight(); -if(ua.ie){ -var el=document.createElement("div"); -el.style.position="absolute"; -el.style.top="-9999em"; -el.style.overflow="scroll"; -document.body.appendChild(el); -_51=el.offsetWidth-el.clientWidth; -document.body.removeChild(el); -} -var _55; -var _56=function(){ -var vpw=cssHelper.getViewportWidth(); -var vph=cssHelper.getViewportHeight(); -if(Math.abs(vpw-_53)>_51||Math.abs(vph-_54)>_51){ -_53=vpw; -_54=vph; -clearTimeout(_55); -_55=setTimeout(function(){ -if(!_3a()){ -_50(); -}else{ -cssHelper.broadcast("cssMediaQueriesTested"); -} -},500); -} -}; -window.onresize=function(){ -var x=window.onresize||function(){ -}; -return function(){ -x(); -_56(); -}; -}(); -}; -var _57=document.documentElement; -_57.style.marginLeft="-32767px"; -setTimeout(function(){ -_57.style.marginTop=""; -},20000); -return function(){ -if(!_3a()){ -cssHelper.addListener("newStyleParsed",function(el){ -_4e(el.cssHelperParsed.mediaQueryLists); -}); -cssHelper.addListener("cssMediaQueriesTested",function(){ -if(ua.ie){ -_57.style.width="1px"; -} -setTimeout(function(){ -_57.style.width=""; -_57.style.marginLeft=""; -},0); -cssHelper.removeListener("cssMediaQueriesTested",arguments.callee); -}); -_3c(); -_50(); -}else{ -_57.style.marginLeft=""; -} -_52(); -}; -}()); -try{ -document.execCommand("BackgroundImageCache",false,true); -} -catch(e){ -} - diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/style.css b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/style.css deleted file mode 100644 index 6e0b327..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/style.css +++ /dev/null @@ -1,25 +0,0 @@ -html, body, div, span, applet, object, iframe, -h1, h2, h3, h4, h5, h6, p, blockquote, pre, -a, abbr, acronym, address, big, cite, code, -del, dfn, em, img, ins, kbd, q, s, samp, -small, strike, strong, sub, sup, tt, var, -b, u, i, center, -dl, dt, dd, ol, ul, li, -fieldset, form, label, legend, -table, caption, tbody, tfoot, thead, tr, th, td, -article, aside, canvas, details, embed, -figure, figcaption, footer, header, hgroup, -menu, nav, output, ruby, section, summary, -time, mark, audio, video { - margin: 0; - padding: 0; - border: 0; - font-size: 100%; - font: inherit; - vertical-align: baseline; - text-decoration:none; -} - -.clear { - clear:both; -} diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/test.html b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/test.html deleted file mode 100644 index 921b7cd..0000000 --- a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/Mobile Site/test.html +++ /dev/null @@ -1,40 +0,0 @@ - - - - - - - - - - - Aviary - Powering the worlds creativity - - - - - - - -
-
- -
-

Mobile SDK Version 1.15199

- -
-
-
-

The Aviary Mobile SDK is an embeddable photo editing tool that fits directly into your work flow, allowing your users to edit and improve the photos they share within your app.

-
- -
- - \ No newline at end of file diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/aviary_logo~iPad.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/aviary_logo~iPad.png new file mode 100644 index 0000000..ea14dfe Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/aviary_logo~iPad.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/crop_corner.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/crop_corner.png index 21cd5aa..da4c1dc 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/crop_corner.png and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/crop_corner.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen.png new file mode 100644 index 0000000..daab4f8 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen@2x.png new file mode 100644 index 0000000..ab8ba04 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Core.bundle/linen@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AlwaysSunny.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AlwaysSunny.bundle/Info.plist index 15f311c..d07f2c2 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AlwaysSunny.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AlwaysSunny.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AutoEnhance.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AutoEnhance.bundle/Info.plist index 8027ffc..3e3a19b 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AutoEnhance.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-AutoEnhance.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/Info.plist index ba8b4fa..f7721e6 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish.png index 19f2640..4057c6b 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish@2x.png index 456f6b8..f108aa7 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blemish.bundle/blemish@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/Info.plist index 1f90b61..e4b92ab 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur.png index c3978f9..a6496ae 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur@2x.png index e5d11db..433f7f5 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Blur.bundle/blur@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/Info.plist index aa770a3..8e3d79b 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness-Settings.plist index da28602..f042d54 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness-Settings.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness.png index 9247e7a..cd8b19e 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness@2x.png index b502790..2412e64 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Brightness.bundle/brightness@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Cinematic.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Cinematic.bundle/Info.plist index d219a05..ad135fb 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Cinematic.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Cinematic.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-CodeRed.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-CodeRed.bundle/Info.plist index da9c2fb..7698c58 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-CodeRed.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-CodeRed.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/Info.plist index 239c756..cb98295 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors.png index 42b5352..dcbe481 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors@2x.png index 209e623..9fa96d0 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Colors.bundle/colors@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/Info.plist index 4af8337..a0193e9 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast-Settings.plist index 9e05201..75f9c1f 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast-Settings.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast.png index 4302a7d..58ef121 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast@2x.png index c333d56..09be289 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Contrast.bundle/contrast@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/Info.plist index 84a3e32..5b46d23 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop.png index 530c186..a0b9320 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop@2x.png index fa13e49..399d312 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Crop.bundle/crop@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Daydream.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Daydream.bundle/Info.plist index ff21746..dc9222f 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Daydream.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Daydream.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/Info.plist index ca9084b..a7e0dbf 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing-Settings.plist index 091c50a..0b662d4 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing-Settings.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing.png index 7374aaf..aeae5e2 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing@2x.png index 459f937..7a38767 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Drawing.bundle/drawing@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/Info.plist index 7400f60..3326f36 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects-Settings.plist index d8ee921..4413128 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects-Settings.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects.png index 6440dba..48be50a 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects@2x.png index a7a4786..6abf73d 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Effects.bundle/effects@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/Info.plist index ee3e644..67b0f10 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip.png index f3e4224..180fd2a 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip@2x.png index 2e828f9..0a621f4 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Flip.bundle/flip@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Heatwave.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Heatwave.bundle/Info.plist index 2497188..0afa89d 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Heatwave.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Heatwave.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Indiglow.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Indiglow.bundle/Info.plist index 7924238..d99e4b9 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Indiglow.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Indiglow.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Impact.ttf b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Impact.ttf new file mode 100644 index 0000000..7b7956f Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Impact.ttf differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Info.plist new file mode 100644 index 0000000..8b7dda2 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme-Settings.plist new file mode 100644 index 0000000..bc39034 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme.png new file mode 100644 index 0000000..8fe3389 Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme@2x.png new file mode 100644 index 0000000..72cab5a Binary files /dev/null and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Meme.bundle/meme@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Negative.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Negative.bundle/Info.plist index 26ea6e7..0aef460 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Negative.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Negative.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Original.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Original.bundle/Info.plist index 8914d42..304913c 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Original.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Original.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/Info.plist index cb7f2bc..273cb30 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye.png index 3f6e15b..fc282e3 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye@2x.png index 4bcb9e9..54ddee2 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Redeye.bundle/redeye@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/Info.plist index b474085..50ed6a0 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate.png index 9d0e618..cce860a 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate@2x.png index bd460e3..5f6564a 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Rotate.bundle/rotate@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/Info.plist index c1a3233..a4dbf99 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation-Settings.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation-Settings.plist index e97fe9c..ba88b8d 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation-Settings.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation-Settings.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation.png index b763d54..1e6614e 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation@2x.png index 3b32d12..bf6d346 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Saturation.bundle/saturation@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/Info.plist index 6862152..32e1579 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen.png index 18f8217..610eaab 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen@2x.png index 84f2617..6eb1efe 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Sharpen.bundle/sharpen@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/Info.plist index e7d7d59..a5d33e7 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers.png index 2f7ca68..324304a 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers@2x.png index a2ebd18..f687f03 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Stickers.bundle/stickers@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/Info.plist index a44cd13..8a4d9c6 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text.png index d7c5f0b..3244c25 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text@2x.png index 9c5c46d..d238b24 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Text.bundle/text@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/Info.plist index 84bb14b..8835d32 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/Info.plist differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten.png index db1ad90..8a174c7 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten@2x.png b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten@2x.png index c92868d..219bf13 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten@2x.png and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/AviarySDK-Whiten.bundle/whiten@2x.png differ diff --git a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/Info.plist b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/Info.plist index 8ee8909..3f4b2ca 100644 Binary files a/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/Info.plist and b/Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle/Info.plist differ diff --git a/Frameworks/Aviary/libAviarySDK-universal.a b/Frameworks/Aviary/libAviarySDK-universal.a index 45551f3..c250420 100644 Binary files a/Frameworks/Aviary/libAviarySDK-universal.a and b/Frameworks/Aviary/libAviarySDK-universal.a differ diff --git a/OpenPhoto.xcodeproj/project.pbxproj b/OpenPhoto.xcodeproj/project.pbxproj index 21793e9..e4c7f62 100644 --- a/OpenPhoto.xcodeproj/project.pbxproj +++ b/OpenPhoto.xcodeproj/project.pbxproj @@ -39,7 +39,6 @@ CD22C9A81439123000E98B0B /* QSFileManager.m in Sources */ = {isa = PBXBuildFile; fileRef = CD22C9A11439123000E98B0B /* QSFileManager.m */; }; CD22C9A91439123000E98B0B /* QSHttpClient.m in Sources */ = {isa = PBXBuildFile; fileRef = CD22C9A31439123000E98B0B /* QSHttpClient.m */; }; CD22C9AA1439123000E98B0B /* QSStrings.m in Sources */ = {isa = PBXBuildFile; fileRef = CD22C9A51439123000E98B0B /* QSStrings.m */; }; - CD2409B21440B2AD0013D1BA /* libAviarySDK-universal.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CD7A125114391506001A88E0 /* libAviarySDK-universal.a */; }; CD2FF13513E2337E00F75A1E /* appbar_blank.png in Resources */ = {isa = PBXBuildFile; fileRef = CD2FF12B13E2337E00F75A1E /* appbar_blank.png */; }; CD2FF13613E2337E00F75A1E /* appbar_logo.png in Resources */ = {isa = PBXBuildFile; fileRef = CD2FF12C13E2337E00F75A1E /* appbar_logo.png */; }; CD2FF13813E2337E00F75A1E /* Icon-72.png in Resources */ = {isa = PBXBuildFile; fileRef = CD2FF12E13E2337E00F75A1E /* Icon-72.png */; }; @@ -69,8 +68,6 @@ CD7623C9141FB46600551D72 /* tab-settings@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = CD7623C1141FB46600551D72 /* tab-settings@2x.png */; }; CD7623CA141FB46600551D72 /* tab-tags.png in Resources */ = {isa = PBXBuildFile; fileRef = CD7623C2141FB46600551D72 /* tab-tags.png */; }; CD7623CB141FB46600551D72 /* tab-tags@2x.png in Resources */ = {isa = PBXBuildFile; fileRef = CD7623C3141FB46600551D72 /* tab-tags@2x.png */; }; - CD7A125514391511001A88E0 /* AviarySDK-Core.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CD7A125314391511001A88E0 /* AviarySDK-Core.bundle */; }; - CD7A125614391511001A88E0 /* AviarySDK-Plugins.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CD7A125414391511001A88E0 /* AviarySDK-Plugins.bundle */; }; CD7A128114391542001A88E0 /* IASKAppSettingsViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7A125B14391542001A88E0 /* IASKAppSettingsViewController.m */; }; CD7A128214391542001A88E0 /* IASKAppSettingsWebViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7A125D14391542001A88E0 /* IASKAppSettingsWebViewController.m */; }; CD7A128314391542001A88E0 /* IASKSpecifierValuesViewController.m in Sources */ = {isa = PBXBuildFile; fileRef = CD7A125F14391542001A88E0 /* IASKSpecifierValuesViewController.m */; }; @@ -108,6 +105,10 @@ CDAE086A144C7C7300625C95 /* TSAlertViewButtonBackground_Highlighted.png in Resources */ = {isa = PBXBuildFile; fileRef = CDAE0863144C7C7300625C95 /* TSAlertViewButtonBackground_Highlighted.png */; }; CDAE086B144C7C7300625C95 /* TSAlertViewCancelButtonBackground.png in Resources */ = {isa = PBXBuildFile; fileRef = CDAE0864144C7C7300625C95 /* TSAlertViewCancelButtonBackground.png */; }; CDAE086C144C7C7300625C95 /* TSAlertViewMessageListViewShadow.png in Resources */ = {isa = PBXBuildFile; fileRef = CDAE0865144C7C7300625C95 /* TSAlertViewMessageListViewShadow.png */; }; + CDC8993A146364E900C50A00 /* libAviarySDK-universal.a in Frameworks */ = {isa = PBXBuildFile; fileRef = CDC89939146364E900C50A00 /* libAviarySDK-universal.a */; }; + CDC8993D146364F400C50A00 /* AviarySDK-Core.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CDC8993B146364F400C50A00 /* AviarySDK-Core.bundle */; }; + CDC8993E146364F400C50A00 /* AviarySDK-Plugins.bundle in Resources */ = {isa = PBXBuildFile; fileRef = CDC8993C146364F400C50A00 /* AviarySDK-Plugins.bundle */; }; + CDC899401463657200C50A00 /* CoreText.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CDC8993F1463657200C50A00 /* CoreText.framework */; }; CDE3C6A713F02186008A4F09 /* ImageManipulation.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE3C6A613F02186008A4F09 /* ImageManipulation.m */; }; CDE5892D141B90F7004191B4 /* Reachability.m in Sources */ = {isa = PBXBuildFile; fileRef = CDE5892C141B90F7004191B4 /* Reachability.m */; }; CDE5892F141B911A004191B4 /* SystemConfiguration.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = CDE5892E141B911A004191B4 /* SystemConfiguration.framework */; }; @@ -426,11 +427,6 @@ CD7623C2141FB46600551D72 /* tab-tags.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "tab-tags.png"; path = "OpenPhoto/images/tabs/tab-tags.png"; sourceTree = SOURCE_ROOT; }; CD7623C3141FB46600551D72 /* tab-tags@2x.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; name = "tab-tags@2x.png"; path = "OpenPhoto/images/tabs/tab-tags@2x.png"; sourceTree = SOURCE_ROOT; }; CD775F6F13E33BBE00FD1721 /* en */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.c.h; name = en; path = en.lproj/PhotoViewController.h; sourceTree = ""; }; - CD7A125114391506001A88E0 /* libAviarySDK-universal.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libAviarySDK-universal.a"; path = "Frameworks/Aviary/libAviarySDK-universal.a"; sourceTree = ""; }; - CD7A125314391511001A88E0 /* AviarySDK-Core.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = "AviarySDK-Core.bundle"; path = "Frameworks/Aviary/Resources/AviarySDK-Core.bundle"; sourceTree = ""; }; - CD7A125414391511001A88E0 /* AviarySDK-Plugins.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = "AviarySDK-Plugins.bundle"; path = "Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle"; sourceTree = ""; }; - CD7A12571439151C001A88E0 /* AFFeatherConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFFeatherConstants.h; path = Frameworks/Aviary/Headers/AFFeatherConstants.h; sourceTree = ""; }; - CD7A12581439151C001A88E0 /* AFFeatherController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFFeatherController.h; path = Frameworks/Aviary/Headers/AFFeatherController.h; sourceTree = ""; }; CD7A125A14391542001A88E0 /* IASKAppSettingsViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsViewController.h; sourceTree = ""; }; CD7A125B14391542001A88E0 /* IASKAppSettingsViewController.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = IASKAppSettingsViewController.m; sourceTree = ""; }; CD7A125C14391542001A88E0 /* IASKAppSettingsWebViewController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = IASKAppSettingsWebViewController.h; sourceTree = ""; }; @@ -487,6 +483,12 @@ CDAE0863144C7C7300625C95 /* TSAlertViewButtonBackground_Highlighted.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TSAlertViewButtonBackground_Highlighted.png; sourceTree = ""; }; CDAE0864144C7C7300625C95 /* TSAlertViewCancelButtonBackground.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TSAlertViewCancelButtonBackground.png; sourceTree = ""; }; CDAE0865144C7C7300625C95 /* TSAlertViewMessageListViewShadow.png */ = {isa = PBXFileReference; lastKnownFileType = image.png; path = TSAlertViewMessageListViewShadow.png; sourceTree = ""; }; + CDC89937146364E000C50A00 /* AFFeatherConstants.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFFeatherConstants.h; path = Frameworks/Aviary/Headers/AFFeatherConstants.h; sourceTree = ""; }; + CDC89938146364E000C50A00 /* AFFeatherController.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; name = AFFeatherController.h; path = Frameworks/Aviary/Headers/AFFeatherController.h; sourceTree = ""; }; + CDC89939146364E900C50A00 /* libAviarySDK-universal.a */ = {isa = PBXFileReference; lastKnownFileType = archive.ar; name = "libAviarySDK-universal.a"; path = "Frameworks/Aviary/libAviarySDK-universal.a"; sourceTree = ""; }; + CDC8993B146364F400C50A00 /* AviarySDK-Core.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = "AviarySDK-Core.bundle"; path = "Frameworks/Aviary/Resources/AviarySDK-Core.bundle"; sourceTree = ""; }; + CDC8993C146364F400C50A00 /* AviarySDK-Plugins.bundle */ = {isa = PBXFileReference; lastKnownFileType = "wrapper.plug-in"; name = "AviarySDK-Plugins.bundle"; path = "Frameworks/Aviary/Resources/AviarySDK-Plugins.bundle"; sourceTree = ""; }; + CDC8993F1463657200C50A00 /* CoreText.framework */ = {isa = PBXFileReference; lastKnownFileType = wrapper.framework; name = CoreText.framework; path = System/Library/Frameworks/CoreText.framework; sourceTree = SDKROOT; }; CDE3C6A513F02186008A4F09 /* ImageManipulation.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = ImageManipulation.h; sourceTree = ""; }; CDE3C6A613F02186008A4F09 /* ImageManipulation.m */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.objc; path = ImageManipulation.m; sourceTree = ""; }; CDE5892B141B90F7004191B4 /* Reachability.h */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.c.h; path = Reachability.h; sourceTree = ""; }; @@ -536,8 +538,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( + CDC899401463657200C50A00 /* CoreText.framework in Frameworks */, CD578A661461E8B700D4EFC9 /* CoreLocation.framework in Frameworks */, - CD2409B21440B2AD0013D1BA /* libAviarySDK-universal.a in Frameworks */, CDF4463913E1C5BA007E8F72 /* libextThree20JSON+SBJSON.a in Frameworks */, 3201088596B4756681693705 /* libThree20UICommon.a in Frameworks */, 320D7DCCE32703ACAB9A45E5 /* libThree20.a in Frameworks */, @@ -555,6 +557,7 @@ CDF1C94E13E1C45C0018AD0B /* Foundation.framework in Frameworks */, CDF1C95013E1C45C0018AD0B /* CoreGraphics.framework in Frameworks */, CD22C970143911A500E98B0B /* libTestFlight.a in Frameworks */, + CDC8993A146364E900C50A00 /* libAviarySDK-universal.a in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -842,11 +845,11 @@ CDE58786141A5FB2004191B4 /* Aviary */ = { isa = PBXGroup; children = ( - CD7A12571439151C001A88E0 /* AFFeatherConstants.h */, - CD7A12581439151C001A88E0 /* AFFeatherController.h */, - CD7A125314391511001A88E0 /* AviarySDK-Core.bundle */, - CD7A125414391511001A88E0 /* AviarySDK-Plugins.bundle */, - CD7A125114391506001A88E0 /* libAviarySDK-universal.a */, + CDC8993B146364F400C50A00 /* AviarySDK-Core.bundle */, + CDC8993C146364F400C50A00 /* AviarySDK-Plugins.bundle */, + CDC89939146364E900C50A00 /* libAviarySDK-universal.a */, + CDC89937146364E000C50A00 /* AFFeatherConstants.h */, + CDC89938146364E000C50A00 /* AFFeatherController.h */, ); name = Aviary; sourceTree = ""; @@ -896,6 +899,7 @@ CDF1C94D13E1C45C0018AD0B /* Foundation.framework */, CDF1C94F13E1C45C0018AD0B /* CoreGraphics.framework */, CD578A651461E8B700D4EFC9 /* CoreLocation.framework */, + CDC8993F1463657200C50A00 /* CoreText.framework */, CD12AAB81405AB10008B124A /* MessageUI.framework */, CDF1C96C13E1C45C0018AD0B /* SenTestingKit.framework */, 320AF8492C47A4D819F7C450 /* QuartzCore.framework */, @@ -1366,8 +1370,6 @@ CD7623CA141FB46600551D72 /* tab-tags.png in Resources */, CD7623CB141FB46600551D72 /* tab-tags@2x.png in Resources */, CD22C99A143911FD00E98B0B /* OATestServer.rb in Resources */, - CD7A125514391511001A88E0 /* AviarySDK-Core.bundle in Resources */, - CD7A125614391511001A88E0 /* AviarySDK-Plugins.bundle in Resources */, CD7A129014391542001A88E0 /* IASKAppSettingsView.xib in Resources */, CD7A129114391542001A88E0 /* IASKAppSettingsWebView.xib in Resources */, CD7A129214391542001A88E0 /* IASKPSSliderSpecifierViewCell.xib in Resources */, @@ -1382,6 +1384,8 @@ CDAE086C144C7C7300625C95 /* TSAlertViewMessageListViewShadow.png in Resources */, CD578ABF146358A700D4EFC9 /* 19-check.png in Resources */, CD578AC0146358A700D4EFC9 /* 19-check@2x.png in Resources */, + CDC8993D146364F400C50A00 /* AviarySDK-Core.bundle in Resources */, + CDC8993E146364F400C50A00 /* AviarySDK-Plugins.bundle in Resources */, ); runOnlyForDeploymentPostprocessing = 0; }; diff --git a/OpenPhoto/HomeViewController.m b/OpenPhoto/HomeViewController.m index 399770e..e6a4c68 100644 --- a/OpenPhoto/HomeViewController.m +++ b/OpenPhoto/HomeViewController.m @@ -157,6 +157,7 @@ } }else{ NSLog(@"Internet is not reacheable yet"); + [[NSNotificationCenter defaultCenter] postNotificationName:kNotificationRefreshPictures object:nil ]; } diff --git a/OpenPhoto/PhotoViewController.m b/OpenPhoto/PhotoViewController.m index 820ce08..689f6b1 100644 --- a/OpenPhoto/PhotoViewController.m +++ b/OpenPhoto/PhotoViewController.m @@ -438,8 +438,7 @@ responseData = [[NSMutableData data] retain]; - NSURLConnection *connection = [[NSURLConnection alloc] initWithRequest:oaUrlRequest delegate:self]; - [connection start]; + [[NSURLConnection alloc] initWithRequest:oaUrlRequest delegate:self startImmediately:YES]; HUD = [[MBProgressHUD showHUDAddedTo:self.navigationController.view animated:YES] retain]; @@ -450,6 +449,7 @@ } - (void)connection:(NSURLConnection *)connection didReceiveResponse:(NSURLResponse *)response { + NSLog(@"didReceiveResponse"); expectedLength = [response expectedContentLength]; currentLength = 0; HUD.mode = MBProgressHUDModeDeterminate; @@ -457,12 +457,14 @@ } - (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data { + NSLog(@"didReceiveData"); currentLength += [data length]; HUD.progress = currentLength / (float)expectedLength; [responseData appendData:data]; } - (void)connectionDidFinishLoading:(NSURLConnection *)connection { + NSLog(@"connectionDidFinishLoading"); // progress bar HUD.customView = [[[UIImageView alloc] initWithImage:[UIImage imageNamed:@"19-check.png"]] autorelease]; @@ -505,6 +507,7 @@ } - (void)connection:(NSURLConnection *)connection didFailWithError:(NSError *)error { + NSLog(@"Connection failed: %@", [error description]); [HUD hide:YES]; } @@ -519,7 +522,7 @@ } -(void) receivedResponse:(NSDictionary *)response{ - + NSLog(@"receivedResponse"); }