From 78f021296e100a566c767fb45e01da19a26c5795 Mon Sep 17 00:00:00 2001 From: Alexander Lindholm Date: Wed, 15 Mar 2017 12:43:22 +0100 Subject: [PATCH 1/3] changed attributedText and attributedPlaceholder in ASTextFieldNode header file to NSAttributedStrings --- ASTextFieldNode/ASTextFieldNode.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ASTextFieldNode/ASTextFieldNode.h b/ASTextFieldNode/ASTextFieldNode.h index 722dac8..d71940e 100644 --- a/ASTextFieldNode/ASTextFieldNode.h +++ b/ASTextFieldNode/ASTextFieldNode.h @@ -28,8 +28,8 @@ FOUNDATION_EXPORT const unsigned char ASTextFieldNodeVersionString[]; @property (nonatomic, retain) ASTextFieldView* textField; @property (nonatomic, assign) NSString* text; -@property (nonatomic, assign) NSString* attributedText; -@property (nonatomic, assign) NSString* attributedPlaceholder; +@property (nonatomic, assign) NSAttributedString* attributedText; +@property (nonatomic, assign) NSAttributedString* attributedPlaceholder; @property (nonatomic, assign) UIFont* font; @property (nonatomic, assign) UIColor* textColor; From f724d0819f4f3e91f48e72ebcaafd845a9cb42b5 Mon Sep 17 00:00:00 2001 From: Alexander Lindholm Date: Mon, 27 Mar 2017 21:11:59 +0200 Subject: [PATCH 2/3] changed asdk dependency to 2.2 --- ASTextFieldNode.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASTextFieldNode.podspec b/ASTextFieldNode.podspec index 35e086e..d476c2b 100644 --- a/ASTextFieldNode.podspec +++ b/ASTextFieldNode.podspec @@ -11,5 +11,5 @@ Pod::Spec.new do |s| s.author = { "Kyle Shank" => "kyle.shank@gmail.com" } s.source = { :git => "https://github.com/pocketlabs/ASTextFieldNode.git", :tag => "#{s.version}" } s.source_files = "ASTextFieldNode", "ASTextFieldNode/*.{h,mm}" - s.dependency "AsyncDisplayKit", "~> 2.1.0" + s.dependency "AsyncDisplayKit", "~> 2.2" end From a05ab3fc22679b39efabbe2985e6aaf6c32badd2 Mon Sep 17 00:00:00 2001 From: Alexander Lindholm Date: Mon, 27 Mar 2017 21:16:52 +0200 Subject: [PATCH 3/3] bumped version --- ASTextFieldNode.podspec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ASTextFieldNode.podspec b/ASTextFieldNode.podspec index d476c2b..36b0519 100644 --- a/ASTextFieldNode.podspec +++ b/ASTextFieldNode.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = "ASTextFieldNode" - s.version = "0.2.1" + s.version = "0.2.2" s.summary = "UITextField wrapper for AsyncDisplayKit." s.description = <<-DESC UITextField wrapper for AsyncDisplayKit that can handle secure text entry. Alternative to ASEditableTextNode.