Skip to content

Commit dacf06e

Browse files
committed
v5.2.5
1 parent 7343a3e commit dacf06e

File tree

402 files changed

+94
-6
lines changed

Some content is hidden

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

402 files changed

+94
-6
lines changed
192 Bytes

Instabug.bundle/[email protected]

464 Bytes

Instabug.bundle/[email protected]

1.98 KB

Instabug.bundle/CaptureButton.png

310 Bytes

Instabug.bundle/[email protected]

426 Bytes

Instabug.bundle/[email protected]

1.91 KB

Instabug.bundle/[email protected]

-2 Bytes

Instabug.bundle/[email protected]

-8 Bytes
-2 Bytes

Instabug.bundle/[email protected]

-2 Bytes

Instabug.bundle/[email protected]

-5 Bytes
-4 Bytes

Instabug.bundle/[email protected]

-2 Bytes

Instabug.bundle/[email protected]

-2 Bytes

Instabug.bundle/[email protected]

259 Bytes

Instabug.bundle/[email protected]

-268 Bytes

Instabug.bundle/ExtraScreenshot.png

73 Bytes

Instabug.bundle/[email protected]

413 Bytes

Instabug.bundle/[email protected]

-176 Bytes

Instabug.bundle/[email protected]

-1.92 KB

Instabug.bundle/[email protected]

-2.44 KB
-1.48 KB

Instabug.bundle/[email protected]

-2.53 KB

Instabug.bundle/[email protected]

-3.26 KB
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.
-23 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.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
-23 Bytes
Binary file not shown.
-45 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.
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.
-209 Bytes

Instabug.bundle/[email protected]

-393 Bytes

Instabug.bundle/[email protected]

-25 Bytes

Instabug.bundle/InAppBug.png

-172 Bytes

Instabug.bundle/[email protected]

-275 Bytes

Instabug.bundle/[email protected]

-25 Bytes
-177 Bytes

Instabug.bundle/[email protected]

-382 Bytes

Instabug.bundle/[email protected]

-29 Bytes

Instabug.bundle/InAppFeedback.png

-124 Bytes

Instabug.bundle/[email protected]

-266 Bytes

Instabug.bundle/[email protected]

-29 Bytes

Instabug.bundle/InAppGrayAvatar.png

-69 Bytes

Instabug.bundle/[email protected]

-559 Bytes

Instabug.bundle/[email protected]

-984 Bytes
-42 Bytes

Instabug.bundle/[email protected]

-280 Bytes

Instabug.bundle/[email protected]

-340 Bytes
-32 Bytes

Instabug.bundle/[email protected]

-278 Bytes

Instabug.bundle/[email protected]

-331 Bytes

Instabug.bundle/Instabug_dsym_upload.sh

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ fi
2929

3030
# Check to make sure the app token exists
3131
if [ ! "${APP_TOKEN}" ]; then
32-
APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
32+
APP_TOKEN=$(grep -r 'Instabug startWithToken:@\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
3333
fi
3434

3535
if [ ! "${APP_TOKEN}" ]; then
36-
APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
36+
APP_TOKEN=$(grep -r 'Instabug.startWithToken(\"[0-9a-zA-Z]*\"' ./ -m 1 | grep -o '\"[0-9a-zA-Z]*\"' | cut -d "\"" -f 2)
3737
fi
3838

3939
if [ ! "${APP_TOKEN}" ] || [ -z "${APP_TOKEN}" ];then
@@ -60,10 +60,17 @@ mkdir "${TEMP_DIRECTORY}"
6060
fi
6161

6262
# Check dSYM file
63-
DSYM_PATH=${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}
64-
DSYM_UUIDs=$(dwarfdump --uuid "${DSYM_PATH}" | cut -d' ' -f2)
63+
if [ ! "${DSYM_PATH}" ]; then
64+
if [ ! "${DWARF_DSYM_FOLDER_PATH}" ] || [ ! "${DWARF_DSYM_FILE_NAME}" ]; then
65+
echo "Instabug: err: DWARF_DSYM_FOLDER_PATH or DWARF_DSYM_FILE_NAME not defined"
66+
exit 0
67+
fi
68+
DSYM_PATH=${DWARF_DSYM_FOLDER_PATH}/${DWARF_DSYM_FILE_NAME}
69+
fi
70+
echo "Instabug: found DSYM_PATH=${DSYM_PATH}"
6571

6672
# Check if UUIDs exists
73+
DSYM_UUIDs=$(dwarfdump --uuid "${DSYM_PATH}" | cut -d' ' -f2)
6774
DSYM_UUIDs_PATH="${TEMP_DIRECTORY}/UUIDs.dat"
6875
if [ -f "${DSYM_UUIDs_PATH}" ]; then
6976
if grep -Fxq "${DSYM_UUIDs}" "${DSYM_UUIDs_PATH}"; then
-180 Bytes

Instabug.bundle/[email protected]

-207 Bytes

Instabug.bundle/[email protected]

-892 Bytes

Instabug.bundle/NoConnection.png

-1.61 KB

Instabug.bundle/[email protected]

-2.76 KB

Instabug.bundle/[email protected]

-892 Bytes
-194 Bytes

Instabug.bundle/[email protected]

-583 Bytes

Instabug.bundle/[email protected]

-665 Bytes

Instabug.bundle/NoMessages.png

-1.27 KB

Instabug.bundle/[email protected]

-1.89 KB

Instabug.bundle/[email protected]

-665 Bytes

Instabug.bundle/SendButton.png

-206 Bytes

Instabug.bundle/[email protected]

-646 Bytes

Instabug.bundle/[email protected]

-316 Bytes

Instabug.bundle/Shake-43.png

-1.17 KB
612 Bytes

Instabug.bundle/[email protected]

1.25 KB

Instabug.bundle/actionsheet_1.png

-128 Bytes

Instabug.bundle/[email protected]

-338 Bytes
837 Bytes

Instabug.bundle/[email protected]

1.94 KB

Instabug.bundle/actionsheet_2.png

672 Bytes

Instabug.bundle/[email protected]

1.72 KB
867 Bytes

Instabug.bundle/[email protected]

2.08 KB

Instabug.bundle/actionsheet_3.png

-155 Bytes

Instabug.bundle/[email protected]

-382 Bytes

Instabug.bundle/[email protected]

-14 Bytes

Instabug.bundle/[email protected]

-10 Bytes

Instabug.bundle/addscreenshot.png

-124 Bytes

Instabug.bundle/[email protected]

-148 Bytes

Instabug.bundle/[email protected]

-10 Bytes
39 Bytes
Binary file not shown.

Instabug.bundle/[email protected]

-1.42 KB

Instabug.bundle/[email protected]

-460 Bytes

Instabug.bundle/[email protected]

-2.09 KB

Instabug.bundle/[email protected]

-786 Bytes
-585 Bytes

Instabug.bundle/[email protected]

-788 Bytes

Instabug.bundle/[email protected]

-801 Bytes

Instabug.bundle/audioplaceholder.png

-413 Bytes

Instabug.bundle/[email protected]

-479 Bytes

Instabug.bundle/[email protected]

-359 Bytes

Instabug.bundle/backbtn.png

-108 Bytes

Instabug.bundle/[email protected]

-212 Bytes

Instabug.bundle/[email protected]

-688 Bytes

Instabug.bundle/bluebubble.png

-41 Bytes

Instabug.bundle/[email protected]

-88 Bytes

Instabug.bundle/[email protected]

-158 Bytes
-222 Bytes

Instabug.bundle/[email protected]

-435 Bytes

Instabug.bundle/[email protected]

-127 Bytes

Instabug.bundle/bug.png

-155 Bytes

Instabug.bundle/[email protected]

-284 Bytes

Instabug.bundle/[email protected]

-127 Bytes

Instabug.bundle/colordarkblue.png

-145 Bytes

Instabug.bundle/[email protected]

-687 Bytes

Instabug.bundle/[email protected]

-863 Bytes

Instabug.bundle/colorgreen.png

-77 Bytes

Instabug.bundle/[email protected]

-543 Bytes

Instabug.bundle/[email protected]

-893 Bytes

Instabug.bundle/colorlightblue.png

-146 Bytes

Instabug.bundle/[email protected]

-641 Bytes

Instabug.bundle/[email protected]

-922 Bytes

Instabug.bundle/colorred.png

-150 Bytes

Instabug.bundle/[email protected]

-538 Bytes

Instabug.bundle/[email protected]

-875 Bytes

Instabug.bundle/coloryellow.png

-150 Bytes

Instabug.bundle/[email protected]

-526 Bytes

Instabug.bundle/[email protected]

-836 Bytes

Instabug.bundle/[email protected]

-19 Bytes

Instabug.bundle/[email protected]

-32 Bytes
29 Bytes
Binary file not shown.

Instabug.bundle/deletescreenshot.png

-71 Bytes

Instabug.bundle/[email protected]

-159 Bytes

Instabug.bundle/[email protected]

-345 Bytes
13 Bytes
Binary file not shown.
-345 Bytes

Instabug.bundle/[email protected]

-856 Bytes

Instabug.bundle/[email protected]

-1.42 KB

Instabug.bundle/eraser.png

-31 Bytes

Instabug.bundle/[email protected]

-34 Bytes

Instabug.bundle/[email protected]

-239 Bytes
26 Bytes
Binary file not shown.
-192 Bytes

Instabug.bundle/[email protected]

-412 Bytes

Instabug.bundle/[email protected]

-122 Bytes

Instabug.bundle/feedback.png

-102 Bytes

Instabug.bundle/[email protected]

-303 Bytes

Instabug.bundle/[email protected]

-122 Bytes
13 Bytes
Binary file not shown.
-190 Bytes

Instabug.bundle/[email protected]

-325 Bytes

Instabug.bundle/[email protected]

-126 Bytes

Instabug.bundle/fromgallery.png

-117 Bytes

Instabug.bundle/[email protected]

-233 Bytes

Instabug.bundle/[email protected]

-126 Bytes

Instabug.bundle/graybubble.png

-60 Bytes

Instabug.bundle/[email protected]

-129 Bytes

Instabug.bundle/[email protected]

-209 Bytes

Instabug.bundle/heartforyou.png

-573 Bytes

Instabug.bundle/[email protected]

-1003 Bytes

Instabug.bundle/[email protected]

-278 Bytes
-245 Bytes

Instabug.bundle/[email protected]

-429 Bytes

Instabug.bundle/[email protected]

-796 Bytes

Instabug.bundle/history.png

-110 Bytes

Instabug.bundle/[email protected]

-220 Bytes

Instabug.bundle/[email protected]

-204 Bytes

Instabug.bundle/[email protected]

-452 Bytes

Instabug.bundle/[email protected]

-768 Bytes
-147 Bytes

Instabug.bundle/[email protected]

-204 Bytes

Instabug.bundle/[email protected]

-671 Bytes

Instabug.bundle/instabuglogo.png

-315 Bytes

Instabug.bundle/[email protected]

-613 Bytes

Instabug.bundle/[email protected]

-1.7 KB
16 Bytes
Binary file not shown.
14 Bytes
Binary file not shown.
22 Bytes
Binary file not shown.
-226 Bytes

Instabug.bundle/[email protected]

-464 Bytes

Instabug.bundle/[email protected]

-130 Bytes

Instabug.bundle/micro.png

-143 Bytes

Instabug.bundle/[email protected]

-274 Bytes

Instabug.bundle/[email protected]

-130 Bytes

Instabug.bundle/onefinger-1.png

-202 Bytes

Instabug.bundle/onefinger-10.png

-219 Bytes

Instabug.bundle/onefinger-11.png

-200 Bytes

Instabug.bundle/onefinger-12.png

-206 Bytes

Instabug.bundle/onefinger-13.png

-212 Bytes

Instabug.bundle/onefinger-14.png

-222 Bytes

Instabug.bundle/onefinger-15.png

-233 Bytes

Instabug.bundle/onefinger-16.png

-248 Bytes

Instabug.bundle/onefinger-17.png

-248 Bytes

Instabug.bundle/onefinger-18.png

-299 Bytes

Instabug.bundle/onefinger-19.png

-362 Bytes

Instabug.bundle/onefinger-2.png

-202 Bytes

Instabug.bundle/onefinger-20.png

-390 Bytes

Instabug.bundle/onefinger-21.png

-353 Bytes

Instabug.bundle/onefinger-22.png

-353 Bytes

Instabug.bundle/onefinger-23.png

-347 Bytes

Instabug.bundle/onefinger-24.png

-315 Bytes

Instabug.bundle/onefinger-25.png

-366 Bytes

Instabug.bundle/onefinger-26.png

-339 Bytes

Instabug.bundle/onefinger-27.png

-339 Bytes

Instabug.bundle/onefinger-28.png

-304 Bytes

Instabug.bundle/onefinger-29.png

-376 Bytes

Instabug.bundle/onefinger-3.png

-165 Bytes

Instabug.bundle/onefinger-4.png

-255 Bytes

Instabug.bundle/onefinger-5.png

-215 Bytes

Instabug.bundle/onefinger-6.png

-214 Bytes

Instabug.bundle/onefinger-7.png

-214 Bytes

Instabug.bundle/onefinger-8.png

-190 Bytes

Instabug.bundle/onefinger-9.png

-202 Bytes
28 Bytes
Binary file not shown.

Instabug.bundle/playrecording.png

-397 Bytes

Instabug.bundle/[email protected]

-2.19 KB

Instabug.bundle/[email protected]

-2.36 KB

Instabug.bundle/powerplushome-1.png

-444 Bytes

Instabug.bundle/powerplushome-10.png

-421 Bytes

Instabug.bundle/powerplushome-11.png

-409 Bytes

Instabug.bundle/powerplushome-12.png

-409 Bytes

Instabug.bundle/powerplushome-13.png

-397 Bytes

Instabug.bundle/powerplushome-14.png

-427 Bytes

Instabug.bundle/powerplushome-15.png

-401 Bytes

Instabug.bundle/powerplushome-16.png

-484 Bytes

Instabug.bundle/powerplushome-17.png

-484 Bytes

Instabug.bundle/powerplushome-18.png

-444 Bytes

Instabug.bundle/powerplushome-19.png

-444 Bytes

Instabug.bundle/powerplushome-2.png

-444 Bytes

Instabug.bundle/powerplushome-20.png

-444 Bytes

Instabug.bundle/powerplushome-21.png

-444 Bytes

Instabug.bundle/powerplushome-22.png

-444 Bytes

Instabug.bundle/powerplushome-23.png

-444 Bytes

Instabug.bundle/powerplushome-24.png

-444 Bytes

Instabug.bundle/powerplushome-25.png

-444 Bytes

0 commit comments

Comments
 (0)