You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+17Lines changed: 17 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,22 @@
1
1
# Changelog
2
2
3
+
## [0.5.0] 2019-12-23
4
+
5
+
#### stream-chat-expo (Expo package)
6
+
7
+
- Changes to add compatibility for Expo 36. Adding [netinfo](https://github.com/react-native-community/react-native-netinfo) as peer dependency - https://github.com/GetStream/stream-chat-react-native/issues/97
8
+
- Disabling the longpress on image viewer (in Attachment) - https://github.com/GetStream/stream-chat-react-native/issues/100 to avoid freezing of UI.
9
+
- Fixing broken threads issue
10
+
- Support for `additionalFlatListProps` prop in `MessageList` and `ChannelList` component
11
+
- Changing proptype for component type props to `elementType` instead of `func`
12
+
13
+
#### stream-chat-react-native (Native package)
14
+
15
+
- Disabling the longpress on image viewer (in Attachment) - https://github.com/GetStream/stream-chat-react-native/issues/100 to avoid freezing of UI.
16
+
- Fixing broken threads issue
17
+
- Support for `additionalFlatListProps` prop in `MessageList` and `ChannelList` component
18
+
- Changing proptype for component type props to `elementType` instead of `func`
19
+
3
20
## [0.4.0] 2019-12-16
4
21
5
22
- Adding support for customizing markdown styles - https://github.com/GetStream/stream-chat-react-native/pull/99/files#diff-ede54911d9164ea37e65e92f2e18cb91R56
Copy file name to clipboardExpand all lines: README.md
+13-8Lines changed: 13 additions & 8 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -103,15 +103,20 @@ yarn global add expo-cli
103
103
# * >=12.0.0 (Current Release)
104
104
expo init StreamChatExpoExample
105
105
cd StreamChatExpoExample
106
+
107
+
# Add chat expo package
106
108
yarn add stream-chat-expo
109
+
110
+
# If you are using stream-chat-expo <= 0.4.0 and expo <= 34, then you don't need to add @react-native-community/netinfo as dependency. Since previously we used use NetInfo from react-native package.
111
+
yarn add @react-native-community/netinfo
107
112
```
108
113
109
-
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/one/App.js) to see usage of the components.
114
+
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/ExpoMessaging/App.js) to see usage of the components.
110
115
111
-
OR you can swap [this file](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/one/App.js) for your `App.js` in the root folder with additional following steps:
116
+
OR you can swap [this file](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/ExpoMessaging/App.js) for your `App.js` in the root folder with additional following steps:
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/two/App.js) to see usage of components.
192
+
Please check [Example](https://github.com/GetStream/stream-chat-react-native/blob/master/examples/NativeMessaging/App.js) to see usage of components.
188
193
189
194
OR you can swap this file for your `App.js` in root folder with additional following steps:
190
195
@@ -248,7 +253,7 @@ In current context, dependencies such as `react-native-document-picker` and (if
248
253
1. When you execute `react-native run-ios` for the first time, it starts a metro bundler in parallel. It can result into some errors, since build process isn't complete yet. Try the following to fix this:
249
254
1. Close/stop the metro bundler process.
250
255
2. Let the build process finish completely, it can take usually around 2-3 minutes for the first time.
251
-
3. Start the metro bundler manually by executing `yarn start` inside `stream-chat-react-native/examples/two` directory.
256
+
3. Start the metro bundler manually by executing `yarn start` inside `stream-chat-react-native/examples/NativeMessaging` directory.
252
257
2. When you execute `react-native run-android`, you may (not necessarily) run into following error:
253
258
254
259
```ERROR
@@ -277,9 +282,9 @@ In current context, dependencies such as `react-native-document-picker` and (if
277
282
278
283
To resolve this, do the following
279
284
280
-
1. Craete a file named `local.properties` inside `stream-chat-react-native/examples/two/android` directory
285
+
1. Craete a file named `local.properties` inside `stream-chat-react-native/examples/NativeMessaging/android` directory
281
286
2. Put the this line in that file. Make sure sdk path is correctly mentioned as per your system:
282
287
```
283
288
sdk.dir=/Users/{user_name}/Library/Android/sdk/
284
289
```
285
-
3. Rerun `react-native run-android` in `stream-chat-react-native/examples/two` directory
290
+
3. Rerun `react-native run-android` in `stream-chat-react-native/examples/NativeMessaging` directory
0 commit comments