Skip to content

Commit a69cbba

Browse files
authored
Merge pull request #1520 from GetStream/develop
Next release
2 parents 21f0ccf + b9c20ee commit a69cbba

File tree

12 files changed

+118
-21
lines changed

12 files changed

+118
-21
lines changed

โ€ŽPULL_REQUEST_TEMPLATE.mdโ€Ž

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,9 @@
6666

6767
- [ ] I have signed the [Stream CLA](https://docs.google.com/forms/d/e/1FAIpQLScFKsKkAJI7mhCr7K9rEIOpqIDThrWxuvxnwUq2XkHyG154vQ/viewform) (required)
6868
- [ ] PR targets the `develop` branch
69-
- [ ] Commits follow the [conventional commits](https://www.conventionalcommits.org/en/v1.0.0/) spec
70-
- [ ] New code is covered by tests
71-
- [ ] Screenshots added for visual changes
7269
- [ ] Documentation is updated
70+
- [ ] New code is tested in main example apps, including all possible scenarios
71+
- [ ] SampleApp iOS and Android
72+
- [ ] Expo iOS and Android
73+
7374

โ€Ždocusaurus/docs/reactnative/basics/troubleshooting.mdxโ€Ž

Lines changed: 10 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -214,13 +214,18 @@ android {
214214
Opening an external link doesn't work without permissions on `targetSdkVersion` >= 30. So, the following permission must be included in the `AndroidManifest.xml` file.
215215

216216
```xml
217-
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
217+
<queries>
218+
<intent>
219+
<action android:name="android.intent.action.VIEW" />
220+
<data android:scheme="http" android:host="*" />
221+
</intent>
222+
<intent>
223+
<action android:name="android.intent.action.VIEW" />
224+
<data android:scheme="https" android:host="*" />
225+
</intent>
226+
</queries>
218227
```
219228

220-
:::caution
221-
**Note:** Make sure you are aware of [upcoming policies](https://support.google.com/googleplay/android-developer/answer/10158779) that this change will be subjected to.
222-
:::
223-
224229
## GIF and WebP not displaying
225230

226231
### Android

โ€Žexamples/ExpoMessaging/package.jsonโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
"eject": "expo eject"
88
},
99
"dependencies": {
10-
"@react-native-community/masked-view": "0.1.10",
10+
"@react-native-masked-view/masked-view": "0.2.6",
1111
"@react-native-community/netinfo": "7.1.3",
1212
"@react-navigation/native": "5.8.10",
1313
"@react-navigation/stack": "5.12.8",

โ€Žexamples/SampleApp/android/app/src/main/AndroidManifest.xmlโ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,19 @@
44
<uses-permission android:name="android.permission.INTERNET" />
55
<uses-permission android:name="android.permission.CAMERA" />
66
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
7-
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
87
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
98

9+
<queries>
10+
<intent>
11+
<action android:name="android.intent.action.VIEW" />
12+
<data android:scheme="http" android:host="*" />
13+
</intent>
14+
<intent>
15+
<action android:name="android.intent.action.VIEW" />
16+
<data android:scheme="https" android:host="*" />
17+
</intent>
18+
</queries>
19+
1020
<application
1121
android:usesCleartextTraffic="true"
1222
android:name=".MainApplication"

โ€Žexamples/SampleApp/ios/SampleApp.xcodeproj/project.pbxprojโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -514,7 +514,7 @@
514514
CLANG_ENABLE_MODULES = YES;
515515
CODE_SIGN_ENTITLEMENTS = SampleApp/SampleAppDebug.entitlements;
516516
CODE_SIGN_IDENTITY = "iPhone Developer";
517-
CURRENT_PROJECT_VERSION = 123;
517+
CURRENT_PROJECT_VERSION = 128;
518518
DEVELOPMENT_TEAM = EHV7XZLAHA;
519519
ENABLE_BITCODE = NO;
520520
INFOPLIST_FILE = SampleApp/Info.plist;
@@ -545,7 +545,7 @@
545545
CODE_SIGN_ENTITLEMENTS = SampleApp/SampleAppRelease.entitlements;
546546
CODE_SIGN_IDENTITY = "iPhone Distribution";
547547
CODE_SIGN_STYLE = Manual;
548-
CURRENT_PROJECT_VERSION = 123;
548+
CURRENT_PROJECT_VERSION = 128;
549549
DEVELOPMENT_TEAM = EHV7XZLAHA;
550550
INFOPLIST_FILE = SampleApp/Info.plist;
551551
LD_RUNPATH_SEARCH_PATHS = (

โ€Žexamples/SampleApp/ios/SampleApp/Info.plistโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,11 +17,11 @@
1717
<key>CFBundlePackageType</key>
1818
<string>APPL</string>
1919
<key>CFBundleShortVersionString</key>
20-
<string>1.7.2</string>
20+
<string>1.7.3</string>
2121
<key>CFBundleSignature</key>
2222
<string>????</string>
2323
<key>CFBundleVersion</key>
24-
<string>123</string>
24+
<string>128</string>
2525
<key>LSRequiresIPhoneOS</key>
2626
<true />
2727
<key>NSAppTransportSecurity</key>

โ€Žexamples/SampleApp/ios/SampleAppTests/Info.plistโ€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@
1515
<key>CFBundlePackageType</key>
1616
<string>BNDL</string>
1717
<key>CFBundleShortVersionString</key>
18-
<string>1.7.2</string>
18+
<string>1.7.3</string>
1919
<key>CFBundleSignature</key>
2020
<string>????</string>
2121
<key>CFBundleVersion</key>
22-
<string>123</string>
22+
<string>128</string>
2323
</dict>
2424
</plist>

โ€Žexamples/TypeScriptMessaging/android/app/src/main/AndroidManifest.xmlโ€Ž

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,19 @@
44
<uses-permission android:name="android.permission.INTERNET" />
55
<uses-permission android:name="android.permission.CAMERA" />
66
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
7-
<uses-permission android:name="android.permission.QUERY_ALL_PACKAGES" />
87
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
98

9+
<queries>
10+
<intent>
11+
<action android:name="android.intent.action.VIEW" />
12+
<data android:scheme="http" android:host="*" />
13+
</intent>
14+
<intent>
15+
<action android:name="android.intent.action.VIEW" />
16+
<data android:scheme="https" android:host="*" />
17+
</intent>
18+
</queries>
19+
1020
<application
1121
android:name=".MainApplication"
1222
android:label="@string/app_name"

โ€Žpackage/expo-package/package.jsonโ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
},
1515
"peerDependencies": {
1616
"@react-native-community/netinfo": "^6.0.0",
17-
"expo": "^41.0.1",
17+
"expo": ">=44.0.0",
1818
"expo-document-picker": "^9.1.2",
1919
"expo-file-system": "^11.0.2",
2020
"expo-haptics": "^10.0.0",

โ€Žpackage/src/i18n/he.jsonโ€Ž

Lines changed: 67 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,67 @@
1+
{
2+
"1 Reply": "ืชื’ื•ื‘ื” ืื—ืช",
3+
"1 Thread Reply": "ืชื’ื•ื‘ื” ืื—ืช ืœืฉืจืฉื•ืจ",
4+
"Allow access to your Gallery": "ืืคืฉืจ ื’ื™ืฉื” ืœื’ืœืจื™ื” ืฉืœืš",
5+
"Also send to channel": "ืฉืœื—/ื™ ื”ื•ื“ืขื” ืœืฉื™ื—ื”",
6+
"Are you sure you want to permanently delete this message?": "ื”ืื ืืช/ื” ื‘ื˜ื•ื—/ื” ืฉืืช/ื” ืจื•ืฆื” ืœืžื—ื•ืง ืืช ื”ื”ื•ื“ืขื” ื”ื–ื• ืœืฆืžื™ืชื•ืช?",
7+
"Block User": "ื—ืกื•ื ืžืฉืชืžืฉ",
8+
"Cancel": "ื‘ื™ื˜ื•ืœ",
9+
"Cannot Flag Message": "ืกื™ืžื•ืŸ ื”ื•ื“ืขื” ืœื ืืคืฉืจื™",
10+
"Copy Message": "ื”ืขืชืง/ื™ ื”ื•ื“ืขื”",
11+
"Delete": "ืžื—ืง",
12+
"Delete Message": "ืžื—ืง/ื™ ื”ื•ื“ืขื”",
13+
"Do you want to send a copy of this message to a moderator for further investigation?": "ื”ืื ืืช/ื” ืจื•ืฆื” ืœืฉืœื•ื— ืขื•ืชืง ืฉืœ ื”ื•ื“ืขื” ื–ื• ืœืžื ื—ื” ืœื”ืžืฉืš ื—ืงื™ืจื”?",
14+
"Edit Message": "ืขืจื•ืš ื”ื•ื“ืขื”",
15+
"Editing Message": "ื”ื•ื“ืขื” ื‘ืขืจื™ื›ื”",
16+
"Emoji matching": "ื”ืชืืžืช ืืžื•ื’'ื™",
17+
"Empty message...": "ื”ื•ื“ืขื” ืจื™ืงื”...",
18+
"Error loading": "ืฉื’ื™ืื” ืืจืขื” ื‘ืขืช ื”ื˜ืขื™ื ื”",
19+
"Error loading channel list...": "ืฉื’ื™ืื” ืืจืขื” ื‘ื˜ืขื™ื ืช ื”ืฉื™ื—ื•ืช...",
20+
"Error loading messages for this channel...": "ืฉื’ื™ืื” ืืจืขื” ื‘ื˜ืขื™ื ืช ื”ื•ื“ืขื•ืช ืขื‘ื•ืจ ืฉื™ื—ื” ื–ืืช...",
21+
"Error while loading, please reload/refresh": "ืฉื’ื™ืื” ืืจืขื” ื‘ื–ืžืŸ ื”ื˜ืขื™ื ื”, ืื ื ื˜ืขืŸ ืžื—ื“ืฉ/ืจืขื ืŸ",
22+
"File type not supported": "ืกื•ื’ ื”ืงื•ื‘ืฅ ืื™ื ื• ื ืชืžืš",
23+
"Flag": "ืกืžืŸ",
24+
"Flag Message": "ืกืžืŸ ื”ื•ื“ืขื”",
25+
"Flag action failed either due to a network issue or the message is already flagged": "ืคืขื•ืœืช ื”ืกื™ืžื•ืŸ ื ื›ืฉืœื” ื‘ื’ืœืœ ื‘ืขื™ื™ืช ืจืฉืช ืื• ืฉื”ื”ื•ื“ืขื” ื›ื‘ืจ ืกื•ืžื ื”.",
26+
"Instant Commands": "ืคืขื•ืœื•ืช ืžื™ื™ื“ื™ื•ืช",
27+
"Links are disabled": "ื”ืงื™ืฉื•ืจื™ื ืžื‘ื•ื˜ืœื™ื",
28+
"Loading channels...": "ื”ืฉื™ื—ื•ืช ื‘ื˜ืขื™ื ื”...",
29+
"Loading messages...": "ื”ื”ื•ื“ืขื•ืช ื‘ื˜ืขื™ื ื”..",
30+
"Loading...": "ื˜ื•ืขืŸ...",
31+
"Message Reactions": "ืชื’ื•ื‘ื•ืช ืœื”ื•ื“ืขื”",
32+
"Message deleted": "ื”ื”ื•ื“ืขื” ื ืžื—ืงื”",
33+
"Message flagged": "ื”ื”ื•ื“ืขื” ืกื•ืžื ื”",
34+
"Mute User": "ื”ืฉืชืง/ื™ ืžืฉืชืžืฉ",
35+
"Not supported": "ืœื ื ืชืžืš",
36+
"Nothing yet...": "ืื™ื ืคื•ืจืžืฆื™ื” ืชืชืงื‘ืœ ื‘ื”ืžืฉืš...",
37+
"Ok": "ืื•ืงื™ื™",
38+
"Only visible to you": "ื’ืœื•ื™ ืจืง ืœืš",
39+
"Photo": "ืชืžื•ื ื”",
40+
"Photos": "ืชืžื•ื ื•ืช",
41+
"Pin to Conversation": "ื”ืฆืžื“/ื™ ืœืฉื™ื—ื”",
42+
"Please enable access to your photos and videos so you can share them.": "ืืคืฉืจ/ื™ ื’ื™ืฉื” ืœืชืžื•ื ื•ืช ื•ืœืกืจื˜ื•ื ื™ื ืฉืœืš ื›ื“ื™ ืฉืชื•ื›ืœ/ื™ ืœืฉืชืฃ ืื•ืชื.",
43+
"Please select a channel first": "ืื ื ื‘ื—ืจ/ื™ ืฉื™ื—ื” ืชื—ื™ืœื”",
44+
"Reconnecting...": "ืžืชื—ื‘ืจ ืžื—ื“ืฉ...",
45+
"Reply": "ื”ืฉื‘/ื™",
46+
"Reply to Message": "ื”ืฉื‘/ื™ ืœื”ื•ื“ืขื”",
47+
"Resend": "ืฉืœื—/ื™ ืฉื•ื‘",
48+
"Search GIFs": "ื—ืคืฉ/ื™ GIFs",
49+
"Send a message": "ืฉืœื—/ื™ ื”ื•ื“ืขื”",
50+
"Sending links is not allowed in this conversation": "ืฉืœื™ื—ืช ืงื™ืฉื•ืจื™ื ืื™ื ื” ืžื•ืชืจืช ื‘ืฉื™ื—ื” ื–ื•",
51+
"Slow mode ON": "ืžืฆื‘ ืื™ื˜ื™ ืžื•ืคืขืœ",
52+
"The message has been reported to a moderator.": "ื”ื”ื•ื“ืขื” ื“ื•ื•ื—ื” ืœืžื ื”ืœ",
53+
"Thread Reply": "ื”ื’ื‘/ื™ ื‘ืฉืจืฉื•ืจ",
54+
"Unblock User": "ื‘ื˜ืœ/ื™ ื—ืกื™ืžืช ืžืฉืชืžืฉ",
55+
"Unknown User": "ืžืฉืชืžืฉ ืœื ื™ื“ื•ืข",
56+
"Unmute User": "ื‘ื˜ืœ/ื™ ื”ืฉืชืงืช ืžืฉืชืžืฉ",
57+
"Unpin from Conversation": "ื‘ื˜ืœ/ื™ ื”ืฆืžื“ื” ืœืฉื™ื—ื”",
58+
"Unread Messages": "ื”ื•ื“ืขื•ืช ืฉื˜ืจื ื ืงืจื•",
59+
"You": "ืืช/ื”",
60+
"You can't send messages in this channel": "ืืช/ื‘ ืœื ื™ื›ื•ืœ/ื” ืœืฉืœื•ื— ื”ื•ื“ืขื•ืช ื‘ืฉื™ื—ื” ื–ื•",
61+
"{{ firstUser }} and {{ nonSelfUserLength }} more are typing": "{{ firstUser }} ื•-{{ nonSelfUserLength }} ืžืฉืชืžืฉ/ื™ื ืื—ืจ/ื™ื ืžืงืœื™ื“ื™ื",
62+
"{{ index }} of {{ photoLength }}": "{{ index }} ืžืชื•ืš {{ photoLength }}",
63+
"{{ replyCount }} Replies": "{{ replyCount }} ืชื’ื•ื‘ื•ืช",
64+
"{{ replyCount }} Thread Replies": "{{ replyCount }} ืชื’ื•ื‘ื•ืช ืฉืจืฉื•ืจ",
65+
"{{ user }} is typing": "{{ user }} ืžืงืœื™ื“/ื”",
66+
"๐Ÿ™ Attachment...": "๐Ÿ™ ืงื•ื‘ืฅ ืžืฆื•ืจืฃ..."
67+
}

0 commit comments

Comments
ย (0)