Skip to content

Commit

Permalink
Update for version 0.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kean committed Sep 18, 2015
1 parent 48c23c7 commit 46b6902
Show file tree
Hide file tree
Showing 6 changed files with 18 additions and 9 deletions.
5 changes: 5 additions & 0 deletions Example/NukePlayground.playground/timeline.xctimeline
Original file line number Diff line number Diff line change
Expand Up @@ -95,5 +95,10 @@
selectedRepresentationIndex = "0"
shouldTrackSuperviewWidth = "NO">
</LoggerValueHistoryTimelineItem>
<LoggerValueHistoryTimelineItem
documentLocation = "#CharacterRangeLen=5&amp;CharacterRangeLoc=185&amp;EndingColumnNumber=14&amp;EndingLineNumber=6&amp;StartingColumnNumber=9&amp;StartingLineNumber=6&amp;Timestamp=464299204.949211"
selectedRepresentationIndex = "0"
shouldTrackSuperviewWidth = "NO">
</LoggerValueHistoryTimelineItem>
</TimelineItems>
</Timeline>
3 changes: 2 additions & 1 deletion Nuke.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = "Nuke"
s.version = "0.1.0"
s.version = "0.2.0"
s.summary = "Advanced Swift framework for loading and caching images"

s.homepage = "https://github.com/kean/Nuke"
Expand Down Expand Up @@ -34,6 +34,7 @@ Pod::Spec.new do |s|
s.subspec "GIF" do |ss|
ss.ios.deployment_target = "8.0"
ss.dependency "Nuke/Core"
ss.dependency "Nuke/UI"
ss.dependency "FLAnimatedImage", "~> 1.0"
ss.source_files = "Pod/Classes/GIF/**/*"
end
Expand Down
1 change: 1 addition & 0 deletions Pod/Classes/Alamofire/AlamofireImageDataLoader.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// Copyright (c) 2015 Alexander Grebenyuk (github.com/kean).

import UIKit
import Alamofire

public class AlamofireImageDataLoader: ImageDataLoading {
Expand Down
1 change: 1 addition & 0 deletions Pod/Classes/GIF/AnimatedImage.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// Copyright (c) 2015 Alexander Grebenyuk (github.com/kean).

import UIKit
import FLAnimatedImage

public class AnimatedImage: UIImage {
Expand Down
1 change: 1 addition & 0 deletions Pod/Classes/GIF/AnimatedImageView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
//
// Copyright (c) 2015 Alexander Grebenyuk (github.com/kean).

import UIKit
import FLAnimatedImage

public class AnimatedImageView: ImageView {
Expand Down
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,6 @@ Nuke.taskWithRequest(request) {
}.resume()
```

#### Composing Image Decoders

```swift
let decoder1: ImageDecoding = <#decoder#>
let decoder2: ImageDecoding = <#decoder#>
let composition = ImageDecoderComposition(decoders: [decoder1, decoder2])
```

#### Composing Image Filters

```swift
Expand All @@ -166,6 +158,14 @@ let processor2: ImageProcessing = <#processor#>
let composition = ImageProcessorComposition(processors: [processor1, processor2])
```

#### Composing Image Decoders

```swift
let decoder1: ImageDecoding = <#decoder#>
let decoder2: ImageDecoding = <#decoder#>
let composition = ImageDecoderComposition(decoders: [decoder1, decoder2])
```

#### Preheating Images

```swift
Expand Down

0 comments on commit 46b6902

Please sign in to comment.