Skip to content

Commit da4de47

Browse files
committed
1.0.0-alpha.2
1 parent 8a43f71 commit da4de47

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

TODO

+1
Original file line numberDiff line numberDiff line change
@@ -5,5 +5,6 @@
55
- Handle graceful disconnect when being hit by the OOM killer?
66
- Keyboard doesn't show up after tapping on chat field on Redmi Note 4.
77
- https://reactnative.dev/docs/performance (esp when logging in)
8+
- Respect chat message length limits.
89
- OnePlus 3T titles are wrapped.
910
- Add command history.

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "enderchat",
3-
"version": "1.0.0-alpha.1",
3+
"version": "1.0.0-alpha.2",
44
"private": true,
55
"license": "MPL-2.0",
66
"scripts": {

src/screens/ChatScreen.tsx

+1-2
Original file line numberDiff line numberDiff line change
@@ -166,15 +166,14 @@ const ChatScreen = ({ navigation }: { navigation: ChatNavigationProp }) => {
166166
/>
167167
</View>
168168
)
169-
// LOW-TODO: Use stack navigation for this.
169+
// LOW-TODO: Use stack navigation for this so the physical back button works correctly.
170170
if (settingsOpen) return <SettingScreen button={backButton} />
171171
return (
172172
<>
173173
<View style={darkMode ? globalStyle.darkHeader : globalStyle.header}>
174174
{backButton}
175175
<Text style={[globalStyle.title, styles.title]}>Chat - {title}</Text>
176176
<View style={globalStyle.flexSpacer} />
177-
{/* TODO: Make this actually work. */}
178177
<Ionicons.Button
179178
name='settings-outline'
180179
iconStyle={styles.backButtonIcon}

0 commit comments

Comments
 (0)