From f7ab40c258f77977ad7b099c399c8a64f70edb64 Mon Sep 17 00:00:00 2001 From: Kiavash Faisali Date: Wed, 22 Apr 2015 11:32:25 -0400 Subject: [PATCH 1/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 63ad76f..786636e 100644 --- a/README.md +++ b/README.md @@ -10,8 +10,8 @@ Please also check out [KFWatchKitAnimations](https://github.com/kiavashfaisali/K ## Features * WKInterfaceImage, UIImageView, UIButton, and MKAnnotationView categories for asynchronous web image loading. -* Memory and disk cache to prevent downloading images every time a request is made or when the app relaunches. -* Energy efficiency by sending only one HTTP/HTTPS request for image downloads and ensuring subsequent requests with the same URL string are registered as observers for when the request is finished downloading to directly load the image. +* Memory and disk cache to prevent downloading images every time a request is made or when the app relaunches, with automatic cache management to optimize resource use. +* Energy efficiency by sending only one HTTP/HTTPS request for image downloads from multiple sources that reference the same URL string, instead registering them as observers for the request. * Maximum peformance by utilizing the latest and greatest of modern technologies such as Swift 1.2, NSURLSession, and GCD. ## KFSwiftImageLoader Requirements From 1e8f3c9e0d214ba1babef82f313b826b80720e3c Mon Sep 17 00:00:00 2001 From: Kiavash Faisali Date: Wed, 22 Apr 2015 11:40:23 -0400 Subject: [PATCH 2/5] Update README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 786636e..9e33bf7 100644 --- a/README.md +++ b/README.md @@ -11,7 +11,7 @@ Please also check out [KFWatchKitAnimations](https://github.com/kiavashfaisali/K ## Features * WKInterfaceImage, UIImageView, UIButton, and MKAnnotationView categories for asynchronous web image loading. * Memory and disk cache to prevent downloading images every time a request is made or when the app relaunches, with automatic cache management to optimize resource use. -* Energy efficiency by sending only one HTTP/HTTPS request for image downloads from multiple sources that reference the same URL string, instead registering them as observers for the request. +* Energy efficiency by sending only one HTTP/HTTPS request for image downloads from multiple sources that reference the same URL string, registering them as observers for the request. * Maximum peformance by utilizing the latest and greatest of modern technologies such as Swift 1.2, NSURLSession, and GCD. ## KFSwiftImageLoader Requirements @@ -30,7 +30,7 @@ Add the following to your Podfile ``` bash source 'https://github.com/CocoaPods/Specs.git' platform :ios, '8.2' -pod 'KFSwiftImageLoader', '~> 1.1' +pod 'KFSwiftImageLoader', '~> 1.2' use_frameworks! ``` From 67de4a2889a22ebea67ca92b16344b5fdff74c23 Mon Sep 17 00:00:00 2001 From: Daniel Brooks Date: Wed, 29 Apr 2015 21:58:52 -0700 Subject: [PATCH 3/5] Adding shared scheme --- .../xcschemes/KFSwiftImageLoader.xcscheme | 77 +++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 SwiftImageLoader.xcodeproj/xcshareddata/xcschemes/KFSwiftImageLoader.xcscheme diff --git a/SwiftImageLoader.xcodeproj/xcshareddata/xcschemes/KFSwiftImageLoader.xcscheme b/SwiftImageLoader.xcodeproj/xcshareddata/xcschemes/KFSwiftImageLoader.xcscheme new file mode 100644 index 0000000..c8f28f7 --- /dev/null +++ b/SwiftImageLoader.xcodeproj/xcshareddata/xcschemes/KFSwiftImageLoader.xcscheme @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + From ec3a9f1f611e9bd430ad7eddb05588d76b656ae4 Mon Sep 17 00:00:00 2001 From: Kiavash Faisali Date: Tue, 5 May 2015 12:27:17 -0400 Subject: [PATCH 4/5] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 9e33bf7..17722ea 100644 --- a/README.md +++ b/README.md @@ -9,7 +9,7 @@ Please also check out [KFWatchKitAnimations](https://github.com/kiavashfaisali/K --= Short introduction video coming soon =-- ## Features -* WKInterfaceImage, UIImageView, UIButton, and MKAnnotationView categories for asynchronous web image loading. +* WKInterfaceImage, UIImageView, UIButton, and MKAnnotationView extensions for asynchronous web image loading. * Memory and disk cache to prevent downloading images every time a request is made or when the app relaunches, with automatic cache management to optimize resource use. * Energy efficiency by sending only one HTTP/HTTPS request for image downloads from multiple sources that reference the same URL string, registering them as observers for the request. * Maximum peformance by utilizing the latest and greatest of modern technologies such as Swift 1.2, NSURLSession, and GCD. From f2d46d361a401486b2e35c891df5977fd5ec0617 Mon Sep 17 00:00:00 2001 From: Kiavash Faisali Date: Sat, 9 May 2015 20:37:26 -0400 Subject: [PATCH 5/5] Update README.md --- README.md | 2 -- 1 file changed, 2 deletions(-) diff --git a/README.md b/README.md index 17722ea..35fa225 100644 --- a/README.md +++ b/README.md @@ -6,8 +6,6 @@ This is the world's first  Watch-optimized async image loader with WKInterfac Please also check out [KFWatchKitAnimations](https://github.com/kiavashfaisali/KFWatchKitAnimations) for a great way to record beautiful 60 FPS animations for  Watch by recording animations from the iOS Simulator. ---= Short introduction video coming soon =-- - ## Features * WKInterfaceImage, UIImageView, UIButton, and MKAnnotationView extensions for asynchronous web image loading. * Memory and disk cache to prevent downloading images every time a request is made or when the app relaunches, with automatic cache management to optimize resource use.