Skip to content

Commit

Permalink
💎 Bump version to 8.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
salmamali committed Mar 31, 2019
2 parents fc6804d + d5a87c5 commit 1f51a43
Show file tree
Hide file tree
Showing 53 changed files with 180 additions and 144 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ android {
}

dependencies {
implementation 'com.instabug.library:instabug:8.1.1'
implementation 'com.instabug.library:instabug:8.2.0'
implementation 'com.android.support:multidex:1.0.0'
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "instabug-cordova",
"version": "8.1.0",
"version": "8.2.0",
"description": "The purpose of this plugin is to simplify the process of integrating the Instabug SDK in a hybrid application, as well as to provide an interface to interfacing with the SDK through JavaScript.",
"main": "index.js",
"repository": {
Expand Down
6 changes: 3 additions & 3 deletions scripts/android/edit_manifest.js
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
const fs = require('fs');
const path = require('path');
const Q = require('q');
module.exports = (ctx, isInstalling) => {
const fs = ctx.requireCordovaModule('fs');
const path = ctx.requireCordovaModule('path');
const Q = ctx.requireCordovaModule('q');
const xml = ctx.requireCordovaModule('cordova-common').xmlHelpers;

const deferred = Q.defer();
Expand Down
4 changes: 3 additions & 1 deletion src/ios/Instabug.framework/Headers/IBGSurveys.h
Original file line number Diff line number Diff line change
Expand Up @@ -75,11 +75,13 @@ NS_SWIFT_NAME(Surveys)
@brief Sets a threshold for numbers of sessions and another for number of days required before a survey, that has been dismissed once, would show again.
@discussion When a survey that has been shown to the user gets dismissed once, it will not reappear to the user unless a certain number of sessions have started AND a certain number of days have passed since the user first dismissed the survey. Note that if a survey is dismissed for a second time, it will not show again, in other words, it will be set to `canceled`. This applies to both surveys with and without tokens.
Please note that this overrides the dashboard configuration for reshowing if called.
@param sessionCount : Number of sessions required to be initialized before a dismissed survey can be shown again.
@param daysCount : Number of days required to pass before a dismissed survey can be shown again.
*/
+ (void)setThresholdForReshowingSurveyAfterDismiss:(NSInteger)sessionCount daysCount:(NSInteger)daysCount;
+ (void)setThresholdForReshowingSurveyAfterDismiss:(NSInteger)sessionCount daysCount:(NSInteger)daysCount DEPRECATED_MSG_ATTRIBUTE("Reshowing the survey can now be controlled from the dashboard for any new survey you create.");

/**
@brief Returns true if the survey with a specific token was answered before .
Expand Down
8 changes: 6 additions & 2 deletions src/ios/Instabug.framework/Headers/IBGTypes.h
Original file line number Diff line number Diff line change
Expand Up @@ -140,8 +140,12 @@ extern NSString * const kIBGSurveyIntroTitleText;
extern NSString * const kIBGSurveyIntroDescriptionText;
extern NSString * const kIBGSurveyIntroTakeSurveyButtonText;
extern NSString * const kIBGSurveyIntroDismissButtonText;
extern NSString * const kIBGSurveyThankYouTitleText;
extern NSString * const kIBGSurveyThankYouDescriptionText;
extern NSString * const kIBGSurveyThankYouTitleText DEPRECATED_MSG_ATTRIBUTE("kIBGSurveyThankYouTitleText is deprecated. You can edit this string from the dashboard, and use kIBGCustomSurveyThankYouTitleText for Custom surveys.");
extern NSString * const kIBGSurveyThankYouDescriptionText DEPRECATED_MSG_ATTRIBUTE("kIBGSurveyThankYouDescriptionText is deprecated. You can edit this string from the dashboard, and use kIBGCustomSurveyThankYouDescriptionText for Custom surveys.");
extern NSString * const kIBGStoreRatingThankYouTitleText;
extern NSString * const kIBGStoreRatingThankYouDescriptionText;
extern NSString * const kIBGCustomSurveyThankYouTitleText;
extern NSString * const kIBGCustomSurveyThankYouDescriptionText;
extern NSString * const kIBGSurveysNPSLeastLikelyStringName;
extern NSString * const kIBGSurveysNPSMostLikelyStringName;
extern NSString * const kIBGSurveyNextButtonTitle;
Expand Down
Binary file modified src/ios/Instabug.framework/Info.plist
Binary file not shown.
Binary file modified src/ios/Instabug.framework/Instabug
Binary file not shown.
Binary file modified src/ios/Instabug.framework/InstabugResources.bundle/Assets.car
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file modified src/ios/Instabug.framework/InstabugResources.bundle/Info.plist
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading

0 comments on commit 1f51a43

Please sign in to comment.