Skip to content

Commit

Permalink
Release v4.0.0-Xcode8
Browse files Browse the repository at this point in the history
  • Loading branch information
gPinato committed Oct 3, 2017
1 parent cf7f1c6 commit d028aea
Show file tree
Hide file tree
Showing 17 changed files with 53 additions and 88 deletions.
Binary file modified Usabilla.framework.dSYM/Contents/Resources/DWARF/Usabilla
Binary file not shown.
Binary file modified Usabilla.framework/Assets.car
Binary file not shown.
90 changes: 28 additions & 62 deletions Usabilla.framework/Headers/Usabilla-Swift.h
Original file line number Diff line number Diff line change
@@ -1,30 +1,7 @@
// Generated by Apple Swift version 4.0 effective-3.2 (swiftlang-900.0.65 clang-900.0.37)
// Generated by Apple Swift version 3.1 (swiftlang-802.0.53 clang-802.0.42)
#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_attribute(external_source_symbol)
# define SWIFT_STRINGIFY(str) #str
# define SWIFT_MODULE_NAMESPACE_PUSH(module_name) _Pragma(SWIFT_STRINGIFY(clang attribute push(__attribute__((external_source_symbol(language="Swift", defined_in=module_name, generated_declaration))), apply_to=any(function, enum, objc_interface, objc_category, objc_protocol))))
# define SWIFT_MODULE_NAMESPACE_POP _Pragma("clang attribute pop")
#else
# define SWIFT_MODULE_NAMESPACE_PUSH(module_name)
# define SWIFT_MODULE_NAMESPACE_POP
#endif

#if __has_include(<swift/objc-prologue.h>)
#if defined(__has_include) && __has_include(<swift/objc-prologue.h>)
# include <swift/objc-prologue.h>
#endif

Expand All @@ -36,7 +13,7 @@

#if !defined(SWIFT_TYPEDEFS)
# define SWIFT_TYPEDEFS 1
# if __has_include(<uchar.h>)
# if defined(__has_include) && __has_include(<uchar.h>)
# include <uchar.h>
# elif !defined(__cplusplus) || __cplusplus < 201103L
typedef uint_least16_t char16_t;
Expand Down Expand Up @@ -71,36 +48,31 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# endif
#endif

#if __has_attribute(objc_runtime_name)
#if defined(__has_attribute) && __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)
#if defined(__has_attribute) && __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)
#if defined(__has_attribute) && __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)
#if defined(__has_attribute) && __has_attribute(noescape)
# define SWIFT_NOESCAPE __attribute__((noescape))
#else
# define SWIFT_NOESCAPE
#endif
#if __has_attribute(warn_unused_result)
#if defined(__has_attribute) && __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
Expand All @@ -111,7 +83,7 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
# define SWIFT_ENUM_EXTRA
#endif
#if !defined(SWIFT_CLASS)
# if __has_attribute(objc_subclassing_restricted)
# if defined(__has_attribute) && __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
Expand All @@ -130,23 +102,16 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#endif

#if !defined(OBJC_DESIGNATED_INITIALIZER)
# if __has_attribute(objc_designated_initializer)
# if defined(__has_attribute) && __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 __attribute__((enum_extensibility(open)))
# else
# define SWIFT_ENUM_ATTR
# endif
#endif
#if !defined(SWIFT_ENUM)
# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type
# if __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_ATTR SWIFT_ENUM_EXTRA _name : _type
# define SWIFT_ENUM(_type, _name) enum _name : _type _name; enum SWIFT_ENUM_EXTRA _name : _type
# if defined(__has_feature) && __has_feature(generalized_swift_name)
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) enum _name : _type _name SWIFT_COMPILE_NAME(SWIFT_NAME); enum SWIFT_COMPILE_NAME(SWIFT_NAME) SWIFT_ENUM_EXTRA _name : _type
# else
# define SWIFT_ENUM_NAMED(_type, _name, SWIFT_NAME) SWIFT_ENUM(_type, _name)
# endif
Expand All @@ -166,38 +131,39 @@ typedef unsigned int swift_uint4 __attribute__((__ext_vector_type__(4)));
#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 __has_feature(modules)
#if defined(__has_feature) && __has_feature(modules)
@import UIKit;
@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"

SWIFT_MODULE_NAMESPACE_PUSH("Usabilla")

