diff --git a/Frameworks/iOS/Starscream.framework/Headers/Starscream-Swift.h b/Frameworks/iOS/Starscream.framework/Headers/Starscream-Swift.h index 25961f6..34086d9 100644 --- a/Frameworks/iOS/Starscream.framework/Headers/Starscream-Swift.h +++ b/Frameworks/iOS/Starscream.framework/Headers/Starscream-Swift.h @@ -1,6 +1,462 @@ +#ifndef TARGET_OS_SIMULATOR +#include +#endif +#if TARGET_OS_SIMULATOR +#if 0 +#elif defined(__x86_64__) && __x86_64__ +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Starscream",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +@class NSStream; + +SWIFT_CLASS("_TtC10Starscream16FoundationStream") +@interface FoundationStream : NSObject +/// Delegate for the stream methods. Processes incoming bytes +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC10Starscream9WebSocket") +@interface WebSocket : NSObject +- (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 +#pragma clang diagnostic pop + +#elif defined(__i386__) && __i386__ +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Starscream",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +@class NSStream; + +SWIFT_CLASS("_TtC10Starscream16FoundationStream") +@interface FoundationStream : NSObject +/// Delegate for the stream methods. Processes incoming bytes +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC10Starscream9WebSocket") +@interface WebSocket : NSObject +- (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 +#pragma clang diagnostic pop + +#endif + +#else #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -112,6 +568,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -153,6 +618,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -164,6 +632,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -209,7 +680,7 @@ SWIFT_CLASS("_TtC10Starscream9WebSocket") #pragma clang diagnostic pop #elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__ -// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -321,6 +792,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -362,6 +842,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -373,6 +856,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -418,3 +904,5 @@ SWIFT_CLASS("_TtC10Starscream9WebSocket") #pragma clang diagnostic pop #endif + +#endif diff --git a/Frameworks/iOS/Starscream.framework/Info.plist b/Frameworks/iOS/Starscream.framework/Info.plist index 31b39e1..4af02fa 100644 Binary files a/Frameworks/iOS/Starscream.framework/Info.plist and b/Frameworks/iOS/Starscream.framework/Info.plist differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftdoc index bda1fe9..455e883 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftdoc and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftmodule index 953fb9b..7c8429c 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftmodule and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..d64cca9 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftmodule new file mode 100644 index 0000000..1337d38 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc index 7ecbdf4..d64cca9 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule index e94f27d..1337d38 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftdoc new file mode 100644 index 0000000..455e883 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftmodule new file mode 100644 index 0000000..7c8429c Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7-apple-ios.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftdoc index bda1fe9..455e883 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftdoc and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftmodule index 953fb9b..7c8429c 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftmodule and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/armv7.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..d166681 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..89b52a5 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386-apple-ios-simulator.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftdoc index 68ac808..d166681 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftdoc and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftmodule index 380bad8..89b52a5 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftmodule and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/i386.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..7b59ad2 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..c1d9c88 Binary files /dev/null and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc index d01ef24..7b59ad2 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule index c585cdb..c1d9c88 100644 Binary files a/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule and b/Frameworks/iOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/iOS/Starscream.framework/Starscream b/Frameworks/iOS/Starscream.framework/Starscream index 7434637..ed5b857 100755 Binary files a/Frameworks/iOS/Starscream.framework/Starscream and b/Frameworks/iOS/Starscream.framework/Starscream differ diff --git a/Frameworks/iOS/Swifter.framework/Headers/Swifter-Swift.h b/Frameworks/iOS/Swifter.framework/Headers/Swifter-Swift.h index a1f6e94..36c0f7d 100644 --- a/Frameworks/iOS/Swifter.framework/Headers/Swifter-Swift.h +++ b/Frameworks/iOS/Swifter.framework/Headers/Swifter-Swift.h @@ -1,6 +1,436 @@ +#ifndef TARGET_OS_SIMULATOR +#include +#endif +#if TARGET_OS_SIMULATOR +#if 0 +#elif defined(__x86_64__) && __x86_64__ +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Swifter",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + + + + + +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop + +#elif defined(__i386__) && __i386__ +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Swifter",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + + + + + +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop + +#endif + +#else #if 0 #elif defined(__arm64__) && __arm64__ -// Generated by Apple Swift version 5.0 effective-4.2 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -112,6 +542,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -153,6 +592,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -164,6 +606,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -196,7 +641,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic pop #elif defined(__ARM_ARCH_7A__) && __ARM_ARCH_7A__ -// Generated by Apple Swift version 5.0 effective-4.2 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -308,6 +753,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -349,6 +803,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -360,6 +817,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -392,3 +852,5 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #pragma clang diagnostic pop #endif + +#endif diff --git a/Frameworks/iOS/Swifter.framework/Info.plist b/Frameworks/iOS/Swifter.framework/Info.plist index d4a672f..34dbd52 100644 Binary files a/Frameworks/iOS/Swifter.framework/Info.plist and b/Frameworks/iOS/Swifter.framework/Info.plist differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftdoc index 4ed4839..e613285 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftdoc and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftmodule index fb4d615..8b2b654 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftmodule and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftdoc new file mode 100644 index 0000000..2557954 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftmodule new file mode 100644 index 0000000..dfa99a2 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-ios.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc index 794b2e9..2557954 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule index fde19fb..dfa99a2 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftdoc new file mode 100644 index 0000000..e613285 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftmodule new file mode 100644 index 0000000..8b2b654 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7-apple-ios.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftdoc index 4ed4839..e613285 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftdoc and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftmodule index fb4d615..8b2b654 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftmodule and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/armv7.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..a9a79ef Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..2ee15b1 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386-apple-ios-simulator.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftdoc index ec479e8..a9a79ef 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftdoc and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftmodule index 559a344..2ee15b1 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftmodule and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/i386.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftdoc new file mode 100644 index 0000000..089fedf Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftmodule new file mode 100644 index 0000000..5bec7a1 Binary files /dev/null and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-ios-simulator.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc index 6bf1edb..089fedf 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule index 914764c..5bec7a1 100644 Binary files a/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule and b/Frameworks/iOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/iOS/Swifter.framework/Swifter b/Frameworks/iOS/Swifter.framework/Swifter index 68517e3..9ab9672 100755 Binary files a/Frameworks/iOS/Swifter.framework/Swifter and b/Frameworks/iOS/Swifter.framework/Swifter differ diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Headers/Starscream-Swift.h b/Frameworks/macOS/Starscream.framework/Versions/A/Headers/Starscream-Swift.h index ef07997..daa347b 100644 --- a/Frameworks/macOS/Starscream.framework/Versions/A/Headers/Starscream-Swift.h +++ b/Frameworks/macOS/Starscream.framework/Versions/A/Headers/Starscream-Swift.h @@ -1,4 +1,4 @@ -// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -110,6 +110,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -151,6 +160,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -162,6 +174,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftdoc b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftdoc new file mode 100644 index 0000000..c182f20 Binary files /dev/null and b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftdoc differ diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftmodule b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftmodule new file mode 100644 index 0000000..d3f804a Binary files /dev/null and b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64-apple-macos.swiftmodule differ diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftdoc b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftdoc index af8d5c9..c182f20 100644 Binary files a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftdoc and b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftmodule b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftmodule index f2a0d96..d3f804a 100644 Binary files a/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftmodule and b/Frameworks/macOS/Starscream.framework/Versions/A/Modules/Starscream.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Resources/Info.plist b/Frameworks/macOS/Starscream.framework/Versions/A/Resources/Info.plist index 5a47f49..3c67bf5 100644 --- a/Frameworks/macOS/Starscream.framework/Versions/A/Resources/Info.plist +++ b/Frameworks/macOS/Starscream.framework/Versions/A/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 18E226 + 18G103 CFBundleDevelopmentRegion en CFBundleExecutable @@ -29,17 +29,19 @@ DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 10E125 + 11A419c DTPlatformVersion GM DTSDKBuild - 18E219 + 19A547 DTSDKName - macosx10.14 + macosx10.15 DTXcode - 1020 + 1100 DTXcodeBuild - 10E125 + 11A419c + LSMinimumSystemVersion + 10.10 UIDeviceFamily 1 diff --git a/Frameworks/macOS/Starscream.framework/Versions/A/Starscream b/Frameworks/macOS/Starscream.framework/Versions/A/Starscream index 3c410f0..960b5f8 100755 Binary files a/Frameworks/macOS/Starscream.framework/Versions/A/Starscream and b/Frameworks/macOS/Starscream.framework/Versions/A/Starscream differ diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Headers/Swifter-Swift.h b/Frameworks/macOS/Swifter.framework/Versions/A/Headers/Swifter-Swift.h index 3ed1f21..9897f60 100644 --- a/Frameworks/macOS/Swifter.framework/Versions/A/Headers/Swifter-Swift.h +++ b/Frameworks/macOS/Swifter.framework/Versions/A/Headers/Swifter-Swift.h @@ -1,4 +1,4 @@ -// Generated by Apple Swift version 5.0 effective-4.2 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -110,6 +110,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -151,6 +160,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -162,6 +174,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftdoc b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftdoc new file mode 100644 index 0000000..a6cd4d2 Binary files /dev/null and b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftdoc differ diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftmodule b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftmodule new file mode 100644 index 0000000..d7d1055 Binary files /dev/null and b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64-apple-macos.swiftmodule differ diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftdoc b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftdoc index 30106db..a6cd4d2 100644 Binary files a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftdoc and b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftmodule b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftmodule index 9d42e1e..d7d1055 100644 Binary files a/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftmodule and b/Frameworks/macOS/Swifter.framework/Versions/A/Modules/Swifter.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Resources/Info.plist b/Frameworks/macOS/Swifter.framework/Versions/A/Resources/Info.plist index 7e0a3ec..c2581d3 100644 --- a/Frameworks/macOS/Swifter.framework/Versions/A/Resources/Info.plist +++ b/Frameworks/macOS/Swifter.framework/Versions/A/Resources/Info.plist @@ -3,7 +3,7 @@ BuildMachineOSBuild - 18E226 + 18G103 CFBundleDevelopmentRegion en CFBundleExecutable @@ -29,17 +29,19 @@ DTCompiler com.apple.compilers.llvm.clang.1_0 DTPlatformBuild - 10E125 + 11A419c DTPlatformVersion GM DTSDKBuild - 18E219 + 19A547 DTSDKName - macosx10.14 + macosx10.15 DTXcode - 1020 + 1100 DTXcodeBuild - 10E125 + 11A419c + LSMinimumSystemVersion + 10.9 NSHumanReadableCopyright Copyright © 2015 Damian Kołakowski. All rights reserved. UIDeviceFamily diff --git a/Frameworks/macOS/Swifter.framework/Versions/A/Swifter b/Frameworks/macOS/Swifter.framework/Versions/A/Swifter index b27ef53..f38e4aa 100755 Binary files a/Frameworks/macOS/Swifter.framework/Versions/A/Swifter and b/Frameworks/macOS/Swifter.framework/Versions/A/Swifter differ diff --git a/Frameworks/tvOS/Starscream.framework/Headers/Starscream-Swift.h b/Frameworks/tvOS/Starscream.framework/Headers/Starscream-Swift.h index ef07997..5f8a69f 100644 --- a/Frameworks/tvOS/Starscream.framework/Headers/Starscream-Swift.h +++ b/Frameworks/tvOS/Starscream.framework/Headers/Starscream-Swift.h @@ -1,4 +1,8 @@ -// Generated by Apple Swift version 5.0 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +#ifndef TARGET_OS_SIMULATOR +#include +#endif +#if TARGET_OS_SIMULATOR +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -110,6 +114,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -151,6 +164,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -162,6 +178,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -205,3 +224,229 @@ SWIFT_CLASS("_TtC10Starscream9WebSocket") # pragma clang attribute pop #endif #pragma clang diagnostic pop + +#else +// Generated by Apple Swift version 5.1 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +@import ObjectiveC; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Starscream",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + +@class NSStream; + +SWIFT_CLASS("_TtC10Starscream16FoundationStream") +@interface FoundationStream : NSObject +/// Delegate for the stream methods. Processes incoming bytes +- (void)stream:(NSStream * _Nonnull)aStream handleEvent:(NSStreamEvent)eventCode; +- (nonnull instancetype)init OBJC_DESIGNATED_INITIALIZER; +@end + + +SWIFT_CLASS("_TtC10Starscream9WebSocket") +@interface WebSocket : NSObject +- (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 +#pragma clang diagnostic pop + +#endif diff --git a/Frameworks/tvOS/Starscream.framework/Info.plist b/Frameworks/tvOS/Starscream.framework/Info.plist index 33fbf08..03f0375 100644 Binary files a/Frameworks/tvOS/Starscream.framework/Info.plist and b/Frameworks/tvOS/Starscream.framework/Info.plist differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftdoc b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftdoc new file mode 100644 index 0000000..5dab24f Binary files /dev/null and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftdoc differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftmodule b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftmodule new file mode 100644 index 0000000..e18b6cf Binary files /dev/null and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64-apple-tvos.swiftmodule differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc index 73795b6..5dab24f 100644 Binary files a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftdoc differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule index 7ac4757..e18b6cf 100644 Binary files a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/arm64.swiftmodule differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc new file mode 100644 index 0000000..10857a0 Binary files /dev/null and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule new file mode 100644 index 0000000..4e48fe1 Binary files /dev/null and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc index 2b4ddb9..10857a0 100644 Binary files a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule index 83161a9..4e48fe1 100644 Binary files a/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule and b/Frameworks/tvOS/Starscream.framework/Modules/Starscream.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/tvOS/Starscream.framework/Starscream b/Frameworks/tvOS/Starscream.framework/Starscream index a49fff6..9c552b2 100755 Binary files a/Frameworks/tvOS/Starscream.framework/Starscream and b/Frameworks/tvOS/Starscream.framework/Starscream differ diff --git a/Frameworks/tvOS/Swifter.framework/Headers/Swifter-Swift.h b/Frameworks/tvOS/Swifter.framework/Headers/Swifter-Swift.h index 3ed1f21..a8ec8b7 100644 --- a/Frameworks/tvOS/Swifter.framework/Headers/Swifter-Swift.h +++ b/Frameworks/tvOS/Swifter.framework/Headers/Swifter-Swift.h @@ -1,4 +1,219 @@ -// Generated by Apple Swift version 5.0 effective-4.2 (swiftlang-1001.0.69.5 clang-1001.0.46.3) +#ifndef TARGET_OS_SIMULATOR +#include +#endif +#if TARGET_OS_SIMULATOR +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) +#pragma clang diagnostic push +#pragma clang diagnostic ignored "-Wgcc-compat" + +#if !defined(__has_include) +# define __has_include(x) 0 +#endif +#if !defined(__has_attribute) +# define __has_attribute(x) 0 +#endif +#if !defined(__has_feature) +# define __has_feature(x) 0 +#endif +#if !defined(__has_warning) +# define __has_warning(x) 0 +#endif + +#if __has_include() +# include +#endif + +#pragma clang diagnostic ignored "-Wauto-import" +#include +#include +#include +#include + +#if !defined(SWIFT_TYPEDEFS) +# define SWIFT_TYPEDEFS 1 +# if __has_include() +# include +# elif !defined(__cplusplus) +typedef uint_least16_t char16_t; +typedef uint_least32_t char32_t; +# endif +typedef float swift_float2 __attribute__((__ext_vector_type__(2))); +typedef float swift_float3 __attribute__((__ext_vector_type__(3))); +typedef float swift_float4 __attribute__((__ext_vector_type__(4))); +typedef double swift_double2 __attribute__((__ext_vector_type__(2))); +typedef double swift_double3 __attribute__((__ext_vector_type__(3))); +typedef double swift_double4 __attribute__((__ext_vector_type__(4))); +typedef int swift_int2 __attribute__((__ext_vector_type__(2))); +typedef int swift_int3 __attribute__((__ext_vector_type__(3))); +typedef int swift_int4 __attribute__((__ext_vector_type__(4))); +typedef unsigned int swift_uint2 __attribute__((__ext_vector_type__(2))); +typedef unsigned int swift_uint3 __attribute__((__ext_vector_type__(3))); +typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); +#endif + +#if !defined(SWIFT_PASTE) +# define SWIFT_PASTE_HELPER(x, y) x##y +# define SWIFT_PASTE(x, y) SWIFT_PASTE_HELPER(x, y) +#endif +#if !defined(SWIFT_METATYPE) +# define SWIFT_METATYPE(X) Class +#endif +#if !defined(SWIFT_CLASS_PROPERTY) +# if __has_feature(objc_class_property) +# define SWIFT_CLASS_PROPERTY(...) __VA_ARGS__ +# else +# define SWIFT_CLASS_PROPERTY(...) +# endif +#endif + +#if __has_attribute(objc_runtime_name) +# define SWIFT_RUNTIME_NAME(X) __attribute__((objc_runtime_name(X))) +#else +# define SWIFT_RUNTIME_NAME(X) +#endif +#if __has_attribute(swift_name) +# define SWIFT_COMPILE_NAME(X) __attribute__((swift_name(X))) +#else +# define SWIFT_COMPILE_NAME(X) +#endif +#if __has_attribute(objc_method_family) +# define SWIFT_METHOD_FAMILY(X) __attribute__((objc_method_family(X))) +#else +# define SWIFT_METHOD_FAMILY(X) +#endif +#if __has_attribute(noescape) +# define SWIFT_NOESCAPE __attribute__((noescape)) +#else +# define SWIFT_NOESCAPE +#endif +#if __has_attribute(warn_unused_result) +# define SWIFT_WARN_UNUSED_RESULT __attribute__((warn_unused_result)) +#else +# define SWIFT_WARN_UNUSED_RESULT +#endif +#if __has_attribute(noreturn) +# define SWIFT_NORETURN __attribute__((noreturn)) +#else +# define SWIFT_NORETURN +#endif +#if !defined(SWIFT_CLASS_EXTRA) +# define SWIFT_CLASS_EXTRA +#endif +#if !defined(SWIFT_PROTOCOL_EXTRA) +# define SWIFT_PROTOCOL_EXTRA +#endif +#if !defined(SWIFT_ENUM_EXTRA) +# define SWIFT_ENUM_EXTRA +#endif +#if !defined(SWIFT_CLASS) +# if __has_attribute(objc_subclassing_restricted) +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_subclassing_restricted)) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# else +# define SWIFT_CLASS(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA +# endif +#endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif + +#if !defined(SWIFT_PROTOCOL) +# define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +# define SWIFT_PROTOCOL_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA +#endif + +#if !defined(SWIFT_EXTENSION) +# define SWIFT_EXTENSION(M) SWIFT_PASTE(M##_Swift_, __LINE__) +#endif + +#if !defined(OBJC_DESIGNATED_INITIALIZER) +# if __has_attribute(objc_designated_initializer) +# define OBJC_DESIGNATED_INITIALIZER __attribute__((objc_designated_initializer)) +# else +# define OBJC_DESIGNATED_INITIALIZER +# endif +#endif +#if !defined(SWIFT_ENUM_ATTR) +# if defined(__has_attribute) && __has_attribute(enum_extensibility) +# define SWIFT_ENUM_ATTR(_extensibility) __attribute__((enum_extensibility(_extensibility))) +# else +# define SWIFT_ENUM_ATTR(_extensibility) +# endif +#endif +#if !defined(SWIFT_ENUM) +# define SWIFT_ENUM(_type, _name, _extensibility) enum _name : _type _name; enum SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# if __has_feature(generalized_swift_name) +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR(_extensibility) SWIFT_ENUM_EXTRA _name : _type +# else +# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME, _extensibility) SWIFT_ENUM(_type, _name, _extensibility) +# endif +#endif +#if !defined(SWIFT_UNAVAILABLE) +# define SWIFT_UNAVAILABLE __attribute__((unavailable)) +#endif +#if !defined(SWIFT_UNAVAILABLE_MSG) +# define SWIFT_UNAVAILABLE_MSG(msg) __attribute__((unavailable(msg))) +#endif +#if !defined(SWIFT_AVAILABILITY) +# define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) +#endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif +#if !defined(SWIFT_DEPRECATED) +# define SWIFT_DEPRECATED __attribute__((deprecated)) +#endif +#if !defined(SWIFT_DEPRECATED_MSG) +# define SWIFT_DEPRECATED_MSG(...) __attribute__((deprecated(__VA_ARGS__))) +#endif +#if __has_feature(attribute_diagnose_if_objc) +# define SWIFT_DEPRECATED_OBJC(Msg) __attribute__((diagnose_if(1, Msg, "warning"))) +#else +# define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) +#endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif +#if __has_feature(modules) +#if __has_warning("-Watimport-in-framework-header") +#pragma clang diagnostic ignored "-Watimport-in-framework-header" +#endif +@import Foundation; +#endif + +#pragma clang diagnostic ignored "-Wproperty-attribute-mismatch" +#pragma clang diagnostic ignored "-Wduplicate-method-arg" +#if __has_warning("-Wpragma-clang-attribute") +# pragma clang diagnostic ignored "-Wpragma-clang-attribute" +#endif +#pragma clang diagnostic ignored "-Wunknown-pragmas" +#pragma clang diagnostic ignored "-Wnullability" + +#if __has_attribute(external_source_symbol) +# pragma push_macro("any") +# undef any +# pragma clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in="Swifter",generated_declaration))), apply_to=any(function,enum,objc_interface,objc_category,objc_protocol)) +# pragma pop_macro("any") +#endif + + + + + +#if __has_attribute(external_source_symbol) +# pragma clang attribute pop +#endif +#pragma clang diagnostic pop + +#else +// Generated by Apple Swift version 5.1 effective-4.2 (swiftlang-1100.0.270.13 clang-1100.0.33.7) #pragma clang diagnostic push #pragma clang diagnostic ignored "-Wgcc-compat" @@ -110,6 +325,15 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # define SWIFT_CLASS_NAMED(SWIFT_NAME) SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_CLASS_EXTRA # endif #endif +#if !defined(SWIFT_RESILIENT_CLASS) +# if __has_attribute(objc_class_stub) +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) __attribute__((objc_class_stub)) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) __attribute__((objc_class_stub)) SWIFT_CLASS_NAMED(SWIFT_NAME) +# else +# define SWIFT_RESILIENT_CLASS(SWIFT_NAME) SWIFT_CLASS(SWIFT_NAME) +# define SWIFT_RESILIENT_CLASS_NAMED(SWIFT_NAME) SWIFT_CLASS_NAMED(SWIFT_NAME) +# endif +#endif #if !defined(SWIFT_PROTOCOL) # define SWIFT_PROTOCOL(SWIFT_NAME) SWIFT_RUNTIME_NAME(SWIFT_NAME) SWIFT_PROTOCOL_EXTRA @@ -151,6 +375,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #if !defined(SWIFT_AVAILABILITY) # define SWIFT_AVAILABILITY(plat, ...) __attribute__((availability(plat, __VA_ARGS__))) #endif +#if !defined(SWIFT_WEAK_IMPORT) +# define SWIFT_WEAK_IMPORT __attribute__((weak_import)) +#endif #if !defined(SWIFT_DEPRECATED) # define SWIFT_DEPRECATED __attribute__((deprecated)) #endif @@ -162,6 +389,9 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); #else # define SWIFT_DEPRECATED_OBJC(Msg) SWIFT_DEPRECATED_MSG(Msg) #endif +#if !defined(IBSegueAction) +# define IBSegueAction +#endif #if __has_feature(modules) #if __has_warning("-Watimport-in-framework-header") #pragma clang diagnostic ignored "-Watimport-in-framework-header" @@ -192,3 +422,5 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4))); # pragma clang attribute pop #endif #pragma clang diagnostic pop + +#endif diff --git a/Frameworks/tvOS/Swifter.framework/Info.plist b/Frameworks/tvOS/Swifter.framework/Info.plist index 53e5b9d..29e5827 100644 Binary files a/Frameworks/tvOS/Swifter.framework/Info.plist and b/Frameworks/tvOS/Swifter.framework/Info.plist differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftdoc b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftdoc new file mode 100644 index 0000000..dd3b52c Binary files /dev/null and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftdoc differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftmodule b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftmodule new file mode 100644 index 0000000..7129b6e Binary files /dev/null and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64-apple-tvos.swiftmodule differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc index c5934e3..dd3b52c 100644 Binary files a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftdoc differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule index 1695ee1..7129b6e 100644 Binary files a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/arm64.swiftmodule differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc new file mode 100644 index 0000000..d7dc837 Binary files /dev/null and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftdoc differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule new file mode 100644 index 0000000..f5b1c38 Binary files /dev/null and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64-apple-tvos-simulator.swiftmodule differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc index 47fe451..d7dc837 100644 Binary files a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftdoc differ diff --git a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule index e253f29..f5b1c38 100644 Binary files a/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule and b/Frameworks/tvOS/Swifter.framework/Modules/Swifter.swiftmodule/x86_64.swiftmodule differ diff --git a/Frameworks/tvOS/Swifter.framework/Swifter b/Frameworks/tvOS/Swifter.framework/Swifter index e54c3d6..8a10c4d 100755 Binary files a/Frameworks/tvOS/Swifter.framework/Swifter and b/Frameworks/tvOS/Swifter.framework/Swifter differ diff --git a/SKWebAPI/Sources/NetworkInterface.swift b/SKWebAPI/Sources/NetworkInterface.swift index f6f3b18..61fd820 100755 --- a/SKWebAPI/Sources/NetworkInterface.swift +++ b/SKWebAPI/Sources/NetworkInterface.swift @@ -22,17 +22,26 @@ // THE SOFTWARE. #if os(Linux) - import Dispatch +import Dispatch +#endif +#if canImport(FoundationNetworking) +import FoundationNetworking #endif import Foundation + #if !COCOAPODS import SKCore #endif + public struct NetworkInterface { private let apiUrl = "https://slack.com/api/" + #if canImport(FoundationNetworking) + private let session = FoundationNetworking.URLSession(configuration: .default) + #else private let session = URLSession(configuration: .default) + #endif internal init() {} diff --git a/SlackKit.podspec b/SlackKit.podspec index 487d56e..217ceb1 100644 --- a/SlackKit.podspec +++ b/SlackKit.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "SlackKit" - s.version = "4.3.0" + s.version = "4.5.0" s.summary = "Write Slack apps in Swift" s.homepage = "https://github.com/pvzig/SlackKit" s.license = "MIT" @@ -8,7 +8,7 @@ Pod::Spec.new do |s| s.source = { :git => "https://github.com/pvzig/SlackKit.git", :tag => s.version.to_s } s.social_media_url = "https://twitter.com/pvzig" s.platforms = { :ios => '10.0', :osx => '10.11', :tvos => '10.0' } - s.swift_version = '5.0' + s.swift_version = '5.1' s.cocoapods_version = '>= 1.4.0' s.default_subspec = "SlackKit" diff --git a/SlackKit.xcodeproj/project.pbxproj b/SlackKit.xcodeproj/project.pbxproj index c2c5a96..38d6402 100644 --- a/SlackKit.xcodeproj/project.pbxproj +++ b/SlackKit.xcodeproj/project.pbxproj @@ -1917,6 +1917,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); + MARKETING_VERSION = 4.5.0; PRODUCT_BUNDLE_IDENTIFIER = com.launchsoft.SlackKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; PROVISIONING_PROFILE_SPECIFIER = ""; @@ -1949,6 +1950,7 @@ "@executable_path/Frameworks", "@loader_path/Frameworks", ); + MARKETING_VERSION = 4.5.0; PRODUCT_BUNDLE_IDENTIFIER = com.launchsoft.SlackKit; PRODUCT_NAME = "$(TARGET_NAME:c99extidentifier)"; PROVISIONING_PROFILE_SPECIFIER = ""; diff --git a/Supporting Files/Info.plist b/Supporting Files/Info.plist index 1402109..7a7e96f 100644 --- a/Supporting Files/Info.plist +++ b/Supporting Files/Info.plist @@ -7,13 +7,13 @@ CFBundleIdentifier $(PRODUCT_BUNDLE_IDENTIFIER) CFBundleInfoDictionaryVersion - 4.2.0 + 4.5.0 CFBundleName $(PRODUCT_NAME) CFBundlePackageType FMWK CFBundleShortVersionString - 4.3.0 + $(MARKETING_VERSION) CFBundleVersion $(CURRENT_PROJECT_VERSION) diff --git a/azure-pipelines.yml b/azure-pipelines.yml index 2980dd2..eaa26ca 100644 --- a/azure-pipelines.yml +++ b/azure-pipelines.yml @@ -19,7 +19,7 @@ jobs: sdk: 'macosx' configuration: 'Release' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' - task: Xcode@5 inputs: actions: 'test' @@ -27,7 +27,7 @@ jobs: sdk: 'macosx' configuration: 'Debug' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' - job: iOS pool: vmImage: 'macOS-10.14' @@ -39,7 +39,7 @@ jobs: sdk: 'iphoneos' configuration: 'Release' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' - task: Xcode@5 inputs: actions: 'test' @@ -47,7 +47,12 @@ jobs: sdk: 'iphonesimulator' configuration: 'Debug' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' + destinationPlatformOption: 'custom' + destinationPlatform: 'iOS' + destinationTypeOption: 'simulators' + destinationSimulators: 'iPhone 11 Pro,OS=13.0' + - job: tvOS pool: vmImage: 'macOS-10.14' @@ -59,7 +64,7 @@ jobs: sdk: 'appletvos' configuration: 'Release' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' - task: Xcode@5 inputs: actions: 'test' @@ -67,7 +72,11 @@ jobs: sdk: 'appletvsimulator' configuration: 'Debug' xcWorkspacePath: 'SlackKit.xcodeproj/project.xcworkspace' - xcodeVersion: 'default' + xcodeVersion: '11' + destinationPlatformOption: 'custom' + destinationPlatform: 'tvOS' + destinationTypeOption: 'simulators' + destinationSimulators: 'Apple TV 4K,OS=13.0' - job: Linux pool: vmImage: 'ubuntu-16.04' @@ -75,10 +84,12 @@ jobs: - script: | # Install Swift dependencies sudo apt-get install clang libicu-dev - # Install Swift 4.2.1 - curl https://swift.org/builds/swift-5.0-release/ubuntu1604/swift-5.0-RELEASE/swift-5.0-RELEASE-ubuntu16.04.tar.gz > $(Build.SourcesDirectory)/swift-5.0-RELEASE-ubuntu16.04.tar.gz - tar xzf swift-5.0-RELEASE-ubuntu16.04.tar.gz -C $(Build.SourcesDirectory) + # Install Swift 5.1 + curl https://swift.org/builds/swift-5.1-release/ubuntu1604/swift-5.1-RELEASE/swift-5.1-RELEASE-ubuntu16.04.tar.gz > $(Build.SourcesDirectory)/swift-5.1-RELEASE-ubuntu16.04.tar.gz + tar xzf swift-5.1-RELEASE-ubuntu16.04.tar.gz -C $(Build.SourcesDirectory) # Swift build - $(Build.SourcesDirectory)/swift-5.0-RELEASE-ubuntu16.04/usr/bin/swift build + $(Build.SourcesDirectory)/swift-5.1-RELEASE-ubuntu16.04/usr/bin/swift build # Swift test - $(Build.SourcesDirectory)/swift-5.0-RELEASE-ubuntu16.04/usr/bin/swift test \ No newline at end of file + $(Build.SourcesDirectory)/swift-5.1-RELEASE-ubuntu16.04/usr/bin/swift test + +