Skip to content

Commit

Permalink
Released version 1.4.6
Browse files Browse the repository at this point in the history
  • Loading branch information
joselufo committed Aug 17, 2017
1 parent 756aeac commit f71ed2e
Show file tree
Hide file tree
Showing 4 changed files with 17 additions and 2 deletions.
Binary file modified BugfenderSDK.framework/BugfenderSDK
Binary file not shown.
13 changes: 12 additions & 1 deletion BugfenderSDK.framework/Headers/BugfenderSDK.h
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ NS_ASSUME_NONNULL_BEGIN
#define BFLibraryVersionNumber_1_4_3 34
#define BFLibraryVersionNumber_1_4_4 34 // Mistake: We released the version without incrementing the number.
#define BFLibraryVersionNumber_1_4_5 36
#define BFLibraryVersionNumber_1_4_6 37

/**
* Current Bugfender version number.
Expand Down Expand Up @@ -119,6 +120,13 @@ typedef NS_ENUM(NSUInteger, BFLogLevel)
**/
+ (NSString*)deviceIdentifier;

/**
*
* The session identifier is constant while the application is running.
* @return A string identifying the current session.
*/
+ (NSString *)sessionIdentifier;

/**
* Synchronizes all logs with the server all the time, regardless if this device is enabled or not.
* @discussion This method is useful when the logs should be sent to the server
Expand Down Expand Up @@ -148,19 +156,22 @@ typedef NS_ENUM(NSUInteger, BFLogLevel)
*/
+(BOOL) printToConsole;

#if TARGET_OS_IOS
/**
* Logs all actions performed and screen changes in the application, such as button touches, swipes and gestures.
*/
+(void)enableUIEventLogging;
#endif

/**
* Sends an issue
* @discussion Sending an issue forces the logs of the current session being sent
* to the server, and marks the session so that it is highlighted in the web console.
* @param title Short description of the issue.
* @param text Full details of the issue. Markdown format is accepted.
* @return the issue identifier
*/
+(void)sendIssueWithTitle:(NSString*)title text:(NSString*)text;
+ (NSString *)sendIssueWithTitle:(NSString *)title text:(NSString *)text;

/** ******************************************************************** **
* @name Device details
Expand Down
2 changes: 1 addition & 1 deletion BugfenderSDK.podspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Pod::Spec.new do |s|
s.name = 'BugfenderSDK'
s.version = '1.4.5'
s.version = '1.4.6'
s.ios.deployment_target = '8.0'
s.license = { :type => 'Commercial', :text => 'See https://bugfender.com/terms-of-service/' }
s.summary = 'Bugfender: a mobile remote logger'
Expand Down
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# 1.4.6
- Added method to get the session identifier.
- Now send issue method returns the issue identifier.

# 1.4.5
- Fixed issue with the latest release.

Expand Down

0 comments on commit f71ed2e

Please sign in to comment.