Skip to content

Commit

Permalink
Merge pull request #22 from rosberry/feature/soft-cell-update
Browse files Browse the repository at this point in the history
Soft cell update
  • Loading branch information
ntunin authored Jul 16, 2021
2 parents 1dea5be + 71ea781 commit 54b0d7a
Show file tree
Hide file tree
Showing 47 changed files with 1,230 additions and 196 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,8 @@ xcuserdata/

Carthage/Checkouts
Carthage/Build
/**/Carthage/Checkouts
/**/Carthage/Build

# fastlane
#
Expand Down
7 changes: 4 additions & 3 deletions CollectionViewTools.podspec
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,8 @@

Pod::Spec.new do |s|
s.name = 'CollectionViewTools'
s.version = '0.1.1'
s.version = '0.1.5'
s.tag = '0.1.5'
s.summary = 'Powerful tool for making UICollectionView usage simple and comfortable.'

# This description is used to generate tags and improve search results.
Expand All @@ -26,10 +27,10 @@ Effective framework, similar to TableViewTools for making your UICollectionView
s.author = { 'Dmitry Frishbuter' => '[email protected]' }
s.source = { :git => 'https://github.com/rosberry/CollectionViewTools.git', :tag => s.version.to_s }

s.ios.deployment_target = '8.2'
s.ios.deployment_target = '10.3'

s.source_files = 'Sources/**/*'

# s.resource_bundles = {
# 'CollectionViewTools' => ['Assets/*.png']
# }
Expand Down
4 changes: 4 additions & 0 deletions CollectionViewTools.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
017B9F0C2409129800C765BD /* TestAsyncCollectionViewCellItem.swift in Sources */ = {isa = PBXBuildFile; fileRef = 017B9F0B2409129800C765BD /* TestAsyncCollectionViewCellItem.swift */; };
019849BB2508E6C800D217B4 /* Collection+Safe.swift in Sources */ = {isa = PBXBuildFile; fileRef = 019849BA2508E6C800D217B4 /* Collection+Safe.swift */; };
01F2086323F67657009B069E /* TestViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01F2086223F67657009B069E /* TestViewController.swift */; };
01F2E324267B2B550019B822 /* CellUpdateMode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 01F2E323267B2B550019B822 /* CellUpdateMode.swift */; };
0A37632F1F6251A600A80613 /* CollectionViewTools.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 0A3763251F6251A600A80613 /* CollectionViewTools.framework */; };
0A3763341F6251A600A80613 /* CollectionViewManagerTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A3763331F6251A600A80613 /* CollectionViewManagerTests.swift */; };
0A3763671F62545A00A80613 /* ClosureWrapper.swift in Sources */ = {isa = PBXBuildFile; fileRef = 0A3763521F62545A00A80613 /* ClosureWrapper.swift */; };
Expand Down Expand Up @@ -89,6 +90,7 @@
017B9F0B2409129800C765BD /* TestAsyncCollectionViewCellItem.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestAsyncCollectionViewCellItem.swift; sourceTree = "<group>"; };
019849BA2508E6C800D217B4 /* Collection+Safe.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = "Collection+Safe.swift"; sourceTree = "<group>"; };
01F2086223F67657009B069E /* TestViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TestViewController.swift; sourceTree = "<group>"; };
01F2E323267B2B550019B822 /* CellUpdateMode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = CellUpdateMode.swift; sourceTree = "<group>"; };
06B2AE0E21F6FFE8004A9CBB /* CollectionViewTools.podspec */ = {isa = PBXFileReference; lastKnownFileType = text; path = CollectionViewTools.podspec; sourceTree = "<group>"; };
0A3763251F6251A600A80613 /* CollectionViewTools.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = CollectionViewTools.framework; sourceTree = BUILT_PRODUCTS_DIR; };
0A37632E1F6251A600A80613 /* CollectionViewToolsTests.xctest */ = {isa = PBXFileReference; explicitFileType = wrapper.cfbundle; includeInIndex = 0; path = CollectionViewToolsTests.xctest; sourceTree = BUILT_PRODUCTS_DIR; };
Expand Down Expand Up @@ -226,6 +228,7 @@
children = (
0A37635C1F62545A00A80613 /* Info.plist */,
0A3763541F62545A00A80613 /* CollectionViewTools.h */,
01F2E323267B2B550019B822 /* CellUpdateMode.swift */,
0A3763531F62545A00A80613 /* CollectionViewManager.swift */,
01078BF925C11F7700A11E1D /* SectionItemsProvider */,
0E0F4096222D4F0600B88DF3 /* Diff */,
Expand Down Expand Up @@ -509,6 +512,7 @@
0176C9D1258A0541006CA94C /* CollectionViewViewCell.swift in Sources */,
015A8AA9231394FC002600FF /* CellItemFactory.swift in Sources */,
01078C0225C1270D00A11E1D /* ViewCellItemsFactory.swift in Sources */,
01F2E324267B2B550019B822 /* CellUpdateMode.swift in Sources */,
0A37636B1F62545A00A80613 /* CollectionViewManager+UICollectionViewDataSourcePrefetching.swift in Sources */,
0A3763741F62545A00A80613 /* CollectionViewReusableViewItem.swift in Sources */,
0E0F40A1222D4F0600B88DF3 /* CollectionViewDiffAdaptor.swift in Sources */,
Expand Down
1 change: 1 addition & 0 deletions Example/Cartfile
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
github "Instagram/IGListKit"
github "onmyway133/DeepDiff"
1 change: 1 addition & 0 deletions Example/Cartfile.resolved
Original file line number Diff line number Diff line change
@@ -1 +1,2 @@
github "Instagram/IGListKit" "3.4.0"
github "onmyway133/DeepDiff" "2.3.3"
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
$(SRCROOT)/Carthage/Build/iOS/DeepDiff.framework
$(SRCROOT)/Carthage/Build/iOS/IGListKit.framework
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/DeepDiff.framework
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/IGListKit.framework
Empty file.
Empty file.
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$(SRCROOT)/Carthage/Build/iOS/DeepDiff.framework
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
$(BUILT_PRODUCTS_DIR)/$(FRAMEWORKS_FOLDER_PATH)/DeepDiff.framework
Loading

0 comments on commit 54b0d7a

Please sign in to comment.