Skip to content

Commit

Permalink
Public release 6.24.0
Browse files Browse the repository at this point in the history
  • Loading branch information
button-bot committed Jun 24, 2020
1 parent b0c4b27 commit a4905ff
Show file tree
Hide file tree
Showing 123 changed files with 20,249 additions and 29 deletions.
Binary file modified Button.bundle/BTNAutofillAccessoryView.nib/objects-11.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNAutofillAccessoryView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNAutofillAccessoryView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNBaseModalController.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNBaseModalController.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNDefaultItemButton.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNDefaultItemButton.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNGroupNameCell.nib/objects-12.3+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNGroupNameCell.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNGroupNameCell.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInstallBannerView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInstallBannerView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInstallCardView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInstallCardView.nib/runtime.nib
Binary file not shown.
Binary file not shown.
Binary file modified Button.bundle/BTNInteractiveButtonContentView.nib/runtime.nib
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified Button.bundle/BTNInteractiveButtonInventoryCell.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryItemCell.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryItemCell.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryListCell.nib/objects-12.3+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryListCell.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryListCell.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNInventoryView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNNavigationHeaderView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNNavigationHeaderView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNSandboxAppStoreController.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNSandboxAppStoreController.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNSimulatorInstallView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNSimulatorInstallView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNTextBannerView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNTextBannerView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNTextCardView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNTextCardView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNToolbarView.nib/objects-11.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNToolbarView.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNToolbarView.nib/runtime.nib
Binary file not shown.
Binary file modified Button.bundle/BTNWebViewSheetController.nib/objects-13.0+.nib
Binary file not shown.
Binary file modified Button.bundle/BTNWebViewSheetController.nib/runtime.nib
Binary file not shown.
4 changes: 2 additions & 2 deletions Button.bundle/Info.plist
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,13 @@
<key>CFBundleIdentifier</key>
<string>com.usebutton.sdk</string>
<key>CFBundleShortVersionString</key>
<string>6.23.0</string>
<string>6.24.0</string>
<key>CFBundleSupportedPlatforms</key>
<array>
<string>iPhoneOS</string>
</array>
<key>CFBundleVersion</key>
<string>452</string>
<string>465</string>
<key>DTCompiler</key>
<string>com.apple.compilers.llvm.clang.1_0</string>
<key>DTPlatformBuild</key>
Expand Down
Binary file modified Button.framework/Versions/A/Button
Binary file not shown.
1 change: 1 addition & 0 deletions Button.framework/Versions/A/Headers/BTNAction.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@

NS_ASSUME_NONNULL_BEGIN

DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.")
NS_SWIFT_NAME(ButtonAction)
@interface BTNAction : NSObject

Expand Down
2 changes: 2 additions & 0 deletions Button.framework/Versions/A/Headers/BTNActionRequest.h
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ NS_ASSUME_NONNULL_BEGIN
A Button Action request defines the parameters for fetching an action.
@see ButtonActionsInterface
@note Deprecated.
*/
DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.")
NS_SWIFT_NAME(ActionRequest)
@interface BTNActionRequest : NSObject

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,9 +32,11 @@ NS_SWIFT_NAME(ButtonActionsInterface)
@param request A Button Action request.
@param actionHandler A block to be called upon completion of the Button Action fetch.
The block passes a `buttonAction` on success or an `error` if one occurred.
@note Deprecated.
*/
- (void)fetchWithRequest:(BTNActionRequest *)request
actionHandler:(void(^)(BTNAction * __nullable buttonAction, NSError * __nullable error))actionHandler NS_SWIFT_NAME(fetch(request:completion:));
actionHandler:(void(^)(BTNAction * __nullable buttonAction, NSError * __nullable error))actionHandler NS_SWIFT_NAME(fetch(request:completion:))
DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.");

@end

Expand Down
1 change: 1 addition & 0 deletions Button.framework/Versions/A/Headers/BTNDropinButton.h
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@

@class BTNAction;

DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.")
NS_SWIFT_NAME(DropinButton)
@interface BTNDropinButton : UIControl <BTNDropinButtonAppearance>

Expand Down
9 changes: 8 additions & 1 deletion Button.framework/Versions/A/Headers/BTNDropinButtonCell.h
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
@import UIKit;
#import "BTNDropinButton.h"

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"

NS_SWIFT_NAME(DropinButtonCell)
@interface BTNDropinButtonCell : UITableViewCell <BTNDropinButtonAppearance>

Expand All @@ -18,8 +21,10 @@ NS_SWIFT_NAME(DropinButtonCell)
Tells the cell to render the passed app action.
@param buttonAction A BTNAction fetched via `-[Button.actions fetchWithRequest:actionHandler:]`
@note passing nil will return the button to the loading state.
@note Deprecated.
*/
- (void)prepareWithButtonAction:(nullable BTNAction *)buttonAction NS_SWIFT_NAME(prepare(action:));;
- (void)prepareWithButtonAction:(nullable BTNAction *)buttonAction NS_SWIFT_NAME(prepare(action:))
DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.");


///-----------------
Expand All @@ -32,3 +37,5 @@ NS_SWIFT_NAME(DropinButtonCell)
*/

@end

#pragma clang diagnostic pop
9 changes: 8 additions & 1 deletion Button.framework/Versions/A/Headers/BTNInteractiveButton.h
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

