diff --git a/ios/Instabug.framework/Headers/Instabug.h b/ios/Instabug.framework/Headers/Instabug.h index d00440a..000dd26 100644 --- a/ios/Instabug.framework/Headers/Instabug.h +++ b/ios/Instabug.framework/Headers/Instabug.h @@ -5,7 +5,7 @@ Copyright: (c) 2013-2017 by Instabug, Inc., all rights reserved. - Version: 7.6 + Version: 7.6.1 */ #import @@ -618,8 +618,14 @@ typedef void (^NetworkObfuscationCompletionBlock)(NSData *data, NSURLResponse *r extraScreenShot:(BOOL)extraScreenShot galleryImage:(BOOL)galleryImage voiceNote:(BOOL)voiceNote - screenRecording:(BOOL)screenRecording; + screenRecording:(BOOL)screenRecording DEPRECATED_MSG_ATTRIBUTE("Starting from v8.0, use setAttachmentOptions: instead"); +/** + @brief Sets whether attachments in bug reporting and in-app messaging are enabled. + + @param attachmentTypes A NS_OPTIONS to add enabled attachments type. + */ ++ (void)setEnabledAttachmentTypes:(IBGAttachmentType)attachmentTypes; /** @brief Enables/disables showing in-app notifications when the user receives a new message. diff --git a/ios/Instabug.framework/Info.plist b/ios/Instabug.framework/Info.plist index 365206c..081f194 100644 Binary files a/ios/Instabug.framework/Info.plist and b/ios/Instabug.framework/Info.plist differ diff --git a/ios/Instabug.framework/Instabug b/ios/Instabug.framework/Instabug index c54de6e..1feb7dc 100755 Binary files a/ios/Instabug.framework/Instabug and b/ios/Instabug.framework/Instabug differ diff --git a/ios/Instabug.framework/_CodeSignature/CodeResources b/ios/Instabug.framework/_CodeSignature/CodeResources index 9a3e5ea..4840e06 100644 --- a/ios/Instabug.framework/_CodeSignature/CodeResources +++ b/ios/Instabug.framework/_CodeSignature/CodeResources @@ -6,11 +6,11 @@ Headers/Instabug.h - BfsBz56unTcAbZ94XgCeCH4hLiA= + wbRGHXdBl0uQRZhJAsvdO+5ARfU= Info.plist - GBrcvErX2xz9tnmYH6xjSxlG2w8= + lCGWkFUMspzePxMCyoe61a364pw= Modules/module.modulemap @@ -23,11 +23,11 @@ hash - BfsBz56unTcAbZ94XgCeCH4hLiA= + wbRGHXdBl0uQRZhJAsvdO+5ARfU= hash2 - 3dXqAVUmyI5WNvmhyqz38J4NQ5+VDt2a97m1Ja3T+Tk= + /beRz83/JfRE3ERsVSNwUaAFbEc3w28rX4aVpoNOC9k= Modules/module.modulemap diff --git a/ios/InstabugCore.framework/Headers/IBGTypes.h b/ios/InstabugCore.framework/Headers/IBGTypes.h index d1a3b79..ee24f06 100644 --- a/ios/InstabugCore.framework/Headers/IBGTypes.h +++ b/ios/InstabugCore.framework/Headers/IBGTypes.h @@ -291,6 +291,16 @@ typedef NS_ENUM(NSInteger, IBGLogLevel) { IBGLogLevelFatal }; +/** + The attachment types selected in Attachment action sheet. + */ +typedef NS_OPTIONS(NSInteger, IBGAttachmentType) { + IBGAttachmentTypeScreenShot = 1 << 1, + IBGAttachmentTypeExtraScreenShot = 1 << 2, + IBGAttachmentTypeGalleryImage = 1 << 4, + IBGAttachmentTypeScreenRecording = 1 << 6, +}; + @interface UIView (Instabug) /** diff --git a/ios/InstabugCore.framework/IBGActionSheetCell.nib b/ios/InstabugCore.framework/IBGActionSheetCell.nib index 7b52858..3ced344 100644 Binary files a/ios/InstabugCore.framework/IBGActionSheetCell.nib and b/ios/InstabugCore.framework/IBGActionSheetCell.nib differ diff --git a/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib b/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib index 792b5e5..d1f0185 100644 Binary files a/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib and b/ios/InstabugCore.framework/IBGActionSheetVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGAttachmentButton.nib b/ios/InstabugCore.framework/IBGAttachmentButton.nib index 28f96fe..e027001 100644 Binary files a/ios/InstabugCore.framework/IBGAttachmentButton.nib and b/ios/InstabugCore.framework/IBGAttachmentButton.nib differ diff --git a/ios/InstabugCore.framework/IBGBugVC-iPhone.nib b/ios/InstabugCore.framework/IBGBugVC-iPhone.nib index 1b4087c..6ae9813 100644 Binary files a/ios/InstabugCore.framework/IBGBugVC-iPhone.nib and b/ios/InstabugCore.framework/IBGBugVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGChatCell.nib b/ios/InstabugCore.framework/IBGChatCell.nib index 3d1c1cc..8e63a6b 100644 Binary files a/ios/InstabugCore.framework/IBGChatCell.nib and b/ios/InstabugCore.framework/IBGChatCell.nib differ diff --git a/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib b/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib index 84873c1..312342e 100644 Binary files a/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib and b/ios/InstabugCore.framework/IBGChatListVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGChatVC-iPhone.nib b/ios/InstabugCore.framework/IBGChatVC-iPhone.nib index 0028492..da02b70 100644 Binary files a/ios/InstabugCore.framework/IBGChatVC-iPhone.nib and b/ios/InstabugCore.framework/IBGChatVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib b/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib index 3de1a96..c46be29 100644 Binary files a/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib and b/ios/InstabugCore.framework/IBGFullScreenImageViewController.nib differ diff --git a/ios/InstabugCore.framework/IBGMessagesView.nib b/ios/InstabugCore.framework/IBGMessagesView.nib index 767f883..b073f6f 100644 Binary files a/ios/InstabugCore.framework/IBGMessagesView.nib and b/ios/InstabugCore.framework/IBGMessagesView.nib differ diff --git a/ios/InstabugCore.framework/IBGPoweredByView.nib b/ios/InstabugCore.framework/IBGPoweredByView.nib index 0b2e1b2..d14c537 100644 Binary files a/ios/InstabugCore.framework/IBGPoweredByView.nib and b/ios/InstabugCore.framework/IBGPoweredByView.nib differ diff --git a/ios/InstabugCore.framework/IBGPromptCell.nib b/ios/InstabugCore.framework/IBGPromptCell.nib index 0a3fd07..ca732b4 100644 Binary files a/ios/InstabugCore.framework/IBGPromptCell.nib and b/ios/InstabugCore.framework/IBGPromptCell.nib differ diff --git a/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib b/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib index 87f81eb..8d13be6 100644 Binary files a/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib and b/ios/InstabugCore.framework/IBGPromptVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGReplyView-iPhone.nib b/ios/InstabugCore.framework/IBGReplyView-iPhone.nib index 173f2d1..f386a03 100644 Binary files a/ios/InstabugCore.framework/IBGReplyView-iPhone.nib and b/ios/InstabugCore.framework/IBGReplyView-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib b/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib index b212eae..a9e28cc 100644 Binary files a/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib and b/ios/InstabugCore.framework/IBGReportCategoriesVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib b/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib index 0be381d..5a49950 100644 Binary files a/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib and b/ios/InstabugCore.framework/IBGScreenshotVC-iPhone.nib differ diff --git a/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib b/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib index cbd3b71..55b1fc6 100644 Binary files a/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib and b/ios/InstabugCore.framework/IBGUnnotifiedMessagesAlertView.nib differ diff --git a/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib b/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib index 1eb3e97..9515b68 100644 Binary files a/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib and b/ios/InstabugCore.framework/IBGVideoPlaybackViewController.nib differ diff --git a/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib b/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib index b34fe96..8d7afa6 100644 Binary files a/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib and b/ios/InstabugCore.framework/IBGVoiceNoteRecordingViewController-iPhone.nib differ diff --git a/ios/InstabugCore.framework/Info.plist b/ios/InstabugCore.framework/Info.plist index 0348dea..81de047 100644 Binary files a/ios/InstabugCore.framework/Info.plist and b/ios/InstabugCore.framework/Info.plist differ diff --git a/ios/InstabugCore.framework/InstabugCore b/ios/InstabugCore.framework/InstabugCore index bbd3428..63bd809 100755 Binary files a/ios/InstabugCore.framework/InstabugCore and b/ios/InstabugCore.framework/InstabugCore differ diff --git a/ios/InstabugCore.framework/_CodeSignature/CodeResources b/ios/InstabugCore.framework/_CodeSignature/CodeResources index 91ecef4..1c8a38e 100644 --- a/ios/InstabugCore.framework/_CodeSignature/CodeResources +++ b/ios/InstabugCore.framework/_CodeSignature/CodeResources @@ -6,79 +6,79 @@ Headers/IBGTypes.h - 4Qg2J0WQ0kybmK45tptkMe9ox6M= + mbfFeS87hm2g86JwDtWLGXLLeGs= IBGActionSheetCell.nib - +aZ44GR5dj4ZKSALguP7p+tBbBI= + dUrkrKa/Hgzi2giBH4FN88k8gmc= IBGActionSheetVC-iPhone.nib - QwWkeLx2uxp9dqwSZXMS9nRivSY= + VcPupia/bSaG5KZD+R3ivb8TWVo= IBGAttachmentButton.nib - IoKjIPVXg851HiWv7c/ZA9c1cqo= + x3mmU2Yretmp2gykScxdF5CbLmQ= IBGBugVC-iPhone.nib - NoxPNkvVfnJeCgHCSbDBREWkiu0= + kmwQGveC8dt3gpshYvQFi2qou48= IBGChatCell.nib - OAFihUYZBv64QDIqkP1/aptXa2M= + Fynx6rj0eqeM3HyVN7A659L+tKY= IBGChatListVC-iPhone.nib - Cuk5PsAFWmW/Tacd5gdtj4nHI0A= + DOLXF2aTroP5w4jZ2HGsuBdgl5g= IBGChatVC-iPhone.nib - FNlY8eFG+r1ZzOtUDBef75qlmqM= + MjNphuzT2vUrmk7ledePgpzsyB4= IBGFullScreenImageViewController.nib - XhtNnU+3KMsMzlRAzkmsJXAycPU= + lq2gcKzm5lozNyxrrGIpA7H+87I= IBGMessagesView.nib - p7Pm0U++D+FOSjPLyg5DP/68Fnw= + KDmwZMQYkG74EHsHw58+bDryEug= IBGPoweredByView.nib - 2zc8v0mihgxeiKF7Ccle4jd6f+A= + PPu6zrgweIUCuwWCUYKNmWaFGrU= IBGPromptCell.nib - RY45qsJsMqKMaIE3/KHLVRFLd0Q= + zYu2kECcBAsDIDnCwf0ocPjT+1A= IBGPromptVC-iPhone.nib - cPlLyPI1g2ZpYWjICLitrCCk77s= + 2ffTg5uBocSCZgcdpLEo1wuwvKU= IBGReplyView-iPhone.nib - +2rTjKuyvokX27rx7iMh9918WIU= + osMsIu0XgfOyqo1kM0n5R+JTsWY= IBGReportCategoriesVC-iPhone.nib - yI2Nz8R3IkasiqqvSJUG4UKJR6c= + KlPoQtDHWVdjMLtqY83P69MhbfI= IBGScreenshotVC-iPhone.nib - NmJclQCdbAiZ7n71jfNQ+rNCmpQ= + YUe6znkPMzAuGdgQOJThUVq9Pus= IBGUnnotifiedMessagesAlertView.nib - cKWmmMH/9WegdnCAaicv+LN3y3w= + zjN0keUluwIHleXZdepr4ZmrBmU= IBGVideoPlaybackViewController.nib - jtayUYJZErOpfbG0hYE9dmV5FCQ= + 0vFLlO/h4fWo3iohlVRK2zRlSzs= IBGVoiceNoteRecordingViewController-iPhone.nib - R9beEOzlxl3HXksagUU8lNxMSBw= + 4FTVtPHNwsuJzaESO9WmE/btKfI= InAppScreenshotPlaceholder.png @@ -106,7 +106,7 @@ Info.plist - 1Y5bI5gXkvX+VsaD8+xDrgkaRFc= + 72MHoUQUAFA2O4DRPQExC48acxI= Inject_DSYM_Project-Archive.sh @@ -417,209 +417,209 @@ hash - 4Qg2J0WQ0kybmK45tptkMe9ox6M= + mbfFeS87hm2g86JwDtWLGXLLeGs= hash2 - 4eNNFbV8p/C4ZDhE4Sp2myTzsMh9xzFIa77BZG2d91A= + AU9FZZnWmS7WrNGRmnnI8fY2/rBezR+UI04cXnH59sw= IBGActionSheetCell.nib hash - +aZ44GR5dj4ZKSALguP7p+tBbBI= + dUrkrKa/Hgzi2giBH4FN88k8gmc= hash2 - zVbK5uwZQUrXj2UCkzpFz38h2vmFptUwRZ2NeVCxrpc= + tHB0s4JP0wmDCPus5GlaNCf52/w8+cEkwa5I7FybZlM= IBGActionSheetVC-iPhone.nib hash - QwWkeLx2uxp9dqwSZXMS9nRivSY= + VcPupia/bSaG5KZD+R3ivb8TWVo= hash2 - eRPPepyQVP1ygVUtxmWb+a0xM4UyRC/b503HnNYDDgs= + lWbrzJaCTCFQH81MHmHEkqvdk179txVpCctIUKfxHns= IBGAttachmentButton.nib hash - IoKjIPVXg851HiWv7c/ZA9c1cqo= + x3mmU2Yretmp2gykScxdF5CbLmQ= hash2 - Q9wa8kL+W3TjZd4BdrHEElUKknlOo+89qKLwr1Mo9nM= + mBCNrV2znLfAQqh7B85KC3drP2OJFouRpvmLwp3Wk7M= IBGBugVC-iPhone.nib hash - NoxPNkvVfnJeCgHCSbDBREWkiu0= + kmwQGveC8dt3gpshYvQFi2qou48= hash2 - sWVD2i3q/hWMGDOwJXpYH8RRX7cn+umvZ5J0lvtmBnc= + SHwnpMelnLpAVRKZw861ycUufIRc8BpbPiPFkOx5sSQ= IBGChatCell.nib hash - OAFihUYZBv64QDIqkP1/aptXa2M= + Fynx6rj0eqeM3HyVN7A659L+tKY= hash2 - UzGecbFn3lJduZ8JPEelzozfULZv/ICbeOdEgp3NF7I= + Onj5ySKY1+3k1cqQaDMtSjwXH8tMYFQFoFKVPtpzoJM= IBGChatListVC-iPhone.nib hash - Cuk5PsAFWmW/Tacd5gdtj4nHI0A= + DOLXF2aTroP5w4jZ2HGsuBdgl5g= hash2 - PrLH07FoC3nd2zlI12j08tVj8UTNqi5IyORRo3yMqmw= + 80XfmzPhZ8oR9QrJWwOLNXFDYtLzX6o6yWXSBkEGXic= IBGChatVC-iPhone.nib hash - FNlY8eFG+r1ZzOtUDBef75qlmqM= + MjNphuzT2vUrmk7ledePgpzsyB4= hash2 - cU3TUHnT/rs+REPbKqObuA6TPjaoKepWQBvOxcO9QC8= + CzNu45cpn8+tOFxIliqrh5ZBWAW65HoI9zy98/0DLzI= IBGFullScreenImageViewController.nib hash - XhtNnU+3KMsMzlRAzkmsJXAycPU= + lq2gcKzm5lozNyxrrGIpA7H+87I= hash2 - pH5PDLZnlWJDaLODMBF4CdXbY2wzknysL9MhFfj/DSI= + BaGSnRzpqVk68KeaEjzIJELaidnCdSVVOGp3c4YB3IQ= IBGMessagesView.nib hash - p7Pm0U++D+FOSjPLyg5DP/68Fnw= + KDmwZMQYkG74EHsHw58+bDryEug= hash2 - 1z0094Dw3APtofJzO9DdWFlk2NXafytQHudxzZH29SA= + 3nNNyiz8N+98Q8Z/V5sGKVad/XBlNLWJD3LpTrQ7aew= IBGPoweredByView.nib hash - 2zc8v0mihgxeiKF7Ccle4jd6f+A= + PPu6zrgweIUCuwWCUYKNmWaFGrU= hash2 - IAbGfgshO2FW7XXSgmao+lKxfp/X9t4a+vALCQM38Wc= + RoA8DK271F8o0fOTVq8Cy5i2UWvNbtXGcy1grmXbhKU= IBGPromptCell.nib hash - RY45qsJsMqKMaIE3/KHLVRFLd0Q= + zYu2kECcBAsDIDnCwf0ocPjT+1A= hash2 - HtBGEvND8e/pucpOXhVweWZLIVCICA9GpBnuje8NXFw= + dbTn+NtQtMN8stDs7+ksgmGcY1gEHENC7EY9s+ct9bA= IBGPromptVC-iPhone.nib hash - cPlLyPI1g2ZpYWjICLitrCCk77s= + 2ffTg5uBocSCZgcdpLEo1wuwvKU= hash2 - IlKJO6zz+KOyaelxomLEYBl8UwSjJ518jwOa+oosnZk= + 03tQGBi6wBSJjuIehaFDKUEJNqv+8TddyLwVj0nBK0Y= IBGReplyView-iPhone.nib hash - +2rTjKuyvokX27rx7iMh9918WIU= + osMsIu0XgfOyqo1kM0n5R+JTsWY= hash2 - emKexlEbTWZOkGquIMNWQ0DKfRRs4kerqg0IvkHUYMU= + XR6e70K9HbQLrtSjXzVEypf8jCatrwJ+ZgrDbTzbIBs= IBGReportCategoriesVC-iPhone.nib hash - yI2Nz8R3IkasiqqvSJUG4UKJR6c= + KlPoQtDHWVdjMLtqY83P69MhbfI= hash2 - fUoIv9e3ldHAgwINZkaLAQWGCb8gVavPN7kV4ymYzK8= + wFj2e0l1o04wjgTT2YLeyPx0s4jSYu6m2R8qSBpLoyE= IBGScreenshotVC-iPhone.nib hash - NmJclQCdbAiZ7n71jfNQ+rNCmpQ= + YUe6znkPMzAuGdgQOJThUVq9Pus= hash2 - N3ArPgS0HEBcrq4iNE/2r9CFUJRLDiDNPgfuGCGjr6Q= + gh35KPPtjtBZaeyaiEwy6suLsHR0h07+bEKInXuRjpg= IBGUnnotifiedMessagesAlertView.nib hash - cKWmmMH/9WegdnCAaicv+LN3y3w= + zjN0keUluwIHleXZdepr4ZmrBmU= hash2 - rnSAiDAqAbkqABmK5LsX2ij0V3PxXKuLU/d7oZrOXS4= + gqj1yh357Wt/dVawWZ/7PMt2bflRobtOnftTuuKR10w= IBGVideoPlaybackViewController.nib hash - jtayUYJZErOpfbG0hYE9dmV5FCQ= + 0vFLlO/h4fWo3iohlVRK2zRlSzs= hash2 - w7zc6Supc2vMmJGbxcCceG9IUU0FneuPsmHMNi6pqEw= + O8vQ1AUU4j54RHy2+s16YUUHQAPttrQOZw9u0isIPqI= IBGVoiceNoteRecordingViewController-iPhone.nib hash - R9beEOzlxl3HXksagUU8lNxMSBw= + 4FTVtPHNwsuJzaESO9WmE/btKfI= hash2 - +848Ww23i/fC3xBAf5YKDzGW0hm13El6Jni9nzJKVfM= + 3yiNCHl/0xFR1O/3/dEp3VTofsZm4gYdXILkJXOCftE= InAppScreenshotPlaceholder.png