Skip to content

Commit c080cd6

Browse files
committed
v5.3.1
Starting from this version, any use of IBGLog in preSendingBlock should be placed in preInvocationBlock instead. Bug fixes. Add Czech localisation.
1 parent 97834c8 commit c080cd6

File tree

65 files changed

+9
-5
lines changed

Some content is hidden

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

65 files changed

+9
-5
lines changed
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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-1 Bytes
Binary file not shown.
-2 Bytes
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
2 Bytes
Binary file not shown.
0 Bytes
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.

Instabug.bundle/Instabug_dsym_upload.sh

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,8 +72,10 @@ echo "Instabug: found DSYM_PATH=${DSYM_PATH}"
7272
# Check if UUIDs exists
7373
DSYM_UUIDs=$(dwarfdump --uuid "${DSYM_PATH}" | cut -d' ' -f2)
7474
DSYM_UUIDs_PATH="${TEMP_DIRECTORY}/UUIDs.dat"
75+
DSYM_UUIDs_TOKEN="${DSYM_UUIDs//$'\n'/-${APP_TOKEN}$'\n'}"-${APP_TOKEN}
76+
7577
if [ -f "${DSYM_UUIDs_PATH}" ]; then
76-
if grep -Fxq "${DSYM_UUIDs}" "${DSYM_UUIDs_PATH}"; then
78+
if grep -Fxq "${DSYM_UUIDs_TOKEN}" "${DSYM_UUIDs_PATH}"; then
7779
exit 0
7880
fi
7981
fi
@@ -103,7 +105,7 @@ echo "Instabug: deleting temporary dSYM archive..."
103105
/bin/rm -f "${DSYM_PATH_ZIP}"
104106

105107
# Save UUIDs
106-
echo "${DSYM_UUIDs}" >> "${DSYM_UUIDs_PATH}"
108+
echo "${DSYM_UUIDs_TOKEN}" >> "${DSYM_UUIDs_PATH}"
107109

108110
# Finalize
109111
echo "Instabug: dSYM upload complete."
42 Bytes
Binary file not shown.
2.85 KB
Binary file not shown.
42 Bytes
Binary file not shown.
2.29 KB
Binary file not shown.
-44 Bytes
Binary file not shown.

Instabug.framework/Versions/A/Headers/IBGEnums.h

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -72,6 +72,8 @@ typedef NS_ENUM(NSInteger, IBGLocale) {
7272
IBGLocaleArabic,
7373
IBGLocaleChineseSimplified,
7474
IBGLocaleChineseTraditional,
75+
IBGLocaleCzech,
76+
IBGLocaleDanish,
7577
IBGLocaleEnglish,
7678
IBGLocaleFrench,
7779
IBGLocaleGerman,

Instabug.framework/Versions/A/Headers/Instabug.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
66
Copyright: (c) 2014 by Instabug, Inc., all rights reserved.
77
8-
Version: 5.3
8+
Version: 5.3.1
99
*/
1010

1111
//===========================================================================================================================================
@@ -96,7 +96,7 @@ OBJC_EXTERN void IBGLog(NSString *format, ...) NS_FORMAT_FUNCTION(1, 2);
9696
* @param format format
9797
* @param arguments arguments
9898
*/
99-
+ (void)IBGLog:(NSString *)format withArguments:(va_list)arguments;
99+
+ (void)IBGLog:(NSString *)format withArguments:(va_list)arguments DEPRECATED_MSG_ATTRIBUTE("Starting from (v5.3). Use IBGLog:(NSString *)log instead.");
100100

101101
/**
102102
* Adds custom logs that will be sent with each report
9.79 KB
Binary file not shown.

Instabug.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Pod::Spec.new do |s|
22
s.name = "Instabug"
3-
s.version = "5.3"
3+
s.version = "5.3.1"
44
s.summary = "Bug reporting for mobile apps. Learn more at http://instabug.com"
55
s.homepage = "http://instabug.com"
66
s.license = {

0 commit comments

Comments
 (0)