Skip to content

Commit

Permalink
Bump to 3.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
austintaylor committed Apr 29, 2014
1 parent 2251431 commit 40b4491
Show file tree
Hide file tree
Showing 6 changed files with 10 additions and 6 deletions.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
## master ##

## 3.0.1 (2014-04-29) ##

* Fix a bug where the comment form submit button would be incorrectly disabled
* Show an error message when the user tries to submit a comment with no text
* Fix a bug where the post idea form submit button would be incorrectly hidden
Expand All @@ -14,6 +16,7 @@
* Work around an iOS bug related to using UISearchDisplayController with UIModalPresentationStyleFormSheet
* Add a stylesheet option for status bar style
* Fix a bug where "knowledge base" heading would be repeated
* Fix a bug that sent way too much traffic to the UserVoice API

## 3.0.3 (2014-02-25) ##

Expand Down
4 changes: 2 additions & 2 deletions Classes/UVBabayaga.m
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ - (void)track:(NSString *)event props:(NSDictionary *)props {
route = @"t/k";
}
NSString *channel = [event isEqualToString:VIEW_APP] ? EXTERNAL_CHANNEL : CHANNEL;
NSString *path = [NSString stringWithFormat:@"%@/%@/%@/%@", route, subdomain, channel, event];
NSString *path = [NSString stringWithFormat:@"/%@/%@/%@/%@", route, subdomain, channel, event];
if (_uvts) {
path = [NSString stringWithFormat:@"%@/%@", path, _uvts];
}
Expand All @@ -96,7 +96,7 @@ - (void)track:(NSString *)event props:(NSDictionary *)props {
[params setObject:encoded forKey:@"d"];
}
NSDictionary *opts = @{
kHRClassAttributesBaseURLKey : [NSURL URLWithString:@"https://by.uservoice.com/"],
kHRClassAttributesBaseURLKey : [NSURL URLWithString:@"https://by.uservoice.com"],
kHRClassAttributesDelegateKey : self,
@"params" : params
};
Expand Down
2 changes: 1 addition & 1 deletion Classes/UserVoice.m
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ + (void)setDelegate:(id<UVDelegate>)delegate {
}

+ (NSString *)version {
return @"3.0.3";
return @"3.1.0";
}


Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ The UserVoice iOS SDK allows you to integrate a native UserVoice experience dire
To get started, you will need to have a free UserVoice account to connect to. Go to [uservoice.com/mobile/](https://uservoice.com/mobile/) to sign up for free.

Binary builds of the SDK are available for download:
* Current release: [3.0.3](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.0.3) (updated 2014-02-25)
* Current release: [3.1.0](https://github.com/uservoice/uservoice-ios-sdk/releases/tag/3.1.0) (updated 2014-04-29)
* See [Releases](https://github.com/uservoice/uservoice-ios-sdk/releases) for release notes and previous versions

We also have an [example app](https://github.com/uservoice/uservoice-iphone-example) on GitHub that demonstrates how to build and integrate the SDK.
Expand Down Expand Up @@ -33,7 +33,7 @@ See [DEV.md](https://github.com/uservoice/uservoice-iphone-sdk/blob/master/DEV.m

Alternatively, if you are using CocoaPods just add the following to your Podfile.

pod 'uservoice-iphone-sdk', '~> 3.0'
pod 'uservoice-iphone-sdk', '~> 3.1'


## API
Expand Down
1 change: 1 addition & 0 deletions Vendor/HTTPRiot/HRRequestOperation.m
Original file line number Diff line number Diff line change
Expand Up @@ -281,6 +281,7 @@ - (NSURL *)composedURL {
#pragma mark - Class Methods
+ (HRRequestOperation *)requestWithMethod:(HRRequestMethod)method path:(NSString*)urlPath options:(NSDictionary*)requestOptions object:(id)obj {
id operation = [[self alloc] initWithMethod:method path:urlPath options:requestOptions object:obj];
// NSLog(@"%@", urlPath);
[[HROperationQueue sharedOperationQueue] addOperation:operation];
return operation;
}
Expand Down
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#!/bin/sh

DIST=dist/UserVoiceSDK-3.0.3
DIST=dist/UserVoiceSDK-3.1.0

echo "==== Building for iOS devices ===="
echo ""
Expand Down

0 comments on commit 40b4491

Please sign in to comment.