-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #12 from gurhub/feature-FinalActions
Feature final actions merged to the master branch
- Loading branch information
Showing
7 changed files
with
171 additions
and
89 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,29 +1,33 @@ | ||
<?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>output_path</key> | ||
<string>build</string> | ||
<key>framework</key> | ||
<string>xcf</string> | ||
<key>targets</key> | ||
<array> | ||
<dict> | ||
<key>sdk</key> | ||
<string>iOS</string> | ||
<key>workspace</key> | ||
<string>surmagic-demo.xcworkspace</string> | ||
<key>scheme</key> | ||
<string>xcf</string> | ||
</dict> | ||
<dict> | ||
<key>sdk</key> | ||
<string>iOSSimulator</string> | ||
<key>workspace</key> | ||
<string>surmagic-demo.xcworkspace</string> | ||
<key>scheme</key> | ||
<string>xcf</string> | ||
</dict> | ||
</array> | ||
</dict> | ||
<dict> | ||
<key>output_path</key> | ||
<string>build</string> | ||
<key>framework</key> | ||
<string>xcf</string> | ||
<key>targets</key> | ||
<array> | ||
<dict> | ||
<key>sdk</key> | ||
<string>iOS</string> | ||
<key>workspace</key> | ||
<string>surmagic-demo.xcworkspace</string> | ||
<key>scheme</key> | ||
<string>xcf</string> | ||
</dict> | ||
<dict> | ||
<key>sdk</key> | ||
<string>iOSSimulator</string> | ||
<key>workspace</key> | ||
<string>surmagic-demo.xcworkspace</string> | ||
<key>scheme</key> | ||
<string>xcf</string> | ||
</dict> | ||
</array> | ||
<key>finalActions</key> | ||
<array> | ||
<string>openDirectory</string> | ||
</array> | ||
</dict> | ||
</plist> |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
// | ||
// FinalAction.swift | ||
// Surmagic | ||
// | ||
// Created by Muhammed Gurhan Yerlikaya on 6.02.2022. | ||
// Copyright © 2022 https://github.com/gurhub/surmagic. | ||
// | ||
|
||
import Foundation | ||
|
||
public enum FinalAction: String, Codable { | ||
case openDirectory /// Opens the target directory. | ||
|
||
var description: String { | ||
switch self { | ||
case .openDirectory: return "openDirectory" | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters