Skip to content

Commit f8cf35e

Browse files
committed
v2.0.0
1 parent ad2d90d commit f8cf35e

File tree

723 files changed

+12130
-215
lines changed

Some content is hidden

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

723 files changed

+12130
-215
lines changed
Binary file not shown.

Instabug.framework/[email protected]

-7.01 KB
Binary file not shown.

Instabug.framework/[email protected]

-10.6 KB
Binary file not shown.

Instabug.framework/CaptureButton.png

-2.99 KB
Binary file not shown.

Instabug.framework/[email protected]

-7.12 KB
Binary file not shown.

Instabug.framework/[email protected]

-10.3 KB
Binary file not shown.
Binary file not shown.

Instabug.framework/[email protected]

-151 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-172 Bytes
Binary file not shown.
-99 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-131 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-163 Bytes
Binary file not shown.
Binary file not shown.

Instabug.framework/[email protected]

-149 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-170 Bytes
Binary file not shown.
-99 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-135 Bytes
Binary file not shown.

Instabug.framework/[email protected]

-167 Bytes
Binary file not shown.
Binary file not shown.

Instabug.framework/[email protected]

-2.26 KB
Binary file not shown.

Instabug.framework/[email protected]

-1.85 KB
Binary file not shown.
-1.13 KB
Binary file not shown.

Instabug.framework/[email protected]

-2.21 KB
Binary file not shown.

Instabug.framework/[email protected]

-1.84 KB
Binary file not shown.

Instabug.framework/Headers/IBGEnums.h