@interface NSLayoutConstraint (SWIFT_EXTENSION(Usabilla))
@end


@interface NSNumber (SWIFT_EXTENSION(Usabilla))
@end


@interface UIColor (SWIFT_EXTENSION(Usabilla))
@end


@interface UIDevice (SWIFT_EXTENSION(Usabilla))
@end


@interface UIImage (SWIFT_EXTENSION(Usabilla))
@end


@interface UITableView (SWIFT_EXTENSION(Usabilla))
@end


@interface UIView (SWIFT_EXTENSION(Usabilla))
@end

SWIFT_MODULE_NAMESPACE_POP
#pragma clang diagnostic pop
Binary file modified Usabilla.framework/Info.plist
Binary file not shown.
Binary file modified Usabilla.framework/Modules/Usabilla.swiftmodule/arm.swiftdoc
Binary file not shown.
Binary file modified Usabilla.framework/Modules/Usabilla.swiftmodule/arm.swiftmodule
Binary file not shown.
Binary file modified Usabilla.framework/Modules/Usabilla.swiftmodule/arm64.swiftdoc
Binary file not shown.
Binary file not shown.
Binary file modified Usabilla.framework/Modules/Usabilla.swiftmodule/i386.swiftdoc
Binary file not shown.
Binary file not shown.
Binary file modified Usabilla.framework/Modules/Usabilla.swiftmodule/x86_64.swiftdoc
Binary file not shown.
Binary file not shown.
1 change: 0 additions & 1 deletion Usabilla.framework/Modules/module.modulemap
Original file line number Diff line number Diff line change
Expand Up @@ -7,5 +7,4 @@ framework module Usabilla {

module Usabilla.Swift {
header "Usabilla-Swift.h"
requires objc
}
Binary file modified Usabilla.framework/Usabilla
Binary file not shown.
50 changes: 25 additions & 25 deletions Usabilla.framework/_CodeSignature/CodeResources
Original file line number Diff line number Diff line change
Expand Up @@ -6,43 +6,43 @@
<dict>
<key>Assets.car</key>
<data>
8FqNtfKOQBV/lyp9MHAhp7Nmdyg=
g/zLLOgvWA9m+cwBgnKDsgwhn3Q=
</data>
<key>Headers/Usabilla-Swift.h</key>
<data>
BgOCdzb8EDIHWhFOjdOcH3x1pJk=
YFI9cRfguDQi8Jb87xeXZxdTnBk=
</data>
<key>Headers/Usabilla.h</key>
<data>
Qaqfv8EO2q/zC4up+My38LW/rB0=
</data>
<key>Info.plist</key>
<data>
Tucz0Avrjm3+/iqrVpu5IOmKUcc=
37cp5EYbXvOLpeUIHwI8aKq40v8=
</data>
<key>Modules/Usabilla.swiftmodule/arm.swiftdoc</key>
<data>
9knrx5gQNd5Tu+0XwbWLKJ/2r20=
t1bcl5UIM5xhKpF+4kfa8yEdpZY=
</data>
<key>Modules/Usabilla.swiftmodule/arm.swiftmodule</key>
<data>
lsGHPyT9aMW+yFf3HiQQospJHkI=
2/NRjECC6japFksQDwqxdGq0AJg=
</data>
<key>Modules/Usabilla.swiftmodule/arm64.swiftdoc</key>
<data>
U9GtBvC7Npahhs8bR13BV5PEtSg=
Eve94dRdX6m6Bi0spehpb6MsSuI=
</data>
<key>Modules/Usabilla.swiftmodule/arm64.swiftmodule</key>
<data>
pm+HmsecaYQ//6NPB7h0mTxiAa4=
8VSlr2meUIfTlrGLCJ5Li0pMGTI=
</data>
<key>Modules/module.modulemap</key>
<data>
BQ+ZoiDTM4QpvVgHsCaLZJjkrBM=
+1PbB5KDk1mGTbFhz3ewp9Vnc40=
</data>
<key>usa_localizable.strings</key>
<data>
Hs1orrxPabj4ZyDWVnewWqTVqao=
Z4SS4tYREQlFJRCOue/t0kB5zVA=
</data>
</dict>
<key>files2</key>
Expand All @@ -51,22 +51,22 @@
<dict>
<key>hash</key>
<data>
8FqNtfKOQBV/lyp9MHAhp7Nmdyg=
g/zLLOgvWA9m+cwBgnKDsgwhn3Q=
</data>
<key>hash2</key>
<data>
qN2zczkWmbWlhgslg78vSnUNCe0oMiYallpfjsT/z0I=
TpkDAPQgHNx1skOBW0TqH+QtozY+8KXyKdAzrouG6H8=
</data>
</dict>
<key>Headers/Usabilla-Swift.h</key>
<dict>
<key>hash</key>
<data>
BgOCdzb8EDIHWhFOjdOcH3x1pJk=
YFI9cRfguDQi8Jb87xeXZxdTnBk=
</data>
<key>hash2</key>
<data>
pCtAfHOYlcXjVPeez18IlsznS7XdwM7F5S8c7rxVdnM=
zjkOfbbvWpjC62QhS2MRlkyuU4kp9uAOcurixOjyosI=
</data>
</dict>
<key>Headers/Usabilla.h</key>
Expand All @@ -84,66 +84,66 @@
<dict>
<key>hash</key>
<data>
9knrx5gQNd5Tu+0XwbWLKJ/2r20=
t1bcl5UIM5xhKpF+4kfa8yEdpZY=
</data>
<key>hash2</key>
<data>
ZnwcQHggHEo9bQZ9SHcPc7o6CDvjOusfXsKT4pGf7IY=
FLzel/MCLbp0g/c011sCuAd7xHEsnB9n8T8CGH316hg=
</data>
</dict>
<key>Modules/Usabilla.swiftmodule/arm.swiftmodule</key>
<dict>
<key>hash</key>
<data>
lsGHPyT9aMW+yFf3HiQQospJHkI=
2/NRjECC6japFksQDwqxdGq0AJg=
</data>
<key>hash2</key>
<data>
nk+ieTiBpeWE96nOYEsx6hjmJrKEk38PjfGk8Rixsd0=
3NytuPfpdhmbjX59ew3JahGSiOJii40y6PvFDXfgpkQ=
</data>
</dict>
<key>Modules/Usabilla.swiftmodule/arm64.swiftdoc</key>
<dict>
<key>hash</key>
<data>
U9GtBvC7Npahhs8bR13BV5PEtSg=
Eve94dRdX6m6Bi0spehpb6MsSuI=
</data>
<key>hash2</key>
<data>
keNiWs0zrLv46LTN3tUYUHELE/LxftHkSwz111IeBeI=
S3SHYeirV91Q315sprfaKdcvn8OdK7ZJBrEy9KfrzcQ=
</data>
</dict>
<key>Modules/Usabilla.swiftmodule/arm64.swiftmodule</key>
<dict>
<key>hash</key>
<data>
pm+HmsecaYQ//6NPB7h0mTxiAa4=
8VSlr2meUIfTlrGLCJ5Li0pMGTI=
</data>
<key>hash2</key>
<data>
xndIS+PYAcmjfuP6nMl3S+oQdQhZssYYGu0gOeh5RoY=
9U65qMiwa+l4AmX82mLnWXwWyfepTkT+9yGNSTeAYtE=
</data>
</dict>
<key>Modules/module.modulemap</key>
<dict>
<key>hash</key>
<data>
BQ+ZoiDTM4QpvVgHsCaLZJjkrBM=
+1PbB5KDk1mGTbFhz3ewp9Vnc40=
</data>
<key>hash2</key>
<data>
bmR502Mbqa60YHQCL8/iQBp2Jf19Cdyc+0LAh4fg/R8=
M2rQNC7XBGFXlyc+OUVq4ecYi7ZFdy5GPnTTCEVMvWU=
</data>
</dict>
<key>usa_localizable.strings</key>
<dict>
<key>hash</key>
<data>
Hs1orrxPabj4ZyDWVnewWqTVqao=
Z4SS4tYREQlFJRCOue/t0kB5zVA=
</data>
<key>hash2</key>
<data>
rwHv2PtZnbJhHxDrLjfHVZ7k5RHRMQVY1xWo0AIeSjY=
xJu8JzsM+LiSiNkpMm89F22HrVpHyEW4MUWcd8ipd5E=
</data>
</dict>
</dict>
Expand Down
Binary file modified Usabilla.framework/usa_localizable.strings
Binary file not shown.
Binary file not shown.

0 comments on commit d028aea

Please sign in to comment.