Skip to content

Commit 1f51a43

Browse files
committed
πŸ’Ž Bump version to 8.2.0
2 parents fc6804d + d5a87c5 commit 1f51a43

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

53 files changed

+180
-144
lines changed

β€Žbuild.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,6 @@ android {
2121
}
2222

2323
dependencies {
24-
implementation 'com.instabug.library:instabug:8.1.1'
24+
implementation 'com.instabug.library:instabug:8.2.0'
2525
implementation 'com.android.support:multidex:1.0.0'
2626
}

β€Žpackage.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "instabug-cordova",
3-
"version": "8.1.0",
3+
"version": "8.2.0",
44
"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.",
55
"main": "index.js",
66
"repository": {

β€Žscripts/android/edit_manifest.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
1+
const fs = require('fs');
2+
const path = require('path');
3+
const Q = require('q');
14
module.exports = (ctx, isInstalling) => {
2-
const fs = ctx.requireCordovaModule('fs');
3-
const path = ctx.requireCordovaModule('path');
4-
const Q = ctx.requireCordovaModule('q');
55
const xml = ctx.requireCordovaModule('cordova-common').xmlHelpers;
66

77
const deferred = Q.defer();

β€Žsrc/ios/Instabug.framework/Headers/IBGSurveys.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -75,11 +75,13 @@ NS_SWIFT_NAME(Surveys)
7575
@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.
7676
7777
@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.
78+
79+
Please note that this overrides the dashboard configuration for reshowing if called.
7880
7981
@param sessionCount : Number of sessions required to be initialized before a dismissed survey can be shown again.
8082
@param daysCount : Number of days required to pass before a dismissed survey can be shown again.
8183
*/
82-
+ (void)setThresholdForReshowingSurveyAfterDismiss:(NSInteger)sessionCount daysCount:(NSInteger)daysCount;
84+
+ (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.");
8385

8486
/**
8587
@brief Returns true if the survey with a specific token was answered before .

β€Žsrc/ios/Instabug.framework/Headers/IBGTypes.h

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,8 +140,12 @@ extern NSString * const kIBGSurveyIntroTitleText;
140140
extern NSString * const kIBGSurveyIntroDescriptionText;
141141
extern NSString * const kIBGSurveyIntroTakeSurveyButtonText;
142142
extern NSString * const kIBGSurveyIntroDismissButtonText;
143-
extern NSString * const kIBGSurveyThankYouTitleText;
144-
extern NSString * const kIBGSurveyThankYouDescriptionText;
143+
extern NSString * const kIBGSurveyThankYouTitleText DEPRECATED_MSG_ATTRIBUTE("kIBGSurveyThankYouTitleText is deprecated. You can edit this string from the dashboard, and use kIBGCustomSurveyThankYouTitleText for Custom surveys.");
144+
extern NSString * const kIBGSurveyThankYouDescriptionText DEPRECATED_MSG_ATTRIBUTE("kIBGSurveyThankYouDescriptionText is deprecated. You can edit this string from the dashboard, and use kIBGCustomSurveyThankYouDescriptionText for Custom surveys.");
145+
extern NSString * const kIBGStoreRatingThankYouTitleText;
146+
extern NSString * const kIBGStoreRatingThankYouDescriptionText;
147+
extern NSString * const kIBGCustomSurveyThankYouTitleText;
148+
extern NSString * const kIBGCustomSurveyThankYouDescriptionText;
145149
extern NSString * const kIBGSurveysNPSLeastLikelyStringName;
146150
extern NSString * const kIBGSurveysNPSMostLikelyStringName;
147151
extern NSString * const kIBGSurveyNextButtonTitle;
2 Bytes
Binary file not shown.
2.44 MB
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.
Binary file not shown.
Binary file not shown.

0 commit comments

Comments
Β (0)