From ac7f0835061810372c6628153bb09729c857309a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B0=D1=81=D0=B8=D0=BB=D0=B8=D0=B9=20=D0=95=D0=BB?= =?UTF-8?q?=D0=B8=D1=81=D0=B5=D0=B5=D0=B2?= Date: Thu, 6 Aug 2026 14:12:17 +0600 Subject: [PATCH 1/2] chore: release 1.8.2 --- apps/mobile/app.config.ts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 4804c1c..98fcb3a 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -26,15 +26,15 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } // eslint-disable-next-line @typescript-eslint/no-explicit-any return { - name: process.env.EXPO_PUBLIC_APP_NAME as string, + name: 'Open MobileUI', slug: process.env.EXPO_PUBLIC_APP_SLUG as string, scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string, owner: process.env.EXPO_PUBLIC_APP_OWNER as string, - version: '1.8.1', + version: '1.8.2', userInterfaceStyle: 'automatic', orientation: 'portrait', icon: './assets/icon.png', - runtimeVersion: '1.8.1', + runtimeVersion: '1.8.2', experiments: { reactCompiler: true, }, @@ -46,7 +46,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } supportsTablet: false, buildNumber: appEnv.select({ default: '18', - production: '35', + production: '36', }), config: { usesNonExemptEncryption: false, @@ -64,7 +64,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } package: appId, versionCode: appEnv.select({ default: 15, - production: 35, + production: 36, }), adaptiveIcon: { foregroundImage: './assets/adaptive-icon.png', From 593760ac7fa81c457387461810a98f4723d1832f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=92=D0=B0=D1=81=D0=B8=D0=BB=D0=B8=D0=B9=20=D0=95=D0=BB?= =?UTF-8?q?=D0=B8=D1=81=D0=B5=D0=B5=D0=B2?= Date: Thu, 6 Aug 2026 14:13:58 +0600 Subject: [PATCH 2/2] chore: remove unintentional changes --- apps/mobile/app.config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/mobile/app.config.ts b/apps/mobile/app.config.ts index 98fcb3a..99e5184 100644 --- a/apps/mobile/app.config.ts +++ b/apps/mobile/app.config.ts @@ -26,7 +26,7 @@ const createConfig = (): Omit & { extra: { eas: EASConfig } // eslint-disable-next-line @typescript-eslint/no-explicit-any return { - name: 'Open MobileUI', + name: process.env.EXPO_PUBLIC_APP_NAME as string, slug: process.env.EXPO_PUBLIC_APP_SLUG as string, scheme: process.env.EXPO_PUBLIC_APP_SCHEME as string, owner: process.env.EXPO_PUBLIC_APP_OWNER as string,