From 5a5e8adc5bbadad33df4ed5a776f4bc25b44bd8c Mon Sep 17 00:00:00 2001 From: Innei Date: Thu, 21 Aug 2025 19:53:27 +0800 Subject: [PATCH 1/3] release(mobile): release v0.2.6 --- apps/mobile/changelog/0.2.6.md | 3 +++ apps/mobile/changelog/next.md | 10 +++++++++- apps/mobile/ios/Folo/Info.plist | 4 ++-- apps/mobile/package.json | 2 +- 4 files changed, 15 insertions(+), 4 deletions(-) create mode 100644 apps/mobile/changelog/0.2.6.md diff --git a/apps/mobile/changelog/0.2.6.md b/apps/mobile/changelog/0.2.6.md new file mode 100644 index 000000000..b092fe261 --- /dev/null +++ b/apps/mobile/changelog/0.2.6.md @@ -0,0 +1,3 @@ +# What's New in v0.2.6 + +Fixed several bugs, improved stability. diff --git a/apps/mobile/changelog/next.md b/apps/mobile/changelog/next.md index 8bac52ef9..000f858e3 100644 --- a/apps/mobile/changelog/next.md +++ b/apps/mobile/changelog/next.md @@ -1,3 +1,11 @@ # What's New in vNEXT_VERSION -Fixed several bugs, improved stability. +## Shiny new things + +## Improvements + +## No longer broken + +## Thanks + +Special thanks to volunteer contributors @ for their valuable contributions diff --git a/apps/mobile/ios/Folo/Info.plist b/apps/mobile/ios/Folo/Info.plist index 377a92153..ece292f36 100644 --- a/apps/mobile/ios/Folo/Info.plist +++ b/apps/mobile/ios/Folo/Info.plist @@ -32,7 +32,7 @@ CFBundlePackageType $(PRODUCT_BUNDLE_PACKAGE_TYPE) CFBundleShortVersionString - 0.2.5 + 0.2.6 CFBundleSignature ???? CFBundleURLTypes @@ -53,7 +53,7 @@ CFBundleVersion - 118 + 119 ITSAppUsesNonExemptEncryption LSApplicationCategoryType diff --git a/apps/mobile/package.json b/apps/mobile/package.json index 2a4110577..a4c92fe83 100644 --- a/apps/mobile/package.json +++ b/apps/mobile/package.json @@ -1,6 +1,6 @@ { "name": "@follow/mobile", - "version": "0.2.5", + "version": "0.2.6", "private": true, "main": "src/main.tsx", "scripts": { From 09356a82738510b8127379b6a7c6bec04b6f21af Mon Sep 17 00:00:00 2001 From: Innei Date: Thu, 21 Aug 2025 20:10:33 +0800 Subject: [PATCH 2/3] feat(ci): add Xcode setup step in iOS build workflow - Introduced a new step to set up Xcode in the iOS build workflow, enhancing the build process for iOS applications. This addition streamlines the CI process for iOS development. Signed-off-by: Innei --- .github/workflows/build-ios.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/build-ios.yml b/.github/workflows/build-ios.yml index 702725fb5..e138f04b4 100644 --- a/.github/workflows/build-ios.yml +++ b/.github/workflows/build-ios.yml @@ -91,6 +91,9 @@ jobs: - name: 📦 Checkout code uses: actions/checkout@v5 + - name: 🔧 Setup Xcode + uses: ./.github/actions/setup-xcode + - name: 📦 Setup pnpm uses: pnpm/action-setup@v4 From 2dd9fbdf3105445e506a962e5bc4aa872b6eaf8b Mon Sep 17 00:00:00 2001 From: Innei Date: Thu, 21 Aug 2025 21:17:36 +0800 Subject: [PATCH 3/3] chore: download ios platform Signed-off-by: Innei --- .github/actions/setup-xcode/action.yml | 6 +++++- locales/errors/en.json | 1 + 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/actions/setup-xcode/action.yml b/.github/actions/setup-xcode/action.yml index e7b6280d8..f832ad9c3 100644 --- a/.github/actions/setup-xcode/action.yml +++ b/.github/actions/setup-xcode/action.yml @@ -4,7 +4,7 @@ inputs: xcode-version: description: "Xcode version to use" required: false - default: "16.2.0" + default: "16.4.0" runs: using: "composite" @@ -12,3 +12,7 @@ runs: - uses: maxim-lobanov/setup-xcode@v1 with: xcode-version: ${{ inputs.xcode-version }} + + - name: Download iOS Platform + run: xcodebuild -downloadPlatform iOS + shell: bash diff --git a/locales/errors/en.json b/locales/errors/en.json index 096d2c990..bb316805e 100644 --- a/locales/errors/en.json +++ b/locales/errors/en.json @@ -73,6 +73,7 @@ "14002": "Upload failed", "15000": "AI token limit exceeded. Please try again later.", "15001": "You are not allowed to access AI chat", + "15002": "AI attachment file limit exceeded. Please try again later.", "16000": "MCP OAuth error", "16001": "MCP discovery error", "16002": "MCP service not found",