Skip to content

Commit

Permalink
Merge pull request #23 from c-villain/issue-21
Browse files Browse the repository at this point in the history
fix for lazy stacks
  • Loading branch information
c-villain authored May 31, 2024
2 parents 6f7ccf6 + ccbf9c5 commit 270110b
Show file tree
Hide file tree
Showing 5 changed files with 711 additions and 474 deletions.
20 changes: 10 additions & 10 deletions Example/ExampleApp.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
/* End PBXBuildFile section */

/* Begin PBXFileReference section */
5A791F8B2A311D4200B55D61 /* SwipeActions */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwipeActions; path = ..; sourceTree = "<group>"; };
5A984633284780DC008CB7E9 /* ExampleView.swift */ = {isa = PBXFileReference; fileEncoding = 4; lastKnownFileType = sourcecode.swift; path = ExampleView.swift; sourceTree = "<group>"; };
5AE813DF29566AF1000B56B1 /* macOS.app */ = {isa = PBXFileReference; explicitFileType = wrapper.application; includeInIndex = 0; path = macOS.app; sourceTree = BUILT_PRODUCTS_DIR; };
5AE813E129566AF1000B56B1 /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
Expand All @@ -30,7 +31,6 @@
5AEC02B828477B9700709BAA /* AppDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = AppDelegate.swift; sourceTree = "<group>"; };
5AEC02BA28477B9700709BAA /* SceneDelegate.swift */ = {isa = PBXFileReference; lastKnownFileType = sourcecode.swift; path = SceneDelegate.swift; sourceTree = "<group>"; };
5AEC02C628477B9900709BAA /* Info.plist */ = {isa = PBXFileReference; lastKnownFileType = text.plist.xml; path = Info.plist; sourceTree = "<group>"; };
5AEC02CF28477EA000709BAA /* SwipeActions */ = {isa = PBXFileReference; lastKnownFileType = wrapper; name = SwipeActions; path = ../..; sourceTree = "<group>"; };
/* End PBXFileReference section */

/* Begin PBXFrameworksBuildPhase section */
Expand All @@ -53,6 +53,14 @@
/* End PBXFrameworksBuildPhase section */

/* Begin PBXGroup section */
5A791F8A2A311D4200B55D61 /* Packages */ = {
isa = PBXGroup;
children = (
5A791F8B2A311D4200B55D61 /* SwipeActions */,
);
name = Packages;
sourceTree = "<group>";
};
5A9846372847815E008CB7E9 /* Frameworks */ = {
isa = PBXGroup;
children = (
Expand Down Expand Up @@ -84,7 +92,7 @@
5AEC02AC28477B9700709BAA = {
isa = PBXGroup;
children = (
5AEC02CE28477E7800709BAA /* Packages */,
5A791F8A2A311D4200B55D61 /* Packages */,
5AEC02B728477B9700709BAA /* iOS */,
5AE813E029566AF1000B56B1 /* macOS */,
5AEC02B628477B9700709BAA /* Products */,
Expand All @@ -111,14 +119,6 @@
path = iOS;
sourceTree = "<group>";
};
5AEC02CE28477E7800709BAA /* Packages */ = {
isa = PBXGroup;
children = (
5AEC02CF28477EA000709BAA /* SwipeActions */,
);
path = Packages;
sourceTree = "<group>";
};
/* End PBXGroup section */

/* Begin PBXNativeTarget section */
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
<?xml version="1.0" encoding="UTF-8"?>
<Scheme
LastUpgradeVersion = "1520"
version = "1.7">
<BuildAction
parallelizeBuildables = "YES"
buildImplicitDependencies = "YES">
<BuildActionEntries>
<BuildActionEntry
buildForTesting = "YES"
buildForRunning = "YES"
buildForProfiling = "YES"
buildForArchiving = "YES"
buildForAnalyzing = "YES">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "5AEC02B428477B9700709BAA"
BuildableName = "ExampleApp.app"
BlueprintName = "ExampleApp"
ReferencedContainer = "container:ExampleApp.xcodeproj">
</BuildableReference>
</BuildActionEntry>
</BuildActionEntries>
</BuildAction>
<TestAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
shouldUseLaunchSchemeArgsEnv = "YES"
shouldAutocreateTestPlan = "YES">
</TestAction>
<LaunchAction
buildConfiguration = "Debug"
selectedDebuggerIdentifier = "Xcode.DebuggerFoundation.Debugger.LLDB"
selectedLauncherIdentifier = "Xcode.DebuggerFoundation.Launcher.LLDB"
launchStyle = "0"
useCustomWorkingDirectory = "NO"
ignoresPersistentStateOnLaunch = "NO"
debugDocumentVersioning = "YES"
debugServiceExtension = "internal"
allowLocationSimulation = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "5AEC02B428477B9700709BAA"
BuildableName = "ExampleApp.app"
BlueprintName = "ExampleApp"
ReferencedContainer = "container:ExampleApp.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</LaunchAction>
<ProfileAction
buildConfiguration = "Release"
shouldUseLaunchSchemeArgsEnv = "YES"
savedToolIdentifier = ""
useCustomWorkingDirectory = "NO"
debugDocumentVersioning = "YES">
<BuildableProductRunnable
runnableDebuggingMode = "0">
<BuildableReference
BuildableIdentifier = "primary"
BlueprintIdentifier = "5AEC02B428477B9700709BAA"
BuildableName = "ExampleApp.app"
BlueprintName = "ExampleApp"
ReferencedContainer = "container:ExampleApp.xcodeproj">
</BuildableReference>
</BuildableProductRunnable>
</ProfileAction>
<AnalyzeAction
buildConfiguration = "Debug">
</AnalyzeAction>
<ArchiveAction
buildConfiguration = "Release"
revealArchiveInOrganizer = "YES">
</ArchiveAction>
</Scheme>
Loading

0 comments on commit 270110b

Please sign in to comment.