Skip to content

Commit

Permalink
Update SoulverCore framework (v1.1.4)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcohan committed Nov 2, 2020
1 parent 3a81e9a commit 78146da
Show file tree
Hide file tree
Showing 42 changed files with 1,346 additions and 1,285 deletions.
4 changes: 2 additions & 2 deletions Package.swift
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ let package = Package(
targets: [
.binaryTarget(
name: "SoulverCore",
url: "https://github.com/soulverteam/SoulverCore/releases/download/1.1.3/SoulverCore.xcframework.zip",
checksum: "ecd59c3fb1819809655f1dcee082212604a8ee54fff1ce084fde463b46bda445"),
url: "https://github.com/soulverteam/SoulverCore/releases/download/1.1.4/SoulverCore.xcframework.zip",
checksum: "3455794578c7978defd8c572e83e5426075f4f1bbed9a32b2db6047a9d58de83"),
]
)
18 changes: 9 additions & 9 deletions SoulverCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,15 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>macos-x86_64</string>
<string>ios-arm64</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>x86_64</string>
<string>arm64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
Expand All @@ -32,30 +32,30 @@
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>macos-x86_64</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>macos</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64</string>
<string>ios-arm64_x86_64-simulator</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
<array>
<string>arm64</string>
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,14 +207,13 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif
/// Subclass of <code>Operation</code> that add support of asynchronous operations.
/// <h2>How to use:</h2>
/// Subclass of <code>Operation</code> that adds support of asynchronous operations.
/// <ol>
/// <li>
/// Call <code>super.main()</code> when override <code>main</code> method, call <code>super.start()</code> when override <code>start</code> method.
/// Call <code>super.main()</code> when override <code>main</code> method.
/// </li>
/// <li>
/// When operation is finished or cancelled set <code>self.state = .finished</code>
/// When operation is finished or cancelled set <code>state = .finished</code> or <code>finish()</code>
/// </li>
/// </ol>
SWIFT_CLASS("_TtC11SoulverCore21AsynchronousOperation")
Expand Down
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 78146da

Please sign in to comment.