Skip to content

Commit fb43d70

Browse files
authored
Merge pull request #4992 from RSSNext/mobile-main
chore(sync): merge mobile-main into dev
2 parents 6e052e4 + 65fafb3 commit fb43d70

7 files changed

Lines changed: 23 additions & 7 deletions

File tree

.github/workflows/build-android.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ jobs:
8989
working-directory: apps/mobile
9090
run: eas build --platform android --profile ${{ github.event.inputs.profile || 'preview' }} --local --output=${{ github.workspace }}/build.${{ github.event.inputs.profile == 'production' && 'aab' || 'apk' }}
9191
env:
92+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
9293
EAS_NO_FROZEN_LOCKFILE: "1"
9394
npm_config_node_linker: isolated
9495
npm_config_shamefully_hoist: "false"

.github/workflows/build-ios-development.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ jobs:
5858
working-directory: apps/mobile
5959
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
6060
env:
61+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
6162
EAS_NO_FROZEN_LOCKFILE: "1"
6263
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
6364
CI: true
@@ -114,6 +115,7 @@ jobs:
114115
working-directory: apps/mobile
115116
run: eas build --platform ios --profile development --non-interactive --local --output=./build.ipa
116117
env:
118+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
117119
EAS_NO_FROZEN_LOCKFILE: "1"
118120
CI: true
119121
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
@@ -164,6 +166,7 @@ jobs:
164166
working-directory: apps/mobile
165167
run: eas build --platform ios --profile ios-simulator --non-interactive --local --output=./build-simulator.ipa
166168
env:
169+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
167170
EAS_NO_FROZEN_LOCKFILE: "1"
168171
CI: true
169172
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}

.github/workflows/build-ios.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ jobs:
6666
working-directory: apps/mobile
6767
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
6868
env:
69+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
6970
EAS_NO_FROZEN_LOCKFILE: "1"
7071
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}
7172
CI: true
@@ -127,6 +128,7 @@ jobs:
127128
working-directory: apps/mobile
128129
run: eas build --platform ios --profile ${{ github.event.inputs.profile || 'preview' }} --non-interactive --local --output=./build.ipa
129130
env:
131+
EAS_BUILD_DISABLE_EXPO_DOCTOR_STEP: "1"
130132
EAS_NO_FROZEN_LOCKFILE: "1"
131133
CI: true
132134
SENTRY_AUTH_TOKEN: ${{ secrets.RN_SENTRY_AUTH_TOKEN }}

apps/mobile/changelog/0.5.1.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
# What's New in v0.5.1
2+
3+
## Shiny new things
4+
5+
- Added OTA version details to About
6+
7+
## No longer broken
8+
9+
- Fixed session refresh after cookie updates
10+
- Extended API request timeouts

apps/mobile/ios/Folo/Info.plist

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<key>CFBundlePackageType</key>
3434
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
3535
<key>CFBundleShortVersionString</key>
36-
<string>0.5.0</string>
36+
<string>0.5.1</string>
3737
<key>CFBundleSignature</key>
3838
<string>????</string>
3939
<key>CFBundleURLTypes</key>
@@ -54,7 +54,7 @@
5454
</dict>
5555
</array>
5656
<key>CFBundleVersion</key>
57-
<string>3</string>
57+
<string>4</string>
5858
<key>ITSAppUsesNonExemptEncryption</key>
5959
<false/>
6060
<key>LSApplicationCategoryType</key>

apps/mobile/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@follow/mobile",
3-
"version": "0.5.0",
3+
"version": "0.5.1",
44
"private": true,
55
"main": "src/main.tsx",
66
"scripts": {

apps/mobile/release.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
2-
"version": "0.5.0",
3-
"mode": "store",
4-
"runtimeVersion": null,
5-
"channel": null
2+
"version": "0.5.1",
3+
"mode": "ota",
4+
"runtimeVersion": "0.5.0",
5+
"channel": "production"
66
}

0 commit comments

Comments
 (0)