Skip to content

Commit

Permalink
Update SoulverCore framework (v1.4.2)
Browse files Browse the repository at this point in the history
  • Loading branch information
zcohan committed Sep 21, 2021
1 parent e76b6d4 commit ddf0970
Show file tree
Hide file tree
Showing 40 changed files with 1,932 additions and 1,603 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.4.1/SoulverCore.xcframework.zip",
checksum: "9b183afc202cb352f8cbdb86757177c5fe6f90968d3c5444a9f1325476ba4cdd"),
url: "https://github.com/soulverteam/SoulverCore/releases/download/1.4.2/SoulverCore.xcframework.zip",
checksum: "25235e6f60129bf02205922a20e9a547ae510da2f2a2c10e1c3d8dbc982cc8d7"),
]
)
22 changes: 11 additions & 11 deletions SoulverCore.xcframework/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<array>
<dict>
<key>LibraryIdentifier</key>
<string>macos-arm64_x86_64</string>
<string>ios-arm64_x86_64-maccatalyst</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -15,38 +15,40 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>macos</string>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>maccatalyst</string>
</dict>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-maccatalyst</string>
<string>ios-arm64</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>maccatalyst</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>
<dict>
<key>LibraryIdentifier</key>
<string>ios-arm64_x86_64-simulator</string>
<string>macos-arm64_x86_64</string>
<key>LibraryPath</key>
<string>SoulverCore.framework</string>
<key>SupportedArchitectures</key>
Expand All @@ -55,9 +57,7 @@
<string>x86_64</string>
</array>
<key>SupportedPlatform</key>
<string>ios</string>
<key>SupportedPlatformVariant</key>
<string>simulator</string>
<string>macos</string>
</dict>
</array>
<key>CFBundlePackageType</key>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -229,10 +229,27 @@ SWIFT_CLASS("_TtC11SoulverCore21AsynchronousOperation")
SWIFT_CLASS("_TtC11SoulverCore41DependenciesEvaluationAndMergingOperation")
@interface DependenciesEvaluationAndMergingOperation : AsynchronousOperation
- (void)main;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
SWIFT_CLASS("_TtC11SoulverCore46VanillaBackgroundEvaluationAndMergingOperation")
@interface VanillaBackgroundEvaluationAndMergingOperation : AsynchronousOperation
- (void)main;
- (nonnull instancetype)init SWIFT_UNAVAILABLE;
+ (nonnull instancetype)new SWIFT_UNAVAILABLE_MSG("-init is unavailable");
@end
#if __has_attribute(external_source_symbol)
# pragma clang attribute pop
#endif
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -1900,6 +1900,9 @@ open class StandardEvaluator : SoulverCore.Evaluator {
}
public protocol TokenMetadata {
}
public struct URLTokenMetadata : SoulverCore.TokenMetadata {
public var url: Foundation.URL
}
public struct DynamicVariableTokenMetadata : SoulverCore.TokenMetadata {
public let dynamicVariable: SoulverCore.DynamicVariable
public let value: SoulverCore.CalculationResult
Expand Down Expand Up @@ -2102,6 +2105,7 @@ public enum FunctionIdentifier : Swift.String, Swift.CaseIterable, Swift.Codable
case halfwayBetweenDates
case weekdayAfterTimespan
case weekNumberOnDate
case weekOfYear
case timeInTimezone
case differenceBetweenTimezones
case generateTimestamp
Expand All @@ -2120,6 +2124,7 @@ public enum FunctionIdentifier : Swift.String, Swift.CaseIterable, Swift.Codable
case annualLoanRepayment
case monthlyLoanRepayment
case compoundInterest
case compoundInterestCompoundingMonthly
case pythagorusSeekingHypotenuse
case pythagorusSeekingOtherSide
case tagTotal
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1900,6 +1900,9 @@ open class StandardEvaluator : SoulverCore.Evaluator {
}
public protocol TokenMetadata {
}
public struct URLTokenMetadata : SoulverCore.TokenMetadata {
public var url: Foundation.URL
}
public struct DynamicVariableTokenMetadata : SoulverCore.TokenMetadata {
public let dynamicVariable: SoulverCore.DynamicVariable
public let value: SoulverCore.CalculationResult
Expand Down Expand Up @@ -2102,6 +2105,7 @@ public enum FunctionIdentifier : Swift.String, Swift.CaseIterable, Swift.Codable
case halfwayBetweenDates
case weekdayAfterTimespan
case weekNumberOnDate
case weekOfYear
case timeInTimezone
case differenceBetweenTimezones
case generateTimestamp
Expand All @@ -2120,6 +2124,7 @@ public enum FunctionIdentifier : Swift.String, Swift.CaseIterable, Swift.Codable
case annualLoanRepayment
case monthlyLoanRepayment
case compoundInterest
case compoundInterestCompoundingMonthly
case pythagorusSeekingHypotenuse
case pythagorusSeekingOtherSide
case tagTotal
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -6,39 +6,39 @@
<dict>
<key>Headers/SoulverCore-Swift.h</key>
<data>
2UoVh1ni70cIQ9/Ys0dF+7T/GYg=
ACTXpTGuTnagWLbww4+G5QQnnM4=
</data>
<key>Headers/SoulverCore.h</key>
<data>
9Qoof5tv9LEhTfcvrFTFpKLHYQM=
</data>
<key>Info.plist</key>
<data>
w5vqHwWoYa4C96MfOJm+fANhlwU=
/z8xdFIVSTN7bSjfhi77I6DhVs8=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64-apple-ios.swiftdoc</key>
<data>
n2maL8qHuMGWrdUZ1SU3M73gBLo=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64-apple-ios.swiftinterface</key>
<data>
Se56FnqZ/LUdwbg+E5gIhRB4Zao=
2y3PC+jdJyGG0mLr42v+6Bv++ZI=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64-apple-ios.swiftmodule</key>
<data>
iFHyThEyq6XKTMa2Zz+ENHw0qWw=
QxjLC9wwDJt8xIKEb/HGr3eFA84=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64.swiftdoc</key>
<data>
n2maL8qHuMGWrdUZ1SU3M73gBLo=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64.swiftinterface</key>
<data>
Se56FnqZ/LUdwbg+E5gIhRB4Zao=
2y3PC+jdJyGG0mLr42v+6Bv++ZI=
</data>
<key>Modules/SoulverCore.swiftmodule/arm64.swiftmodule</key>
<data>
iFHyThEyq6XKTMa2Zz+ENHw0qWw=
QxjLC9wwDJt8xIKEb/HGr3eFA84=
</data>
<key>Modules/module.modulemap</key>
<data>
Expand Down Expand Up @@ -147,7 +147,7 @@
<dict>
<key>hash</key>
<data>
1pg+/X9hKsIu2U/o/uhCfc1qKRw=
eEcxNg6shSit9/QlzFQhRuFi2fg=
</data>
<key>optional</key>
<true/>
Expand All @@ -156,7 +156,7 @@
<dict>
<key>hash</key>
<data>
9DGsMg9KljY83JyqZZRtPMcoXBU=
izg+3fvHFEVk1t9BwHMuXftorfM=
</data>
<key>optional</key>
<true/>
Expand Down Expand Up @@ -393,7 +393,7 @@
<dict>
<key>hash2</key>
<data>
WowZV8PffPb7H7pzAgmzQdmMTit3rnM/zlxjTUlI3SQ=
mQqwXdgbHEriWJfduRXnSJc7HHTSdTA10PWgu7/ZBgM=
</data>
</dict>
<key>Headers/SoulverCore.h</key>
Expand All @@ -414,14 +414,14 @@
<dict>
<key>hash2</key>
<data>
2+6aepRteK4JlR+mPrQyEC021KgweZ9EDQ5sX3zE+GY=
lbaMC3xT9VZOo2e8xgk7BkY0bTWiEaQHooRq8KPOSJ0=
</data>
</dict>
<key>Modules/SoulverCore.swiftmodule/arm64-apple-ios.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
n1p9Nro1o8H4dX4BjPTYwcdj1hCzMUQv5kJaAQWXtVA=
VMB9NzvfaayVBRJF6MdJRA+UXK6dpsdcbnKXkN2MIlM=
</data>
</dict>
<key>Modules/SoulverCore.swiftmodule/arm64.swiftdoc</key>
Expand All @@ -435,14 +435,14 @@
<dict>
<key>hash2</key>
<data>
2+6aepRteK4JlR+mPrQyEC021KgweZ9EDQ5sX3zE+GY=
lbaMC3xT9VZOo2e8xgk7BkY0bTWiEaQHooRq8KPOSJ0=
</data>
</dict>
<key>Modules/SoulverCore.swiftmodule/arm64.swiftmodule</key>
<dict>
<key>hash2</key>
<data>
n1p9Nro1o8H4dX4BjPTYwcdj1hCzMUQv5kJaAQWXtVA=
VMB9NzvfaayVBRJF6MdJRA+UXK6dpsdcbnKXkN2MIlM=
</data>
</dict>
<key>Modules/module.modulemap</key>
Expand Down Expand Up @@ -555,7 +555,7 @@
<dict>
<key>hash2</key>
<data>
+UwMAUcuzTBhMq9DApZvwfqUNhnpOo/LoCAf4eUw1ko=
ZdINPWWkvle8yS4tIhFDtnqzsU34pMMvUZz70uyJm/w=
</data>
<key>optional</key>
<true/>
Expand All @@ -564,7 +564,7 @@
<dict>
<key>hash2</key>
<data>
/SL5NQqYu+hyJX5y30O+3z1aqAIgSIeJJQ9ytRzW3ig=
/wagTMP0mtPaDQfpJkTk4vLkKdXcggagMU5rKzeuEYc=
</data>
<key>optional</key>
<true/>
Expand Down
Loading

0 comments on commit ddf0970

Please sign in to comment.