Lines changed: 107 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,13 +40,26 @@ typedef NS_ENUM(NSInteger, IBGColorTheme) {
4040
*/
4141
typedef NS_ENUM(NSInteger, IBGInvocationMode) {
4242
IBGInvocationModeNA,
43-
IBGInvocationModeBugReporter,
44-
IBGInvocationModeFeedbackSender
43+
IBGInvocationModeBugReporter __attribute__((deprecated)),
44+
IBGInvocationModeFeedbackSender __attribute__((deprecated)),
45+
IBGInvocationModeNewBug,
46+
IBGInvocationModeNewFeedback,
47+
IBGInvocationModeNewChat,
48+
IBGInvocationModeChatsList
49+
};
50+
51+
/**
52+
* Type of report to be submit
53+
*/
54+
typedef NS_ENUM(NSInteger, IBGReportType) {
55+
IBGReportTypeBug,
56+
IBGReportTypeFeedback
4557
};
4658

4759
/**
4860
* Type of feedback to be submit
4961
*/
62+
__attribute__((deprecated))
5063
typedef NS_ENUM(NSInteger, IBGFeedbackType) {
5164
IBGFeedbackTypeBug,
5265
IBGFeedbackTypeFeedback,
@@ -56,6 +69,7 @@ typedef NS_ENUM(NSInteger, IBGFeedbackType) {
5669
/**
5770
* State of Issue after SDK dismiss
5871
*/
72+
__attribute__((deprecated))
5973
typedef NS_ENUM(NSInteger, IBGIssueState) {
6074
// Issue is submitted
6175
IBGIssueSubmitted,
@@ -65,12 +79,25 @@ typedef NS_ENUM(NSInteger, IBGIssueState) {
6579
IBGIssueInProgress
6680
};
6781

82+
/**
83+
* Type of SDK dismiss
84+
*/
85+
typedef NS_ENUM(NSInteger, IBGDismissType) {
86+
// Dismissed after report submit
87+
IBGDismissTypeSubmit,
88+
// Dismissed via cancel
89+
IBGDismissTypeCancel,
90+
// Dismissed while taking screenshot
91+
IBGDismissTypeAddAttachment
92+
};
93+
6894
/**
6995
* The supported locales
7096
*/
7197
typedef NS_ENUM(NSInteger, IBGLocale) {
7298
IBGLocaleArabic,
7399
IBGLocaleChineseSimplified,
100+
IBGLocaleChineseTaiwan,
74101
IBGLocaleChineseTraditional,
75102
IBGLocaleCzech,
76103
IBGLocaleDanish,
@@ -81,10 +108,88 @@ typedef NS_ENUM(NSInteger, IBGLocale) {
81108
IBGLocaleJapanese,
82109
IBGLocaleKorean,
83110
IBGLocalePolish,
111+
IBGLocalePortugese,
84112
IBGLocalePortugueseBrazil,
85113
IBGLocaleRussian,
114+
IBGLocaleSlovak,
86115
IBGLocaleSpanish,
87116
IBGLocaleSwedish,
88117
IBGLocaleTurkish
89118
};
119+
120+
/**
121+
* Instabug strings
122+
*/
123+
typedef NS_ENUM(NSInteger, IBGString) {
124+
//"<Shake> your device to talk to us"
125+
IBGStringShakeHint,
126+
//"<Swipe with 2 fingers> to talk to us"
127+
IBGStringSwipeHint,
128+
//"<Swipe from the edge> to talk to us"
129+
IBGStringEdgeSwipeStartHint,
130+
//"We love to hear your feedback"
131+
IBGStringStartAlertText,
132+
//"Please enter a valid email"
133+
IBGStringInvalidEmailMessage,
134+
//"Invalid Email"
135+
IBGStringInvalidEmailTitle,
136+
//"Please enter a valid comment"
137+
IBGStringInvalidCommentMessage,
138+
//"Invalid Comment"
139+
IBGStringInvalidCommentTitle,
140+
//"Help & Feedback"
141+
IBGStringInvocationHeader,
142+
//"Talk to us"
143+
IBGStringTalkToUs,
144+
//"Report bug"
145+
IBGStringReportBug,
146+
//"Suggest an Improvement"
147+
IBGStringReportFeedback,
148+
//"Enter your Email"
149+
IBGStringEmailFieldHint,
150+
//"What went wrong?"
151+
IBGStringCommentFieldHintForBugReport,
152+
//"How can we improve?"
153+
IBGStringCommentFieldHintForFeedback,
154+
//"Take a screen recording Note"
155+
IBGStringAddScreenRecordingMessage,
156+
//"Record a Voice Note"
157+
IBGStringAddVoiceMessage,
158+
//"Select Image from Gallery"
159+
IBGStringAddImageFromGallery,
160+
//"Take a Screenshot"
161+
IBGStringAddExtraScreenshot,
162+
//"Microphone Access Denied"
163+
IBGStringAudioRecordingPermissionDeniedTitle,
164+
//"You can enable access in Privacy Settings"
165+
IBGStringAudioRecordingPermissionDeniedMessage,
166+
//"Settings"
167+
IBGStringMicrophonePermissionAlertSettingsButtonTitle,
168+
//"Conversations"
169+
IBGStringChatsHeaderTitle,
170+
//"%@ Team"
171+
IBGStringTeam,
172+
//"Press and Hold to Record"
173+
IBGStringRecordingMessageToHoldText,
174+
//"Release to Attach"
175+
IBGStringRecordingMessageToReleaseText,
176+
//"%@ new messages from %@"
177+
IBGStringMessagesNotification,
178+
//%@ new messages from %@ and others
179+
IBGStringMessagesNotificationAndOthers,
180+
//"Draw on screenshot"
181+
IBGStringScreenshotHeaderTitle,
182+
//"OK"
183+
IBGStringOkButtonTitle,
184+
//"Cancel"
185+
IBGStringCancelButtonTitle,
186+
//"Thank you"
187+
IBGStringThankYouText,
188+
//"Audio"
189+
IBGStringAudio,
190+
//"Screen Recording"
191+
IBGStringScreenRecording,
192+
//"Image"
193+
IBGStringImage
194+
};
90195
//===========================================================================================================================================

0 commit comments

Comments
 (0)