Merge pull request #4374 from RSSNext/sync/main-to-dev-20250824
Sync main branch to dev branch
This commit is contained in:
commit
cf7c3e653e
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
||||
|
|
|
|||
|
|
@ -0,0 +1,3 @@
|
|||
# What's New in v0.2.6
|
||||
|
||||
Fixed several bugs, improved stability.
|
||||
|
|
@ -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
|
||||
|
|
|
|||
|
|
@ -32,7 +32,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.2.5</string>
|
||||
<string>0.2.6</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
|
|
@ -53,7 +53,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>118</string>
|
||||
<string>119</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@follow/mobile",
|
||||
"version": "0.2.5",
|
||||
"version": "0.2.6",
|
||||
"private": true,
|
||||
"main": "src/main.tsx",
|
||||
"scripts": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue