This repository was archived by the owner on Oct 9, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 4 files changed +14
-5
lines changed
Instabug.framework/Versions/A Expand file tree Collapse file tree 4 files changed +14
-5
lines changed Original file line number Diff line number Diff line change @@ -48,11 +48,12 @@ if [ "$EFFECTIVE_PLATFORM_NAME" == "-iphonesimulator" ]; then
4848fi
4949
5050# Create temp directory if not exists
51- TEMP_ROOT=" /tmp/Instabug"
51+ CURRENT_USER=$( whoami| tr -dc ' [:alnum:]\n\r' | tr ' [:upper:]' ' [:lower:]' )
52+ TEMP_ROOT=" /tmp/Instabug-${CURRENT_USER} "
5253if [ ! -d " ${TEMP_ROOT} " ]; then
5354mkdir " ${TEMP_ROOT} "
5455fi
55- TEMP_DIRECTORY=" /tmp/Instabug /$EXECUTABLE_NAME "
56+ TEMP_DIRECTORY=" ${TEMP_ROOT} /$EXECUTABLE_NAME "
5657if [ ! -d " ${TEMP_DIRECTORY} " ]; then
5758mkdir " ${TEMP_DIRECTORY} "
5859fi
Original file line number Diff line number Diff line change 55
66 Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
77
8- Version: 3.17
8+ Version: 3.18
99 */
1010
1111// ===========================================================================================================================================
@@ -149,6 +149,14 @@ void IBGLog(NSString *format, ...);
149149 */
150150+ (void )setDefaultInvocationMode : (IBGInvocationMode)invocationMode ;
151151
152+ /* *
153+ * Sets whether to attach a screenshot to crash reports or not
154+ *
155+ * Default = NO
156+ * @param willAttachCrashScreenshot willAttachCrashScreenshot
157+ */
158+ + (void )setWillAttachCrashScreenshot : (BOOL )willAttachCrashScreenshot ;
159+
152160/* *
153161 * Sets whether to show a screenshot to be annotated or not
154162 *
Original file line number Diff line number Diff line change 11Pod ::Spec . new do |s |
22 s . name = "Instabug"
3- s . version = "3.17 "
3+ s . version = "3.18 "
44 s . summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55 s . homepage = "http://instabug.com"
66 s . license = {
@@ -23,7 +23,7 @@ Pod::Spec.new do |s|
2323 }
2424 s . author = { "Instabug" => "contactus@instabug.com" }
2525 s . platform = :ios , '5.0'
26- s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.17 " }
26+ s . source = { :git => "https://github.com/Instabug/Instabug-iOS.git" , :tag => "3.18 " }
2727 s . source_files = 'Instabug.framework/Versions/A/Headers/*.{h}'
2828 s . resources = 'Instabug.bundle'
2929 s . preserve_paths = 'Instabug.framework/*' , 'Instabug.bundle'
You can’t perform that action at this time.
0 commit comments