From 60e78612045fb836fabf9a779826b5100c121c9b Mon Sep 17 00:00:00 2001 From: vdelendik Date: Fri, 16 Aug 2024 15:26:32 +0200 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index cd5b049..fe0aee3 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ Zebrunner MCloud Device ================== -Feel free to support the development with a [**donation**](https://www.paypal.com/donate?hosted_button_id=JLQ4U468TWQPS) for the next improvements. +Feel free to support the development with a [**donation**](https://www.paypal.com/donate/?hosted_button_id=MNHYYCYHAKUVA) for the next improvements.

Zebrunner From 0f55dae01a99e9f36c1b7f8b6cd431f0151dc1b8 Mon Sep 17 00:00:00 2001 From: build <> Date: Wed, 25 Sep 2024 19:13:39 +0300 Subject: [PATCH 2/2] #207: wrapped device name in quotes to support spaces inside names --- files/start_all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/files/start_all.sh b/files/start_all.sh index 126d14e..873d675 100755 --- a/files/start_all.sh +++ b/files/start_all.sh @@ -166,7 +166,7 @@ if [ "${PLATFORM_NAME}" == "android" ]; then elif [ "${PLATFORM_NAME}" == "ios" ]; then node /app/lib/cli ios-device \ --serial ${DEVICE_UDID} \ - --device-name ${STF_PROVIDER_DEVICE_NAME} \ + --device-name "${STF_PROVIDER_DEVICE_NAME}" \ --host ${STF_PROVIDER_HOST} \ --screen-port ${STF_PROVIDER_MIN_PORT} \ --connect-port ${MJPEG_PORT} \