Skip to content

Commit 4c835e2

Browse files
committed
Updated to v1.2.6
1 parent 504799a commit 4c835e2

File tree

4 files changed

+17
-3
lines changed

4 files changed

+17
-3
lines changed

ApptentiveConnect/source/ATConnect.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#import <Cocoa/Cocoa.h>
1414
#endif
1515

16-
#define kATConnectVersionString @"1.2.6a"
16+
#define kATConnectVersionString @"1.2.6"
1717

1818
#if TARGET_OS_IPHONE
1919
# define kATConnectPlatformString @"iOS"

CHANGELOG.md

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,10 @@
1-
2014-01-?? wooster, pkamb v1.2.6 (in progress)
1+
2014-01-27 wooster, pkamb v1.2.6
22
--------------------------------
33

44
Fixes:
55

6+
* IOS-368 Added cases for always or never showing an interaction based on its criteria.
7+
* IOS-363 Changed key to "hardware" from "model". Human readable string "model" will now be set on server.
68
* IOS-172 Prevent duplicate Message Center automated messages
79
* [Issue #70](https://github.com/apptentive/apptentive-ios/issues/70) unreadCount incremented when typing a message
810
* IOS-310 unreadMessageCount incremented when typing a message

README.md

+12
Original file line numberDiff line numberDiff line change
@@ -340,6 +340,18 @@ Custom data should be of type `NSString`, `NSNumber`, `NSDate`, or `NSNull`.
340340

341341
When Message Center is presented with custom data, that custom data will be attached to the first message in the Message Center session.
342342

343+
#### Attachments
344+
345+
The methods below can be used to attach text, images, or files to the user's feedback.
346+
347+
These attachments will appear in your online Apptentive dashboard, but will *not* appear in Message Center on the user's device. They may be useful for sending debug logs or other pertinent information.
348+
349+
``` objective-c
350+
- (void)sendAttachmentText:(NSString *)text;
351+
- (void)sendAttachmentImage:(UIImage *)image;
352+
- (void)sendAttachmentFile:(NSData *)fileData withMimeType:(NSString *)mimeType;
353+
```
354+
343355
#### Push Notifications
344356

345357
Apptentive can integrate with your existing [Urban Airship](http://urbanairship.com/) account to offer push notifications when new Apptentive messages are available.

apptentive-ios.podspec

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = 'apptentive-ios'
3-
s.version = '1.2.5'
3+
s.version = '1.2.6'
44
s.license = 'BSD'
55
s.summary = 'Apptentive Customer Communications SDK.'
66
s.homepage = 'https://www.apptentive.com/'

0 commit comments

Comments
 (0)