release(mobile): release v0.5.1

This commit is contained in:
DIYgod 2026-04-30 17:55:27 +08:00
parent 1cf6d0b637
commit 91cba64c3d
6 changed files with 24 additions and 13 deletions

View File

@ -0,0 +1,10 @@
# What's New in v0.5.1
## Shiny new things
- Added OTA version details to About
## No longer broken
- Fixed session refresh after cookie updates
- Extended API request timeouts

View File

@ -2,9 +2,10 @@
## Shiny new things
- Added OTA version details to About
## Improvements
## No longer broken
- Fixed session refresh after cookie updates
- Extended API request timeouts
## Thanks
Special thanks to volunteer contributors @ for their valuable contributions

View File

@ -33,7 +33,7 @@
<key>CFBundlePackageType</key>
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
<key>CFBundleShortVersionString</key>
<string>0.5.0</string>
<string>0.5.1</string>
<key>CFBundleSignature</key>
<string>????</string>
<key>CFBundleURLTypes</key>
@ -54,7 +54,7 @@
</dict>
</array>
<key>CFBundleVersion</key>
<string>3</string>
<string>4</string>
<key>ITSAppUsesNonExemptEncryption</key>
<false/>
<key>LSApplicationCategoryType</key>

View File

@ -1,6 +1,6 @@
{
"name": "@follow/mobile",
"version": "0.5.0",
"version": "0.5.1",
"private": true,
"main": "src/main.tsx",
"scripts": {

View File

@ -1,5 +1,5 @@
{
"mode": "ota",
"runtimeVersion": "0.5.0",
"channel": "production"
"mode": "store",
"runtimeVersion": null,
"channel": null
}

View File

@ -1,6 +1,6 @@
{
"version": "0.5.0",
"mode": "store",
"runtimeVersion": null,
"channel": null
"version": "0.5.1",
"mode": "ota",
"runtimeVersion": "0.5.0",
"channel": "production"
}