diff --git a/CHANGELOG.md b/CHANGELOG.md deleted file mode 100644 index 04089b2..0000000 --- a/CHANGELOG.md +++ /dev/null @@ -1,11 +0,0 @@ - -# master - -### Group: Enhancement (1) -- 🔸Introduce MaskingNode [#27](https://github.com/TextureCommunity/TextureSwiftSupport/pull/27) by @muukii - - 🏷 `New API` - - -## Other (1) - -- 🔸Introduce Switch-Case declaration [#25](https://github.com/TextureCommunity/TextureSwiftSupport/pull/25) by @muukii diff --git a/Demo/Book.HStackLayout.swift b/Demo/Book.HStackLayout.swift index de921e5..26ed31c 100644 --- a/Demo/Book.HStackLayout.swift +++ b/Demo/Book.HStackLayout.swift @@ -12,6 +12,7 @@ extension Book { .setStrokeColor(.init(white: 0, alpha: 0.2)) } + @MainActor static func hStackLayout() -> BookView { BookNavigationLink(title: "HStackLayout") { diff --git a/Demo/Book.ImageNode.swift b/Demo/Book.ImageNode.swift index 870aee1..3795542 100644 --- a/Demo/Book.ImageNode.swift +++ b/Demo/Book.ImageNode.swift @@ -10,6 +10,7 @@ extension Book { return node } + @MainActor static func bookImageNode() -> BookView { BookNavigationLink(title: "ImageNode") { diff --git a/Demo/Book.InteractiveNode.swift b/Demo/Book.InteractiveNode.swift index d7bd80c..5e9d470 100644 --- a/Demo/Book.InteractiveNode.swift +++ b/Demo/Book.InteractiveNode.swift @@ -22,6 +22,7 @@ extension Book { } } + @MainActor static func bookInteractiveNode() -> BookView { BookNavigationLink(title: "InteractiveNode") { BookNodePreview { diff --git a/Demo/Book.LayerBacking.swift b/Demo/Book.LayerBacking.swift index cab6b8a..47f1f0b 100644 --- a/Demo/Book.LayerBacking.swift +++ b/Demo/Book.LayerBacking.swift @@ -5,6 +5,7 @@ import TextureSwiftSupport extension Book { + @MainActor static func layerBacked() -> BookView { BookNavigationLink(title: "LayerBacking") { diff --git a/Demo/Book.StyledEdgeNode.swift b/Demo/Book.StyledEdgeNode.swift index c69d282..0ee028d 100644 --- a/Demo/Book.StyledEdgeNode.swift +++ b/Demo/Book.StyledEdgeNode.swift @@ -4,6 +4,7 @@ import TextureSwiftSupport extension Book { + @MainActor static func bookStyledEdgeNode() -> BookView { BookNavigationLink(title: "StyledEdgeNode") { BookNodePreview { diff --git a/Demo/Book.TiledLayer.swift b/Demo/Book.TiledLayer.swift index 5be887a..22c505b 100644 --- a/Demo/Book.TiledLayer.swift +++ b/Demo/Book.TiledLayer.swift @@ -1,8 +1,10 @@ import StorybookKit -import EasyPeasy +import MondrianLayout +import UIKit extension Book { + @MainActor static func tiledLayer() -> BookView { BookNavigationLink(title: "Tile") { @@ -11,9 +13,11 @@ extension Book { BookForEach(data: 0..<50) { i in BookPreview { - with(TiledLayerView(identifier: i)) { - $0.backgroundColor = .systemYellow - $0.easy.layout([Size(60)]) + with(TiledLayerView(identifier: i)) { view in + view.backgroundColor = .systemYellow + Mondrian.layout { + view.mondrian.layout.size(.init(width: 60, height: 60)) + } } } } @@ -29,10 +33,12 @@ extension Book { with(UIButton(type: .system)) { $0.setTitle("Hello", for: .normal) }, - with(TiledLayerView(identifier: i)) { - $0.alpha = 1 - $0.isOpaque = false - $0.easy.layout([Size(60)]) + with(TiledLayerView(identifier: i)) { view in + view.alpha = 1 + view.isOpaque = false + Mondrian.layout { + view.mondrian.layout.size(.init(width: 60, height: 60)) + } }, ]) @@ -46,13 +52,17 @@ extension Book { BookForEach(data: 0..<50) { i in BookPreview { ZStackView(views: [ - with(TiledLayerView(identifier: i)) { - $0.backgroundColor = .systemYellow - $0.easy.layout([Size(60)]) + with(TiledLayerView(identifier: i)) { view in + view.backgroundColor = .systemYellow + Mondrian.layout { + view.mondrian.layout.size(.init(width: 60, height: 60)) + } }, - with(UIView()) { - $0.backgroundColor = .systemYellow - $0.easy.layout([Size(60)]) + with(UIView()) { view in + view.backgroundColor = .systemYellow + Mondrian.layout { + view.mondrian.layout.size(.init(width: 60, height: 60)) + } }, ]) } diff --git a/Demo/Book.swift b/Demo/Book.swift index c909ee4..0e62ce8 100644 --- a/Demo/Book.swift +++ b/Demo/Book.swift @@ -2,6 +2,7 @@ import StorybookKit import StorybookKitTextureSupport import TextureSwiftSupport +@MainActor let book = Book(title: "TextureSwiftSupport") { BookNavigationLink(title: "Standard Components") { diff --git a/Podfile b/Podfile deleted file mode 100644 index 89bf083..0000000 --- a/Podfile +++ /dev/null @@ -1,48 +0,0 @@ -# Uncomment the next line to define a global platform for your project -platform :ios, '13.0' -use_frameworks! - -def texture - pod "Texture/Core", "~> 3" #, git: 'git@github.com:TextureGroup/Texture.git', branch: 'master' -end - -target "TextureSwiftSupport" do - # Comment the next line if you don't want to use dynamic frameworks - - pod "Verge/Store" - pod "Descriptors", ">= 0.2.1" - texture - - target "TextureSwiftSupportTests" do - inherit! :search_paths - end -end - -target "Demo-TextureSwiftSuppoprt" do - texture - pod "TypedTextAttributes" - pod "GlossButtonNode" - pod "TextureSwiftSupport", path: "./" - pod "Reveal-SDK" - pod "StorybookKit" - pod "StorybookUI" - pod "StorybookKitTextureSupport" - pod "EasyPeasy" -end - -pre_install do |installer| - installer.aggregate_targets.each { |target| - puts "📦 #{target.name}" - - def print_pods(pod, depth) - puts "#{depth} -> #{pod.name}" - pod.dependent_targets.each { |d| - print_pods d, depth + " " - } - end - - target.pod_targets.each { |t| - print_pods t, "" - } - } -end diff --git a/Podfile.lock b/Podfile.lock deleted file mode 100644 index 94f4305..0000000 --- a/Podfile.lock +++ /dev/null @@ -1,89 +0,0 @@ -PODS: - - Descriptors (0.2.1): - - Descriptors/Core (= 0.2.1) - - Descriptors/Core (0.2.1) - - EasyPeasy (1.10.0) - - GlossButtonNode (3.3.0): - - Texture/Core (~> 3) - - TextureSwiftSupport (>= 3.10.0) - - Reveal-SDK (41) - - StorybookKit (1.7.0) - - StorybookKitTextureSupport (1.7.0): - - StorybookKit (>= 1.7.0) - - Texture/Core (>= 3.0.0) - - TextureBridging (>= 3.0.1) - - TextureSwiftSupport (>= 3.9.0) - - StorybookUI (1.7.0): - - StorybookKit (>= 1.3.0) - - Texture/Core (3.1.0) - - TextureBridging (3.1.0): - - Texture/Core (~> 3) - - TextureSwiftSupport (3.19.0): - - Texture/Core (>= 3) - - TextureSwiftSupport/Components (= 3.19.0) - - TextureSwiftSupport/Experiments (= 3.19.0) - - TextureSwiftSupport/Extensions (= 3.19.0) - - TextureSwiftSupport/LayoutSpecBuilders (= 3.19.0) - - TextureSwiftSupport/Components (3.19.0): - - Descriptors (>= 0.2.1) - - Texture/Core (>= 3) - - TextureSwiftSupport/LayoutSpecBuilders - - TextureSwiftSupport/Experiments (3.19.0): - - Texture/Core (>= 3) - - TextureSwiftSupport/Extensions (3.19.0): - - Texture/Core (>= 3) - - TextureSwiftSupport/LayoutSpecBuilders (3.19.0): - - Texture/Core (>= 3) - - TypedTextAttributes (1.4.0) - - Verge/ObjcBridge (8.19.0) - - Verge/Store (8.19.0): - - Verge/ObjcBridge - -DEPENDENCIES: - - Descriptors (>= 0.2.1) - - EasyPeasy - - GlossButtonNode - - Reveal-SDK - - StorybookKit - - StorybookKitTextureSupport - - StorybookUI - - Texture/Core (~> 3) - - TextureSwiftSupport (from `./`) - - TypedTextAttributes - - Verge/Store - -SPEC REPOS: - trunk: - - Descriptors - - EasyPeasy - - GlossButtonNode - - Reveal-SDK - - StorybookKit - - StorybookKitTextureSupport - - StorybookUI - - Texture - - TextureBridging - - TypedTextAttributes - - Verge - -EXTERNAL SOURCES: - TextureSwiftSupport: - :path: "./" - -SPEC CHECKSUMS: - Descriptors: 44f9f316368c2815048b1062e0be49be59c1c696 - EasyPeasy: b9b1bae024d21a7dfa9bad26d6826d88348cc6f1 - GlossButtonNode: f6d7d517406a012175d604eaa258f4ed2e5b58d8 - Reveal-SDK: c33a66072cd9ac5f3e6fb94984743ab5f3057d28 - StorybookKit: 6821c796c7abd909ea370dbf86eb7bd5087a9e04 - StorybookKitTextureSupport: 2fe047a155f87dedff413247ce1d53e26e726a1e - StorybookUI: aa60ba1ea5a169f39134822cddd2248f3840b79e - Texture: 2e8ab2519452515f7f5a520f5a8f7e0a413abfa3 - TextureBridging: ddc11a6abed757a57996ab7e0d2b37c78de7e6e0 - TextureSwiftSupport: 2de508abb74363be84f02721c5f0c273439963ee - TypedTextAttributes: 8b363a82553099d885c9f06648ae9aed09bec263 - Verge: 5199d7de11162b5568697dabdfab4f83d99d6436 - -PODFILE CHECKSUM: 4e988e9c85417e182d501d68fba7509ae874fb53 - -COCOAPODS: 1.11.3 diff --git a/TextureSwiftSupport.podspec b/TextureSwiftSupport.podspec deleted file mode 100644 index 751f9f9..0000000 --- a/TextureSwiftSupport.podspec +++ /dev/null @@ -1,39 +0,0 @@ -Pod::Spec.new do |spec| - spec.name = "TextureSwiftSupport" - spec.version = "3.19.0" - spec.summary = "A tool kit for Texture" - spec.description = <<-DESC - A library that gains Texture more power in Swift. - DESC - - spec.homepage = "https://github.com/TextureCommunity/TextureSwiftSupport" - spec.license = "MIT" - spec.author = { "Muukii" => "muukii.app@gmail.com" } - spec.social_media_url = "https://twitter.com/muukii_app" - spec.platform = :ios, "11.0" - spec.source = { :git => "https://github.com/TextureCommunity/TextureSwiftSupport.git", :tag => "#{spec.version}" } - - spec.swift_versions = ["5.6"] - spec.dependency "Texture/Core", ">= 3" - spec.weak_frameworks = ["Combine", "SwiftUI"] - - spec.default_subspecs = ["LayoutSpecBuilders", "Components", "Extensions", "Experiments"] - - spec.subspec "LayoutSpecBuilders" do |ss| - ss.source_files = "Sources/LayoutSpecBuilders/**/*.swift" - end - - spec.subspec "Components" do |ss| - ss.source_files = "Sources/Components/**/*.swift" - ss.dependency "TextureSwiftSupport/LayoutSpecBuilders" - ss.dependency "Descriptors", ">= 0.2.1" - end - - spec.subspec "Extensions" do |ss| - ss.source_files = "Sources/Extensions/**/*.swift" - end - - spec.subspec "Experiments" do |ss| - ss.source_files = "Sources/Experiments/**/*.swift" - end -end diff --git a/TextureSwiftSupport.xcodeproj/project.pbxproj b/TextureSwiftSupport.xcodeproj/project.pbxproj index cbc3047..c2bc2e2 100644 --- a/TextureSwiftSupport.xcodeproj/project.pbxproj +++ b/TextureSwiftSupport.xcodeproj/project.pbxproj @@ -3,16 +3,14 @@ archiveVersion = 1; classes = { }; - objectVersion = 51; + objectVersion = 54; objects = { /* Begin PBXBuildFile section */ - 0009F523080140C3E7B31A30 /* (null) in Frameworks */ = {isa = PBXBuildFile; }; - 20EEF9CEB2D760ACDBA32FDC /* Pods_TextureSwiftSupportTests.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 91088F2A9B60A29095FD9FB4 /* Pods_TextureSwiftSupportTests.framework */; }; - 264CCA05435A16E7B8FEAC33 /* Pods_TextureSwiftSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 5588E1FA8C15AB6EE5643869 /* Pods_TextureSwiftSupport.framework */; }; 4B086A462464434C0024F5A1 /* TextureSwiftSupport.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B086A452464434C0024F5A1 /* TextureSwiftSupport.swift */; }; 4B15BCD82667D717006A0D04 /* Book.StyledEdgeNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B15BCD72667D717006A0D04 /* Book.StyledEdgeNode.swift */; }; 4B19E610244DD9F0009FD799 /* AnyDisplayNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B19E60F244DD9F0009FD799 /* AnyDisplayNode.swift */; }; + 4B1D612B2A68E75F000FD6D9 /* TypedTextAttributes in Frameworks */ = {isa = PBXBuildFile; productRef = 4B1D612A2A68E75F000FD6D9 /* TypedTextAttributes */; }; 4B22761B2454A9E500F39A16 /* GradientLayerNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B22761A2454A9AF00F39A16 /* GradientLayerNode.swift */; }; 4B2497E02649646A0013340B /* GradientDrawingNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B2497DF2649646A0013340B /* GradientDrawingNode.swift */; }; 4B28C83E264FEDF900C1ABA3 /* TransitionLayoutViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B28C83D264FEDF900C1ABA3 /* TransitionLayoutViewController.swift */; }; @@ -47,6 +45,13 @@ 4B8A3026234DF6AD00082092 /* Modifiers.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B8A3025234DF6AD00082092 /* Modifiers.swift */; }; 4BB21B3A244E06E6008CA2A4 /* Mocks.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BB21B39244E06E6008CA2A4 /* Mocks.swift */; }; 4BB21B3E244E0E68008CA2A4 /* InstagramPostCellViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BB21B3D244E0E68008CA2A4 /* InstagramPostCellViewController.swift */; }; + 4BBD7E2E2A68E93300A5C919 /* AsyncDisplayKit in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E2D2A68E93300A5C919 /* AsyncDisplayKit */; }; + 4BBD7E312A68E96700A5C919 /* Descriptors in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E302A68E96700A5C919 /* Descriptors */; }; + 4BBD7E342A68F5B900A5C919 /* StorybookKit in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E332A68F5B900A5C919 /* StorybookKit */; }; + 4BBD7E362A68F5B900A5C919 /* StorybookKitTextureSupport in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E352A68F5B900A5C919 /* StorybookKitTextureSupport */; }; + 4BBD7E382A68F5B900A5C919 /* StorybookUI in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E372A68F5B900A5C919 /* StorybookUI */; }; + 4BBD7E3B2A68F5FF00A5C919 /* MondrianLayout in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E3A2A68F5FF00A5C919 /* MondrianLayout */; }; + 4BBD7E3E2A6931A100A5C919 /* GlossButtonNode in Frameworks */ = {isa = PBXBuildFile; productRef = 4BBD7E3D2A6931A100A5C919 /* GlossButtonNode */; }; 4BBF60FA24CC2FFA000E0E74 /* TextureSwiftSupportTests.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BBF60F924CC2FFA000E0E74 /* TextureSwiftSupportTests.swift */; }; 4BBF60FC24CC2FFA000E0E74 /* TextureSwiftSupport.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 4B873C2223083FE5006170B1 /* TextureSwiftSupport.framework */; }; 4BBF610224CC3016000E0E74 /* CompileCheck.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4B873C47230845E3006170B1 /* CompileCheck.swift */; }; @@ -87,7 +92,6 @@ 4BFE5FE12663DE9400C5C032 /* RootContainerViewController.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BFE5FE02663DE9400C5C032 /* RootContainerViewController.swift */; }; 4BFE5FE32663DEA900C5C032 /* Book.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BFE5FE22663DEA900C5C032 /* Book.swift */; }; 4BFE618A2663E8BF00C5C032 /* Book.InteractiveNode.swift in Sources */ = {isa = PBXBuildFile; fileRef = 4BFE61892663E8BF00C5C032 /* Book.InteractiveNode.swift */; }; - B188C97DC48229A4151F33DA /* Pods_Demo_TextureSwiftSuppoprt.framework in Frameworks */ = {isa = PBXBuildFile; fileRef = 3E6E8AD0C297FC7FA5F09E48 /* Pods_Demo_TextureSwiftSuppoprt.framework */; }; /* End PBXBuildFile section */ /* Begin PBXContainerItemProxy section */ @@ -101,8 +105,6 @@ /* End PBXContainerItemProxy section */ /* Begin PBXFileReference section */ - 1E08BF4C1207F3C017660189 /* Pods-TextureSwiftSupportTests.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TextureSwiftSupportTests.debug.xcconfig"; path = "Target Support Files/Pods-TextureSwiftSupportTests/Pods-TextureSwiftSupportTests.debug.xcconfig"; sourceTree = ""; }; - 3E6E8AD0C297FC7FA5F09E48 /* Pods_Demo_TextureSwiftSuppoprt.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_Demo_TextureSwiftSuppoprt.framework; sourceTree = BUILT_PRODUCTS_DIR; }; 4B086A452464434C0024F5A1 /* TextureSwiftSupport.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = TextureSwiftSupport.swift; sourceTree = ""; }; 4B15BCD72667D717006A0D04 /* Book.StyledEdgeNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Book.StyledEdgeNode.swift; sourceTree = ""; }; 4B19E60F244DD9F0009FD799 /* AnyDisplayNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AnyDisplayNode.swift; sourceTree = ""; }; @@ -187,13 +189,6 @@ 4BFE5FE02663DE9400C5C032 /* RootContainerViewController.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = RootContainerViewController.swift; sourceTree = ""; }; 4BFE5FE22663DEA900C5C032 /* Book.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Book.swift; sourceTree = ""; }; 4BFE61892663E8BF00C5C032 /* Book.InteractiveNode.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = Book.InteractiveNode.swift; sourceTree = ""; }; - 5588E1FA8C15AB6EE5643869 /* Pods_TextureSwiftSupport.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TextureSwiftSupport.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - 91088F2A9B60A29095FD9FB4 /* Pods_TextureSwiftSupportTests.framework */ = {isa = PBXFileReference; explicitFileType = wrapper.framework; includeInIndex = 0; path = Pods_TextureSwiftSupportTests.framework; sourceTree = BUILT_PRODUCTS_DIR; }; - B02B71231ED230DB8722C9C7 /* Pods-TextureSwiftSupport.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TextureSwiftSupport.release.xcconfig"; path = "Target Support Files/Pods-TextureSwiftSupport/Pods-TextureSwiftSupport.release.xcconfig"; sourceTree = ""; }; - CD3B576E353AEB6855833CE7 /* Pods-Demo-TextureSwiftSuppoprt.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Demo-TextureSwiftSuppoprt.debug.xcconfig"; path = "Target Support Files/Pods-Demo-TextureSwiftSuppoprt/Pods-Demo-TextureSwiftSuppoprt.debug.xcconfig"; sourceTree = ""; }; - DA836ECE323DE39E97934C59 /* Pods-TextureSwiftSupportTests.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TextureSwiftSupportTests.release.xcconfig"; path = "Target Support Files/Pods-TextureSwiftSupportTests/Pods-TextureSwiftSupportTests.release.xcconfig"; sourceTree = ""; }; - E57A1897A48223C2F66F3564 /* Pods-Demo-TextureSwiftSuppoprt.release.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-Demo-TextureSwiftSuppoprt.release.xcconfig"; path = "Target Support Files/Pods-Demo-TextureSwiftSuppoprt/Pods-Demo-TextureSwiftSuppoprt.release.xcconfig"; sourceTree = ""; }; - EAC3C6B1694E12B75FC90B4D /* Pods-TextureSwiftSupport.debug.xcconfig */ = {isa = PBXFileReference; includeInIndex = 1; lastKnownFileType = text.xcconfig; name = "Pods-TextureSwiftSupport.debug.xcconfig"; path = "Target Support Files/Pods-TextureSwiftSupport/Pods-TextureSwiftSupport.debug.xcconfig"; sourceTree = ""; }; /* End PBXFileReference section */ /* Begin PBXFrameworksBuildPhase section */ @@ -201,8 +196,8 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - 0009F523080140C3E7B31A30 /* (null) in Frameworks */, - 264CCA05435A16E7B8FEAC33 /* Pods_TextureSwiftSupport.framework in Frameworks */, + 4BBD7E2E2A68E93300A5C919 /* AsyncDisplayKit in Frameworks */, + 4BBD7E312A68E96700A5C919 /* Descriptors in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -210,7 +205,12 @@ isa = PBXFrameworksBuildPhase; buildActionMask = 2147483647; files = ( - B188C97DC48229A4151F33DA /* Pods_Demo_TextureSwiftSuppoprt.framework in Frameworks */, + 4BBD7E362A68F5B900A5C919 /* StorybookKitTextureSupport in Frameworks */, + 4BBD7E382A68F5B900A5C919 /* StorybookUI in Frameworks */, + 4BBD7E342A68F5B900A5C919 /* StorybookKit in Frameworks */, + 4BBD7E3B2A68F5FF00A5C919 /* MondrianLayout in Frameworks */, + 4B1D612B2A68E75F000FD6D9 /* TypedTextAttributes in Frameworks */, + 4BBD7E3E2A6931A100A5C919 /* GlossButtonNode in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -219,7 +219,6 @@ buildActionMask = 2147483647; files = ( 4BBF60FC24CC2FFA000E0E74 /* TextureSwiftSupport.framework in Frameworks */, - 20EEF9CEB2D760ACDBA32FDC /* Pods_TextureSwiftSupportTests.framework in Frameworks */, ); runOnlyForDeploymentPostprocessing = 0; }; @@ -303,8 +302,7 @@ 4B873C3423084045006170B1 /* Demo */, 4BBF60F824CC2FFA000E0E74 /* TextureSwiftSupportTests */, 4B873C2323083FE5006170B1 /* Products */, - C5EEA1EC56FCE6519A68BCC9 /* Pods */, - 8A82404125EEF03E855679FE /* Frameworks */, + 4BBD7E2C2A68E93300A5C919 /* Frameworks */, ); indentWidth = 2; sourceTree = ""; @@ -366,6 +364,13 @@ path = Components; sourceTree = ""; }; + 4BBD7E2C2A68E93300A5C919 /* Frameworks */ = { + isa = PBXGroup; + children = ( + ); + name = Frameworks; + sourceTree = ""; + }; 4BBF60F824CC2FFA000E0E74 /* TextureSwiftSupportTests */ = { isa = PBXGroup; children = ( @@ -456,29 +461,6 @@ path = ViewControllers; sourceTree = ""; }; - 8A82404125EEF03E855679FE /* Frameworks */ = { - isa = PBXGroup; - children = ( - 3E6E8AD0C297FC7FA5F09E48 /* Pods_Demo_TextureSwiftSuppoprt.framework */, - 5588E1FA8C15AB6EE5643869 /* Pods_TextureSwiftSupport.framework */, - 91088F2A9B60A29095FD9FB4 /* Pods_TextureSwiftSupportTests.framework */, - ); - name = Frameworks; - sourceTree = ""; - }; - C5EEA1EC56FCE6519A68BCC9 /* Pods */ = { - isa = PBXGroup; - children = ( - CD3B576E353AEB6855833CE7 /* Pods-Demo-TextureSwiftSuppoprt.debug.xcconfig */, - E57A1897A48223C2F66F3564 /* Pods-Demo-TextureSwiftSuppoprt.release.xcconfig */, - EAC3C6B1694E12B75FC90B4D /* Pods-TextureSwiftSupport.debug.xcconfig */, - B02B71231ED230DB8722C9C7 /* Pods-TextureSwiftSupport.release.xcconfig */, - 1E08BF4C1207F3C017660189 /* Pods-TextureSwiftSupportTests.debug.xcconfig */, - DA836ECE323DE39E97934C59 /* Pods-TextureSwiftSupportTests.release.xcconfig */, - ); - path = Pods; - sourceTree = ""; - }; /* End PBXGroup section */ /* Begin PBXHeadersBuildPhase section */ @@ -497,7 +479,6 @@ isa = PBXNativeTarget; buildConfigurationList = 4B873C2A23083FE5006170B1 /* Build configuration list for PBXNativeTarget "TextureSwiftSupport" */; buildPhases = ( - DB13A362C40B7E052DC61C10 /* [CP] Check Pods Manifest.lock */, 4B873C1D23083FE5006170B1 /* Headers */, 4B873C1E23083FE5006170B1 /* Sources */, 4B873C1F23083FE5006170B1 /* Frameworks */, @@ -508,6 +489,10 @@ dependencies = ( ); name = TextureSwiftSupport; + packageProductDependencies = ( + 4BBD7E2D2A68E93300A5C919 /* AsyncDisplayKit */, + 4BBD7E302A68E96700A5C919 /* Descriptors */, + ); productName = TextureSwiftSupport; productReference = 4B873C2223083FE5006170B1 /* TextureSwiftSupport.framework */; productType = "com.apple.product-type.framework"; @@ -516,17 +501,23 @@ isa = PBXNativeTarget; buildConfigurationList = 4B873C4423084047006170B1 /* Build configuration list for PBXNativeTarget "Demo-TextureSwiftSuppoprt" */; buildPhases = ( - 65EB39C001EC48166C208D1C /* [CP] Check Pods Manifest.lock */, 4B873C2F23084045006170B1 /* Sources */, 4B873C3023084045006170B1 /* Frameworks */, 4B873C3123084045006170B1 /* Resources */, - E581E5DC52AD1D15033DB59D /* [CP] Embed Pods Frameworks */, ); buildRules = ( ); dependencies = ( ); name = "Demo-TextureSwiftSuppoprt"; + packageProductDependencies = ( + 4B1D612A2A68E75F000FD6D9 /* TypedTextAttributes */, + 4BBD7E332A68F5B900A5C919 /* StorybookKit */, + 4BBD7E352A68F5B900A5C919 /* StorybookKitTextureSupport */, + 4BBD7E372A68F5B900A5C919 /* StorybookUI */, + 4BBD7E3A2A68F5FF00A5C919 /* MondrianLayout */, + 4BBD7E3D2A6931A100A5C919 /* GlossButtonNode */, + ); productName = Demo; productReference = 4B873C3323084045006170B1 /* Demo-TextureSwiftSuppoprt.app */; productType = "com.apple.product-type.application"; @@ -535,7 +526,6 @@ isa = PBXNativeTarget; buildConfigurationList = 4BBF610124CC2FFA000E0E74 /* Build configuration list for PBXNativeTarget "TextureSwiftSupportTests" */; buildPhases = ( - D7DD03C4E37A2A726E065B25 /* [CP] Check Pods Manifest.lock */, 4BBF60F324CC2FFA000E0E74 /* Sources */, 4BBF60F424CC2FFA000E0E74 /* Frameworks */, 4BBF60F524CC2FFA000E0E74 /* Resources */, @@ -581,6 +571,14 @@ Base, ); mainGroup = 4B873C1823083FE5006170B1; + packageReferences = ( + 4B1D61292A68E75F000FD6D9 /* XCRemoteSwiftPackageReference "TypedTextAttributes" */, + 4BBD7E2B2A68E84F00A5C919 /* XCRemoteSwiftPackageReference "Texture" */, + 4BBD7E2F2A68E96700A5C919 /* XCRemoteSwiftPackageReference "Descriptors" */, + 4BBD7E322A68E9FA00A5C919 /* XCRemoteSwiftPackageReference "Storybook-ios" */, + 4BBD7E392A68F5FF00A5C919 /* XCRemoteSwiftPackageReference "MondrianLayout" */, + 4BBD7E3C2A6931A100A5C919 /* XCRemoteSwiftPackageReference "GlossButtonNode" */, + ); productRefGroup = 4B873C2323083FE5006170B1 /* Products */; projectDirPath = ""; projectRoot = ""; @@ -618,92 +616,6 @@ }; /* End PBXResourcesBuildPhase section */ -/* Begin PBXShellScriptBuildPhase section */ - 65EB39C001EC48166C208D1C /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-Demo-TextureSwiftSuppoprt-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - D7DD03C4E37A2A726E065B25 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-TextureSwiftSupportTests-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - DB13A362C40B7E052DC61C10 /* [CP] Check Pods Manifest.lock */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - ); - inputPaths = ( - "${PODS_PODFILE_DIR_PATH}/Podfile.lock", - "${PODS_ROOT}/Manifest.lock", - ); - name = "[CP] Check Pods Manifest.lock"; - outputFileListPaths = ( - ); - outputPaths = ( - "$(DERIVED_FILE_DIR)/Pods-TextureSwiftSupport-checkManifestLockResult.txt", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n"; - showEnvVarsInLog = 0; - }; - E581E5DC52AD1D15033DB59D /* [CP] Embed Pods Frameworks */ = { - isa = PBXShellScriptBuildPhase; - buildActionMask = 2147483647; - files = ( - ); - inputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Demo-TextureSwiftSuppoprt/Pods-Demo-TextureSwiftSuppoprt-frameworks-${CONFIGURATION}-input-files.xcfilelist", - ); - name = "[CP] Embed Pods Frameworks"; - outputFileListPaths = ( - "${PODS_ROOT}/Target Support Files/Pods-Demo-TextureSwiftSuppoprt/Pods-Demo-TextureSwiftSuppoprt-frameworks-${CONFIGURATION}-output-files.xcfilelist", - ); - runOnlyForDeploymentPostprocessing = 0; - shellPath = /bin/sh; - shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Demo-TextureSwiftSuppoprt/Pods-Demo-TextureSwiftSuppoprt-frameworks.sh\"\n"; - showEnvVarsInLog = 0; - }; -/* End PBXShellScriptBuildPhase section */ - /* Begin PBXSourcesBuildPhase section */ 4B873C1E23083FE5006170B1 /* Sources */ = { isa = PBXSourcesBuildPhase; @@ -872,7 +784,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; MTL_ENABLE_DEBUG_INFO = INCLUDE_SOURCE; MTL_FAST_MATH = YES; ONLY_ACTIVE_ARCH = YES; @@ -929,7 +841,7 @@ GCC_WARN_UNINITIALIZED_AUTOS = YES_AGGRESSIVE; GCC_WARN_UNUSED_FUNCTION = YES; GCC_WARN_UNUSED_VARIABLE = YES; - IPHONEOS_DEPLOYMENT_TARGET = 13.0; + IPHONEOS_DEPLOYMENT_TARGET = 14.0; MTL_ENABLE_DEBUG_INFO = NO; MTL_FAST_MATH = YES; SDKROOT = iphoneos; @@ -943,7 +855,6 @@ }; 4B873C2B23083FE5006170B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = EAC3C6B1694E12B75FC90B4D /* Pods-TextureSwiftSupport.debug.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; @@ -952,7 +863,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -961,7 +872,7 @@ PRODUCT_BUNDLE_IDENTIFIER = me.muukii.TextureSwiftSupport; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; - SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_STRICT_CONCURRENCY = targeted; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; @@ -969,7 +880,6 @@ }; 4B873C2C23083FE5006170B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = B02B71231ED230DB8722C9C7 /* Pods-TextureSwiftSupport.release.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; DEFINES_MODULE = YES; @@ -978,7 +888,7 @@ DYLIB_INSTALL_NAME_BASE = "@rpath"; INFOPLIST_FILE = "$(SRCROOT)/Sources/Info.plist"; INSTALL_PATH = "$(LOCAL_LIBRARY_DIR)/Frameworks"; - IPHONEOS_DEPLOYMENT_TARGET = 10.0; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -987,7 +897,7 @@ PRODUCT_BUNDLE_IDENTIFIER = me.muukii.TextureSwiftSupport; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; SKIP_INSTALL = YES; - SWIFT_STRICT_CONCURRENCY = complete; + SWIFT_STRICT_CONCURRENCY = targeted; SWIFT_VERSION = 5.0; TARGETED_DEVICE_FAMILY = "1,2"; }; @@ -995,13 +905,13 @@ }; 4B873C4523084047006170B1 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = CD3B576E353AEB6855833CE7 /* Pods-Demo-TextureSwiftSuppoprt.debug.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = KU2QEJ9K3Z; INFOPLIST_FILE = Demo/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1016,13 +926,13 @@ }; 4B873C4623084047006170B1 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = E57A1897A48223C2F66F3564 /* Pods-Demo-TextureSwiftSuppoprt.release.xcconfig */; buildSettings = { ASSETCATALOG_COMPILER_APPICON_NAME = AppIcon; CLANG_ENABLE_MODULES = YES; CODE_SIGN_STYLE = Automatic; DEVELOPMENT_TEAM = KU2QEJ9K3Z; INFOPLIST_FILE = Demo/Info.plist; + IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = ( "$(inherited)", "@executable_path/Frameworks", @@ -1036,7 +946,6 @@ }; 4BBF60FF24CC2FFA000E0E74 /* Debug */ = { isa = XCBuildConfiguration; - baseConfigurationReference = 1E08BF4C1207F3C017660189 /* Pods-TextureSwiftSupportTests.debug.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; INFOPLIST_FILE = TextureSwiftSupportTests/Info.plist; @@ -1055,7 +964,6 @@ }; 4BBF610024CC2FFA000E0E74 /* Release */ = { isa = XCBuildConfiguration; - baseConfigurationReference = DA836ECE323DE39E97934C59 /* Pods-TextureSwiftSupportTests.release.xcconfig */; buildSettings = { CODE_SIGN_STYLE = Automatic; INFOPLIST_FILE = TextureSwiftSupportTests/Info.plist; @@ -1112,6 +1020,100 @@ defaultConfigurationName = Release; }; /* End XCConfigurationList section */ + +/* Begin XCRemoteSwiftPackageReference section */ + 4B1D61292A68E75F000FD6D9 /* XCRemoteSwiftPackageReference "TypedTextAttributes" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/FluidGroup/TypedTextAttributes.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 1.5.0; + }; + }; + 4BBD7E2B2A68E84F00A5C919 /* XCRemoteSwiftPackageReference "Texture" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/FluidGroup/Texture.git"; + requirement = { + kind = upToNextMinorVersion; + minimumVersion = 3.0.2; + }; + }; + 4BBD7E2F2A68E96700A5C919 /* XCRemoteSwiftPackageReference "Descriptors" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/FluidGroup/Descriptors.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 0.2.3; + }; + }; + 4BBD7E322A68E9FA00A5C919 /* XCRemoteSwiftPackageReference "Storybook-ios" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/eure/Storybook-ios.git"; + requirement = { + branch = main; + kind = branch; + }; + }; + 4BBD7E392A68F5FF00A5C919 /* XCRemoteSwiftPackageReference "MondrianLayout" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/FluidGroup/MondrianLayout.git"; + requirement = { + kind = upToNextMajorVersion; + minimumVersion = 0.10.0; + }; + }; + 4BBD7E3C2A6931A100A5C919 /* XCRemoteSwiftPackageReference "GlossButtonNode" */ = { + isa = XCRemoteSwiftPackageReference; + repositoryURL = "https://github.com/FluidGroup/GlossButtonNode"; + requirement = { + branch = main; + kind = branch; + }; + }; +/* End XCRemoteSwiftPackageReference section */ + +/* Begin XCSwiftPackageProductDependency section */ + 4B1D612A2A68E75F000FD6D9 /* TypedTextAttributes */ = { + isa = XCSwiftPackageProductDependency; + package = 4B1D61292A68E75F000FD6D9 /* XCRemoteSwiftPackageReference "TypedTextAttributes" */; + productName = TypedTextAttributes; + }; + 4BBD7E2D2A68E93300A5C919 /* AsyncDisplayKit */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E2B2A68E84F00A5C919 /* XCRemoteSwiftPackageReference "Texture" */; + productName = AsyncDisplayKit; + }; + 4BBD7E302A68E96700A5C919 /* Descriptors */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E2F2A68E96700A5C919 /* XCRemoteSwiftPackageReference "Descriptors" */; + productName = Descriptors; + }; + 4BBD7E332A68F5B900A5C919 /* StorybookKit */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E322A68E9FA00A5C919 /* XCRemoteSwiftPackageReference "Storybook-ios" */; + productName = StorybookKit; + }; + 4BBD7E352A68F5B900A5C919 /* StorybookKitTextureSupport */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E322A68E9FA00A5C919 /* XCRemoteSwiftPackageReference "Storybook-ios" */; + productName = StorybookKitTextureSupport; + }; + 4BBD7E372A68F5B900A5C919 /* StorybookUI */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E322A68E9FA00A5C919 /* XCRemoteSwiftPackageReference "Storybook-ios" */; + productName = StorybookUI; + }; + 4BBD7E3A2A68F5FF00A5C919 /* MondrianLayout */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E392A68F5FF00A5C919 /* XCRemoteSwiftPackageReference "MondrianLayout" */; + productName = MondrianLayout; + }; + 4BBD7E3D2A6931A100A5C919 /* GlossButtonNode */ = { + isa = XCSwiftPackageProductDependency; + package = 4BBD7E3C2A6931A100A5C919 /* XCRemoteSwiftPackageReference "GlossButtonNode" */; + productName = GlossButtonNode; + }; +/* End XCSwiftPackageProductDependency section */ }; rootObject = 4B873C1923083FE5006170B1 /* Project object */; } diff --git a/TextureSwiftSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata b/TextureSwiftSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata index eb7ebcb..919434a 100644 --- a/TextureSwiftSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata +++ b/TextureSwiftSupport.xcodeproj/project.xcworkspace/contents.xcworkspacedata @@ -2,6 +2,6 @@ + location = "self:"> diff --git a/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved b/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved new file mode 100644 index 0000000..c273b31 --- /dev/null +++ b/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -0,0 +1,77 @@ +{ + "pins" : [ + { + "identity" : "descriptors", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/Descriptors.git", + "state" : { + "revision" : "f41ce2605a76c5d378fe8c5e8c5c98b544dfd108", + "version" : "0.2.3" + } + }, + { + "identity" : "glossbuttonnode", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/GlossButtonNode", + "state" : { + "branch" : "main", + "revision" : "725ffe6041691e4533558253c77db01555eda0a9" + } + }, + { + "identity" : "mondrianlayout", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/MondrianLayout.git", + "state" : { + "revision" : "5f00b13984fe08316fc5b5be06e2f41c14a3befa", + "version" : "0.10.0" + } + }, + { + "identity" : "storybook-ios", + "kind" : "remoteSourceControl", + "location" : "https://github.com/eure/Storybook-ios.git", + "state" : { + "branch" : "main", + "revision" : "d3a5de05361ed0340f0a954711e4a59bfd09ad7f" + } + }, + { + "identity" : "texture", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/Texture.git", + "state" : { + "branch" : "spm", + "revision" : "17e0b467fe7360cfb29f2612785acf60e86775e9" + } + }, + { + "identity" : "texturebridging", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/TextureBridging.git", + "state" : { + "branch" : "main", + "revision" : "ed8d3ac84c3fda90832c793fdeb8972154bd15fe" + } + }, + { + "identity" : "textureswiftsupport", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/TextureSwiftSupport.git", + "state" : { + "branch" : "main", + "revision" : "5b7396f5447535c3b0f539351ea95ffd029e63d8" + } + }, + { + "identity" : "typedtextattributes", + "kind" : "remoteSourceControl", + "location" : "https://github.com/FluidGroup/TypedTextAttributes.git", + "state" : { + "revision" : "22aadd76b1cfe7a0702200990c9c5b8f4d33a912", + "version" : "1.5.0" + } + } + ], + "version" : 2 +} diff --git a/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcuserdata/muukii.xcuserdatad/UserInterfaceState.xcuserstate b/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcuserdata/muukii.xcuserdatad/UserInterfaceState.xcuserstate index 055c565..f2ede85 100644 Binary files a/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcuserdata/muukii.xcuserdatad/UserInterfaceState.xcuserstate and b/TextureSwiftSupport.xcodeproj/project.xcworkspace/xcuserdata/muukii.xcuserdatad/UserInterfaceState.xcuserstate differ diff --git a/TextureSwiftSupport.xcworkspace/contents.xcworkspacedata b/TextureSwiftSupport.xcworkspace/contents.xcworkspacedata deleted file mode 100644 index a24b0fd..0000000 --- a/TextureSwiftSupport.xcworkspace/contents.xcworkspacedata +++ /dev/null @@ -1,10 +0,0 @@ - - - - - - - diff --git a/TextureSwiftSupport.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist b/TextureSwiftSupport.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist deleted file mode 100644 index 18d9810..0000000 --- a/TextureSwiftSupport.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +++ /dev/null @@ -1,8 +0,0 @@ - - - - - IDEDidComputeMac32BitWarning - - -