Skip to content

Commit 7bf93fe

Browse files
authored
Merge pull request #56 from RonasIT/release-1.4.0
Release 1.4.0
2 parents 0784e95 + ea1b903 commit 7bf93fe

2 files changed

Lines changed: 8 additions & 4 deletions

File tree

apps/mobile/app.config.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,10 +27,10 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
2727
slug: process.env.EXPO_PUBLIC_APP_SLUG as string,
2828
scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string,
2929
owner: process.env.EXPO_PUBLIC_APP_OWNER as string,
30-
version: '1.3.0',
30+
version: '1.4.0',
3131
orientation: 'portrait',
3232
icon: './assets/icon.png',
33-
runtimeVersion: '1.3.0',
33+
runtimeVersion: '1.4.0',
3434
experiments: {
3535
reactCompiler: true,
3636
},
@@ -42,7 +42,7 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
4242
supportsTablet: false,
4343
buildNumber: appEnv.select({
4444
default: '18',
45-
production: '10',
45+
production: '12',
4646
}),
4747
config: {
4848
usesNonExemptEncryption: false,
@@ -52,7 +52,7 @@ const createConfig = (): Omit<ExpoConfig, 'extra'> & { extra: { eas: EASConfig }
5252
package: appId,
5353
versionCode: appEnv.select({
5454
default: 15,
55-
production: 10,
55+
production: 12,
5656
}),
5757
adaptiveIcon: {
5858
foregroundImage: './assets/adaptive-icon.png',

libs/mobile/chat/features/chat/src/lib/components/messages-list/component.tsx

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,10 @@ export default function ChatMessagesList({
116116
//but when a small distance has been scrolled.
117117
const isNearBottom = scrollY + containerHeight >= contentHeight - 100;
118118

119+
if (!isResponseGenerating) {
120+
shouldAutoscrollToBottomRef.current = isNearBottom;
121+
}
122+
119123
if (isNearBottom || isScrollingUp) {
120124
animateScrollToBottom(0);
121125
} else if (isScrollToBottomAvailable.current && !isInputFocusing) {

0 commit comments

Comments
 (0)