release(mobile): release v0.5.4
This commit is contained in:
parent
760d6400f0
commit
367c638ddd
|
|
@ -0,0 +1,14 @@
|
|||
# What's New in v0.5.4
|
||||
|
||||
## Improvements
|
||||
|
||||
- Upgraded AI summaries to a more powerful Kimi model
|
||||
- Improved scroll mark-read reliability with batched updates, retry handling, and local read-state preservation
|
||||
- Improved action rule editor state stability
|
||||
- Routed direct downloads through OTA-backed delivery
|
||||
|
||||
## No longer broken
|
||||
|
||||
- Fixed duplicate shared links from mobile share actions
|
||||
- Fixed starred collection pagination order
|
||||
- Fixed unread counts after time-limited mark-read actions
|
||||
|
|
@ -1,14 +1,11 @@
|
|||
# What's New in vNEXT_VERSION
|
||||
|
||||
## Shiny new things
|
||||
|
||||
## Improvements
|
||||
|
||||
- Upgraded AI summaries to a more powerful Kimi model
|
||||
- Improved scroll mark-read reliability with batched updates, retry handling, and local read-state preservation
|
||||
- Improved action rule editor state stability
|
||||
- Routed direct downloads through OTA-backed delivery
|
||||
|
||||
## No longer broken
|
||||
|
||||
- Fixed duplicate shared links from mobile share actions
|
||||
- Fixed starred collection pagination order
|
||||
- Fixed unread counts after time-limited mark-read actions
|
||||
## Thanks
|
||||
|
||||
Special thanks to volunteer contributors @ for their valuable contributions
|
||||
|
|
|
|||
|
|
@ -33,7 +33,7 @@
|
|||
<key>CFBundlePackageType</key>
|
||||
<string>$(PRODUCT_BUNDLE_PACKAGE_TYPE)</string>
|
||||
<key>CFBundleShortVersionString</key>
|
||||
<string>0.5.3</string>
|
||||
<string>0.5.4</string>
|
||||
<key>CFBundleSignature</key>
|
||||
<string>????</string>
|
||||
<key>CFBundleURLTypes</key>
|
||||
|
|
@ -54,7 +54,7 @@
|
|||
</dict>
|
||||
</array>
|
||||
<key>CFBundleVersion</key>
|
||||
<string>6</string>
|
||||
<string>7</string>
|
||||
<key>ITSAppUsesNonExemptEncryption</key>
|
||||
<false/>
|
||||
<key>LSApplicationCategoryType</key>
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"name": "@follow/mobile",
|
||||
"version": "0.5.3",
|
||||
"version": "0.5.4",
|
||||
"private": true,
|
||||
"main": "src/main.tsx",
|
||||
"scripts": {
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
{
|
||||
"mode": "ota",
|
||||
"runtimeVersion": "0.5.3",
|
||||
"channel": "production"
|
||||
"mode": "store",
|
||||
"runtimeVersion": null,
|
||||
"channel": null
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,6 +1,6 @@
|
|||
{
|
||||
"version": "0.5.3",
|
||||
"version": "0.5.4",
|
||||
"mode": "ota",
|
||||
"runtimeVersion": "0.5.0",
|
||||
"runtimeVersion": "0.5.3",
|
||||
"channel": "production"
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue