Skip to content

Commit

Permalink
Fix configuration framework, release alpha4
Browse files Browse the repository at this point in the history
  • Loading branch information
rokob committed Jan 10, 2018
1 parent b4ba591 commit 125aec6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ Be sure to remember to `pod install` after changing your Podfile!

### Without Cocoapods

1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha3/Rollbar.zip).
1. Download the [Rollbar framework](https://github.com/rollbar/rollbar-ios/releases/download/v1.0.0-alpha4/Rollbar.zip).

2. Extract the Rollbar directory in the zip file to your Xcode project directory.

Expand Down
2 changes: 1 addition & 1 deletion Rollbar/RollbarConfiguration.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
- (void)setPersonId:(NSString*)personId username:(NSString*)username email:(NSString*)email;
- (void)setServerHost:(NSString *)host root:(NSString*)root branch:(NSString*)branch codeVersion:(NSString*)codeVersion;
- (void)setNotifierName:(NSString *)name version:(NSString *)version;
- (void)setFramework:(NSString *)framework;
- (void)setCodeFramework:(NSString *)framework;
- (void)setPayloadModificationBlock:(void (^)(NSMutableDictionary*))payloadModificationBlock;
- (void)setCheckIgnoreBlock:(BOOL (^)(NSDictionary*))checkIgnoreBlock;
- (void)addScrubField:(NSString *)field;
Expand Down
4 changes: 2 additions & 2 deletions Rollbar/RollbarConfiguration.m
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
#import "RollbarTelemetry.h"

static NSString *NOTIFIER_NAME = @"rollbar-ios";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha3";
static NSString *NOTIFIER_VERSION = @"1.0.0-alpha4";
static NSString *FRAMEWORK = @"ios";
static NSString *CONFIGURATION_FILENAME = @"rollbar.config";
static NSString *DEFAULT_ENDPOINT = @"https://api.rollbar.com/api/1/items/";
Expand Down Expand Up @@ -116,7 +116,7 @@ - (void)setNotifierName:(NSString *)name version:(NSString *)version {
[self save];
}

- (void)setFramework:(NSString *)framework {
- (void)setCodeFramework:(NSString *)framework {
self.framework = framework ? framework : FRAMEWORK;
[self save];
}
Expand Down

0 comments on commit 125aec6

Please sign in to comment.