diff --git a/Owl.xcodeproj/project.pbxproj b/Owl.xcodeproj/project.pbxproj index b6c8443..3341838 100644 --- a/Owl.xcodeproj/project.pbxproj +++ b/Owl.xcodeproj/project.pbxproj @@ -473,7 +473,8 @@ 641CD9C022789E5300C88886 /* Collection */, 641CD9E622789EA400C88886 /* Shared */, ); - path = Sources; + name = Sources; + path = Sources/Owl; sourceTree = ""; }; 8933C7831EB5B7EB000D00A4 /* Tests */ = { @@ -583,11 +584,12 @@ }; 52D6D9851BEFF229002C0205 = { CreatedOnToolsVersion = 7.1; + DevelopmentTeam = GHLS8P2M5V; LastSwiftMigration = 1020; }; 641CD9EA22789F0C00C88886 = { CreatedOnToolsVersion = 10.2.1; - DevelopmentTeam = E5DU3FA699; + DevelopmentTeam = GHLS8P2M5V; ProvisioningStyle = Automatic; }; }; @@ -939,6 +941,7 @@ isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = GHLS8P2M5V; INFOPLIST_FILE = Configs/OwlTests.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.Owl.Owl-iOS-Tests"; @@ -952,6 +955,7 @@ isa = XCBuildConfiguration; buildSettings = { CLANG_ENABLE_MODULES = YES; + DEVELOPMENT_TEAM = GHLS8P2M5V; INFOPLIST_FILE = Configs/OwlTests.plist; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks @loader_path/Frameworks"; PRODUCT_BUNDLE_IDENTIFIER = "com.Owl.Owl-iOS-Tests"; @@ -973,7 +977,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = E5DU3FA699; + DEVELOPMENT_TEAM = GHLS8P2M5V; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = OwlDemo/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 9.0; @@ -1000,7 +1004,7 @@ CLANG_WARN_UNGUARDED_AVAILABILITY = YES_AGGRESSIVE; CODE_SIGN_IDENTITY = "iPhone Developer"; CODE_SIGN_STYLE = Automatic; - DEVELOPMENT_TEAM = E5DU3FA699; + DEVELOPMENT_TEAM = GHLS8P2M5V; GCC_C_LANGUAGE_STANDARD = gnu11; INFOPLIST_FILE = OwlDemo/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 9.0; diff --git a/OwlKit.podspec b/OwlKit.podspec index efd26d1..3cc54a7 100644 --- a/OwlKit.podspec +++ b/OwlKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "OwlKit" - s.version = "1.0.5" + s.version = "1.1.0" s.summary = "A declarative type-safe framework for building fast and flexible list with Tables & Collections" s.description = <<-DESC Owl offers a data-driven declarative approach for building fast & flexible list in iOS. It supports both UICollectionView & UITableView; UIStackView is on the way!. diff --git a/Sources/Collection/Cell Adapter/CollectionCellAdapter+Events.swift b/Sources/Owl/Collection/Cell Adapter/CollectionCellAdapter+Events.swift similarity index 100% rename from Sources/Collection/Cell Adapter/CollectionCellAdapter+Events.swift rename to Sources/Owl/Collection/Cell Adapter/CollectionCellAdapter+Events.swift diff --git a/Sources/Collection/Cell Adapter/CollectionCellAdapter.swift b/Sources/Owl/Collection/Cell Adapter/CollectionCellAdapter.swift similarity index 100% rename from Sources/Collection/Cell Adapter/CollectionCellAdapter.swift rename to Sources/Owl/Collection/Cell Adapter/CollectionCellAdapter.swift diff --git a/Sources/Collection/CollectionDirector.swift b/Sources/Owl/Collection/CollectionDirector.swift similarity index 100% rename from Sources/Collection/CollectionDirector.swift rename to Sources/Owl/Collection/CollectionDirector.swift diff --git a/Sources/Collection/CollectionSection.swift b/Sources/Owl/Collection/CollectionSection.swift similarity index 100% rename from Sources/Collection/CollectionSection.swift rename to Sources/Owl/Collection/CollectionSection.swift diff --git a/Sources/Collection/FlowCollectionDirector.swift b/Sources/Owl/Collection/FlowCollectionDirector.swift similarity index 100% rename from Sources/Collection/FlowCollectionDirector.swift rename to Sources/Owl/Collection/FlowCollectionDirector.swift diff --git a/Sources/Collection/HeaderFooter Adapter/CollectionHeaderFooterAdapter.swift b/Sources/Owl/Collection/HeaderFooter Adapter/CollectionHeaderFooterAdapter.swift similarity index 100% rename from Sources/Collection/HeaderFooter Adapter/CollectionHeaderFooterAdapter.swift rename to Sources/Owl/Collection/HeaderFooter Adapter/CollectionHeaderFooterAdapter.swift diff --git a/Sources/Collection/Protocols & Supports/CollectionCellAdapterProtocol.swift b/Sources/Owl/Collection/Protocols & Supports/CollectionCellAdapterProtocol.swift similarity index 100% rename from Sources/Collection/Protocols & Supports/CollectionCellAdapterProtocol.swift rename to Sources/Owl/Collection/Protocols & Supports/CollectionCellAdapterProtocol.swift diff --git a/Sources/Collection/Protocols & Supports/CollectionDirector+Support.swift b/Sources/Owl/Collection/Protocols & Supports/CollectionDirector+Support.swift similarity index 100% rename from Sources/Collection/Protocols & Supports/CollectionDirector+Support.swift rename to Sources/Owl/Collection/Protocols & Supports/CollectionDirector+Support.swift diff --git a/Sources/Collection/Protocols & Supports/CollectionHeaderFooterProtocol.swift b/Sources/Owl/Collection/Protocols & Supports/CollectionHeaderFooterProtocol.swift similarity index 100% rename from Sources/Collection/Protocols & Supports/CollectionHeaderFooterProtocol.swift rename to Sources/Owl/Collection/Protocols & Supports/CollectionHeaderFooterProtocol.swift diff --git a/Sources/Shared/DifferenceKit/Algorithm.swift b/Sources/Owl/Shared/DifferenceKit/Algorithm.swift similarity index 100% rename from Sources/Shared/DifferenceKit/Algorithm.swift rename to Sources/Owl/Shared/DifferenceKit/Algorithm.swift diff --git a/Sources/Shared/DifferenceKit/Changeset.swift b/Sources/Owl/Shared/DifferenceKit/Changeset.swift similarity index 100% rename from Sources/Shared/DifferenceKit/Changeset.swift rename to Sources/Owl/Shared/DifferenceKit/Changeset.swift diff --git a/Sources/Shared/DifferenceKit/ElementPath.swift b/Sources/Owl/Shared/DifferenceKit/ElementPath.swift similarity index 100% rename from Sources/Shared/DifferenceKit/ElementPath.swift rename to Sources/Owl/Shared/DifferenceKit/ElementPath.swift diff --git a/Sources/Shared/DifferenceKit/StagedChangeset+Sectioned.swift b/Sources/Owl/Shared/DifferenceKit/StagedChangeset+Sectioned.swift similarity index 100% rename from Sources/Shared/DifferenceKit/StagedChangeset+Sectioned.swift rename to Sources/Owl/Shared/DifferenceKit/StagedChangeset+Sectioned.swift diff --git a/Sources/Shared/DifferenceKit/StagedChangeset.swift b/Sources/Owl/Shared/DifferenceKit/StagedChangeset.swift similarity index 100% rename from Sources/Shared/DifferenceKit/StagedChangeset.swift rename to Sources/Owl/Shared/DifferenceKit/StagedChangeset.swift diff --git a/Sources/Shared/DifferenceKit/UICollectionView+Support.swift b/Sources/Owl/Shared/DifferenceKit/UICollectionView+Support.swift similarity index 100% rename from Sources/Shared/DifferenceKit/UICollectionView+Support.swift rename to Sources/Owl/Shared/DifferenceKit/UICollectionView+Support.swift diff --git a/Sources/Shared/DifferenceKit/UITableView+Support.swift b/Sources/Owl/Shared/DifferenceKit/UITableView+Support.swift similarity index 100% rename from Sources/Shared/DifferenceKit/UITableView+Support.swift rename to Sources/Owl/Shared/DifferenceKit/UITableView+Support.swift diff --git a/Sources/Shared/Protocols/ElementRepresentable.swift b/Sources/Owl/Shared/Protocols/ElementRepresentable.swift similarity index 100% rename from Sources/Shared/Protocols/ElementRepresentable.swift rename to Sources/Owl/Shared/Protocols/ElementRepresentable.swift diff --git a/Sources/Shared/Protocols/Extras.swift b/Sources/Owl/Shared/Protocols/Extras.swift similarity index 100% rename from Sources/Shared/Protocols/Extras.swift rename to Sources/Owl/Shared/Protocols/Extras.swift diff --git a/Sources/Shared/Protocols/ReusableViewProtocol.swift b/Sources/Owl/Shared/Protocols/ReusableViewProtocol.swift similarity index 100% rename from Sources/Shared/Protocols/ReusableViewProtocol.swift rename to Sources/Owl/Shared/Protocols/ReusableViewProtocol.swift diff --git a/Sources/Shared/Protocols/ScrollViewEventsHandler.swift b/Sources/Owl/Shared/Protocols/ScrollViewEventsHandler.swift similarity index 100% rename from Sources/Shared/Protocols/ScrollViewEventsHandler.swift rename to Sources/Owl/Shared/Protocols/ScrollViewEventsHandler.swift diff --git a/Sources/Table/Cell Adapters/TableCellAdapter+Events.swift b/Sources/Owl/Table/Cell Adapters/TableCellAdapter+Events.swift similarity index 100% rename from Sources/Table/Cell Adapters/TableCellAdapter+Events.swift rename to Sources/Owl/Table/Cell Adapters/TableCellAdapter+Events.swift diff --git a/Sources/Table/Cell Adapters/TableCellAdapter.swift b/Sources/Owl/Table/Cell Adapters/TableCellAdapter.swift similarity index 100% rename from Sources/Table/Cell Adapters/TableCellAdapter.swift rename to Sources/Owl/Table/Cell Adapters/TableCellAdapter.swift diff --git a/Sources/Table/Header Adapter/TableHeaderFooterAdapter+Support.swift b/Sources/Owl/Table/Header Adapter/TableHeaderFooterAdapter+Support.swift similarity index 100% rename from Sources/Table/Header Adapter/TableHeaderFooterAdapter+Support.swift rename to Sources/Owl/Table/Header Adapter/TableHeaderFooterAdapter+Support.swift diff --git a/Sources/Table/Header Adapter/TableHeaderFooterAdapter.swift b/Sources/Owl/Table/Header Adapter/TableHeaderFooterAdapter.swift similarity index 100% rename from Sources/Table/Header Adapter/TableHeaderFooterAdapter.swift rename to Sources/Owl/Table/Header Adapter/TableHeaderFooterAdapter.swift diff --git a/Sources/Table/Protocols & Supports/TableCellAdapterProtocol.swift b/Sources/Owl/Table/Protocols & Supports/TableCellAdapterProtocol.swift similarity index 100% rename from Sources/Table/Protocols & Supports/TableCellAdapterProtocol.swift rename to Sources/Owl/Table/Protocols & Supports/TableCellAdapterProtocol.swift diff --git a/Sources/Table/Protocols & Supports/TableDirector+Support.swift b/Sources/Owl/Table/Protocols & Supports/TableDirector+Support.swift similarity index 100% rename from Sources/Table/Protocols & Supports/TableDirector+Support.swift rename to Sources/Owl/Table/Protocols & Supports/TableDirector+Support.swift diff --git a/Sources/Table/Protocols & Supports/TableSectionHeaderFooterProtocol.swift b/Sources/Owl/Table/Protocols & Supports/TableSectionHeaderFooterProtocol.swift similarity index 100% rename from Sources/Table/Protocols & Supports/TableSectionHeaderFooterProtocol.swift rename to Sources/Owl/Table/Protocols & Supports/TableSectionHeaderFooterProtocol.swift diff --git a/Sources/Table/TableDirector.swift b/Sources/Owl/Table/TableDirector.swift similarity index 100% rename from Sources/Table/TableDirector.swift rename to Sources/Owl/Table/TableDirector.swift diff --git a/Sources/Table/TableSection.swift b/Sources/Owl/Table/TableSection.swift similarity index 100% rename from Sources/Table/TableSection.swift rename to Sources/Owl/Table/TableSection.swift