@class BTNAction;

#pragma clang diagnostic push
#pragma clang diagnostic ignored "-Wdeprecated-declarations"

NS_SWIFT_NAME(InteractiveButton)
@interface BTNInteractiveButton : UIView

Expand All @@ -14,8 +17,10 @@ NS_SWIFT_NAME(InteractiveButton)
Tells the button to render the passed app action.
@param buttonAction A BTNAction fetched via `-[Button.actions fetchWithRequest:actionHandler:]`
@note passing nil will return the button to the loading state.
@note Deprecated.
*/
- (void)prepareWithButtonAction:(BTNAction *)buttonAction NS_SWIFT_NAME(prepare(action:));
- (void)prepareWithButtonAction:(BTNAction *)buttonAction NS_SWIFT_NAME(prepare(action:))
DEPRECATED_MSG_ATTRIBUTE("Button Actions has been deprecated. Please contact Button to update your integration.");



Expand Down Expand Up @@ -66,3 +71,5 @@ NS_SWIFT_NAME(InteractiveButton)
@property (nonatomic, assign) NSInteger relativeFontPointSize;

@end

#pragma clang diagnostic pop
2 changes: 1 addition & 1 deletion Button.podspec
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
Pod::Spec.new do |s|

s.name = "Button"
s.version = "6.23.0"
s.version = "6.24.0"
s.summary = "Button iOS SDK."

s.description = <<-DESC
Expand Down
2 changes: 1 addition & 1 deletion Samples/PurchasePath/Podfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ source 'https://github.com/CocoaPods/Specs.git'
platform :ios, '9.0'
inhibit_all_warnings!

pod 'Button', '6.23.0'
pod 'Button', '6.24.0'
pod 'Sourcery'

target 'Swift-Demo' do
Expand Down
4 changes: 2 additions & 2 deletions Samples/PurchasePath/Podfile.lock
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PODS:
- Button (6.23.0-build.451)
- Button (6.24.0-build.464)
- Sourcery (0.13.1)

DEPENDENCIES:
Expand All @@ -15,7 +15,7 @@ EXTERNAL SOURCES:
:path: "../../"

SPEC CHECKSUMS:
Button: 62aa8991bf16be91339393477ea6323a443b818a
Button: a070e5571312db635caf8a6d83f4051c4066cda9
Sourcery: 9ef51b8777516f204d82996441f293813158d0d7

PODFILE CHECKSUM: cfe49ec404de013101464b212c5af9e01a870d7d
Expand Down
38 changes: 19 additions & 19 deletions Samples/PurchasePath/PurchasePath.xcodeproj/project.pbxproj
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@
DE31D16B202BEB95004A29D6 /* Sources */,
DE31D16C202BEB95004A29D6 /* Frameworks */,
DE31D16D202BEB95004A29D6 /* Resources */,
1B58CA3157C46DD3E06C8A9A /* [CP] Copy Pods Resources */,
BB1EE168F4705C4C3BA1B625 /* [CP] Copy Pods Resources */,
);
buildRules = (
);
Expand Down Expand Up @@ -364,24 +364,6 @@
/* End PBXResourcesBuildPhase section */

/* Begin PBXShellScriptBuildPhase section */
1B58CA3157C46DD3E06C8A9A /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Swift-Demo/Pods-Swift-Demo-resources.sh",
"${PODS_ROOT}/../../../Button.bundle",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Button.bundle",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Swift-Demo/Pods-Swift-Demo-resources.sh\"\n";
showEnvVarsInLog = 0;
};
71E15E49A421411D71ED8CB6 /* [CP] Check Pods Manifest.lock */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down Expand Up @@ -436,6 +418,24 @@
shellScript = "diff \"${PODS_PODFILE_DIR_PATH}/Podfile.lock\" \"${PODS_ROOT}/Manifest.lock\" > /dev/null\nif [ $? != 0 ] ; then\n # print error to STDERR\n echo \"error: The sandbox is not in sync with the Podfile.lock. Run 'pod install' or update your CocoaPods installation.\" >&2\n exit 1\nfi\n# This output is used by Xcode 'outputs' to avoid re-running this script phase.\necho \"SUCCESS\" > \"${SCRIPT_OUTPUT_FILE_0}\"\n";
showEnvVarsInLog = 0;
};
BB1EE168F4705C4C3BA1B625 /* [CP] Copy Pods Resources */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
files = (
);
inputPaths = (
"${PODS_ROOT}/Target Support Files/Pods-Swift-Demo/Pods-Swift-Demo-resources.sh",
"${PODS_ROOT}/../../../Button.bundle",
);
name = "[CP] Copy Pods Resources";
outputPaths = (
"${TARGET_BUILD_DIR}/${UNLOCALIZED_RESOURCES_FOLDER_PATH}/Button.bundle",
);
runOnlyForDeploymentPostprocessing = 0;
shellPath = /bin/sh;
shellScript = "\"${PODS_ROOT}/Target Support Files/Pods-Swift-Demo/Pods-Swift-Demo-resources.sh\"\n";
showEnvVarsInLog = 0;
};
DEF421E620E6E2A700CADBC5 /* Environment Vars */ = {
isa = PBXShellScriptBuildPhase;
buildActionMask = 2147483647;
Expand Down
Loading

0 comments on commit a4905ff

Please sign in to comment.