Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions DFImageManager.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'DFImageManager'
s.version = '2.0.1'
s.version = '2.0.2'
s.summary = 'Advanced framework for managing images. Zero config, yet immense customization.'
s.description = <<-DESC
Advanced framework for loading, caching, processing, displaying and preheating images. DFImageManager is a pipeline that loads images using multiple dependencies which can be injected in runtime. It features optional AFNetworking, FLAnimatedImage and WebP integration.
Expand All @@ -11,7 +11,7 @@ Pod::Spec.new do |s|
s.social_media_url = 'https://twitter.com/a_grebenyuk'
s.ios.deployment_target = '8.0'
s.watchos.deployment_target = '2.0'
s.source = { :git => 'https://github.com/kean/DFImageManager.git', :tag => s.version.to_s }
s.source = { :git => 'https://github.com/appunite/DFImageManager.git', :tag => s.version.to_s }
s.requires_arc = true
s.default_subspecs = 'Core', 'UI'

Expand Down
40 changes: 40 additions & 0 deletions Package.swift
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
// swift-tools-version:5.9
// The swift-tools-version declares the minimum version of Swift required to build this package.

import PackageDescription

let package = Package(
name: "DFImageManager",
platforms: [
.iOS(.v15)
],
products: [
.library(
name: "DFImageManager",
targets: ["DFImageManager"]
)
],
dependencies: [
.package(url: "https://github.com/SDWebImage/libwebp-Xcode.git", exact: "1.3.2")
],
targets: [
.target(
name: "DFImageManager",
dependencies: [
.product(name: "libwebp", package: "libwebp-Xcode")
],
path: "Pod/Source",
exclude: [
"AFNetworking",
"GIF",
"PhotosKit"
],
publicHeadersPath: "include",
cSettings: [
.headerSearchPath("include/DFImageManager"),
.headerSearchPath("Core/Private"),
.define("DF_SUBSPEC_WEBP_ENABLED", to: "1")
]
)
]
)
747 changes: 723 additions & 24 deletions Pod/DFImageManager.xcodeproj/project.pbxproj

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
<plist version="1.0">
<dict>
<key>IDEDidComputeMac32BitWarning</key>
<true/>
</dict>
</plist>
2 changes: 1 addition & 1 deletion Pod/Source/WebP/DFWebPImageDecoder.m
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
// Copyright (c) 2015 Alexander Grebenyuk (github.com/kean).

#import "DFWebPImageDecoder.h"
#import <libwebp/decode.h>
#import <webp/decode.h>

@implementation DFWebPImageDecoder

Expand Down
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFCachedImageResponse.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageCache.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageCaching.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageDecoder.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageDecoding.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageFetching.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManager.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManagerDefines.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManagerKit+UI.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManagerKit+WebP.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManagerKit.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageManaging.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageProcessing.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageProcessor.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageRequest.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageRequestOptions.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageResponse.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageTask.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFImageView.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFURLImageFetcher.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/DFWebPImageDecoder.h
1 change: 1 addition & 0 deletions Pod/Source/include/DFImageManager/NSCache+DFImageManager.h
5 changes: 5 additions & 0 deletions Pod/Source/include/module.modulemap
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module DFImageManager {
umbrella "DFImageManager"
export *
module * { export * }
}
3 changes: 2 additions & 1 deletion Pod/Supporting Files/DFImageManager-umbrella.h
Original file line number Diff line number Diff line change
Expand Up @@ -11,4 +11,5 @@ FOUNDATION_EXPORT double DFImageManagerVersionNumber;
FOUNDATION_EXPORT const unsigned char DFImageManagerVersionString[];

#import "DFImageManagerKit.h"
#import "DFImageManagerKit+UI.h"
#import "DFImageManagerKit+UI.h"
#import "DFImageManagerKit+WebP.h"
Loading