bump to build 33 and version 0.5.7

This commit is contained in:
2025-06-18 02:34:18 -06:00
parent 9cbd3bbdde
commit 1a886524b6
3 changed files with 9 additions and 14 deletions

View File

@@ -334,17 +334,12 @@ Prerequisites: macOS with Xcode installed
export GEM_PATH=$shortened_path
```
1. Build the web assets:
1. Build the web assets & update ios:
```bash
rm -rf dist
npm run build:web
npm run build:capacitor
```
2. Update iOS project with latest build:
```bash
npx cap sync ios
```
@@ -365,10 +360,10 @@ Prerequisites: macOS with Xcode installed
```
cd ios/App
xcrun agvtool new-version 32
xcrun agvtool new-version 33
# Unfortunately this edits Info.plist directly.
#xcrun agvtool new-marketing-version 0.4.5
cat App.xcodeproj/project.pbxproj | sed "s/MARKETING_VERSION = .*;/MARKETING_VERSION = 0.5.6;/g" > temp && mv temp App.xcodeproj/project.pbxproj
cat App.xcodeproj/project.pbxproj | sed "s/MARKETING_VERSION = .*;/MARKETING_VERSION = 0.5.7;/g" > temp && mv temp App.xcodeproj/project.pbxproj
cd -
```