chore: update Deliverfile to include metadata and add whatsnew notes
This commit is contained in:
@@ -2,8 +2,7 @@
|
|||||||
# For more information, check out the docs
|
# For more information, check out the docs
|
||||||
# https://docs.fastlane.tools/actions/deliver/
|
# https://docs.fastlane.tools/actions/deliver/
|
||||||
submit_for_review(true)
|
submit_for_review(true)
|
||||||
skip_metadata(true)
|
skip_metadata(false)
|
||||||
skip_screenshots(true)
|
skip_screenshots(true)
|
||||||
run_precheck_before_submit(false)
|
run_precheck_before_submit(false)
|
||||||
ipa("../build/ios/ipa/conduit.ipa")
|
ipa("../build/ios/ipa/conduit.ipa")
|
||||||
release_notes(release_notes)
|
|
||||||
@@ -11,7 +11,6 @@ Features
|
|||||||
- Markdown rendering with syntax highlighting
|
- Markdown rendering with syntax highlighting
|
||||||
- Light, dark, and system themes
|
- Light, dark, and system themes
|
||||||
- Secure credential storage (Keychain/Keystore)
|
- Secure credential storage (Keychain/Keystore)
|
||||||
- Offline-aware experience
|
|
||||||
|
|
||||||
Requirements
|
Requirements
|
||||||
- Requires an existing Open‑WebUI server. Conduit does not host or provide AI models.
|
- Requires an existing Open‑WebUI server. Conduit does not host or provide AI models.
|
||||||
|
|||||||
@@ -1,2 +1 @@
|
|||||||
Patch Release: Fix response solution, tools not enabling, connection issues.
|
Patch Release: Fix server side tts
|
||||||
New Languages: Spanish, Dutch, Russian and Chinese.
|
|
||||||
|
|||||||
@@ -1 +1,2 @@
|
|||||||
https://github.com/cogwheel0/conduit/releases/tag/v2.1.14
|
https://github.com/cogwheel0/conduit/releases/tag/v2.1.14
|
||||||
|
|
||||||
@@ -151,14 +151,16 @@ ANDROID_CHANGELOG_DIR="android/fastlane/metadata/android/en-US/changelogs"
|
|||||||
mkdir -p "$ANDROID_CHANGELOG_DIR"
|
mkdir -p "$ANDROID_CHANGELOG_DIR"
|
||||||
echo "$LINK" > "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt"
|
echo "$LINK" > "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt"
|
||||||
|
|
||||||
# iOS release notes
|
# iOS release notes and whatsnew
|
||||||
IOS_NOTES_PATH="ios/fastlane/metadata/default/release_notes.txt"
|
IOS_NOTES_PATH="ios/fastlane/metadata/default/release_notes.txt"
|
||||||
|
IOS_WHATSNEW_PATH="ios/fastlane/metadata/default/whatsnew.txt"
|
||||||
mkdir -p "$(dirname "$IOS_NOTES_PATH")"
|
mkdir -p "$(dirname "$IOS_NOTES_PATH")"
|
||||||
echo "$LINK" > "$IOS_NOTES_PATH"
|
echo "$LINK" > "$IOS_NOTES_PATH"
|
||||||
|
echo "$LINK" > "$IOS_WHATSNEW_PATH"
|
||||||
|
|
||||||
# Commit changes
|
# Commit changes
|
||||||
print_status "Committing changes..."
|
print_status "Committing changes..."
|
||||||
git add pubspec.yaml "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt" "$IOS_NOTES_PATH"
|
git add pubspec.yaml "$ANDROID_CHANGELOG_DIR/$NEW_BUILD.txt" "$IOS_NOTES_PATH" "$IOS_WHATSNEW_PATH"
|
||||||
git commit -m "chore: bump version to $NEW_VERSION"
|
git commit -m "chore: bump version to $NEW_VERSION"
|
||||||
|
|
||||||
git push origin main
|
git push origin main
|
||||||
|
|||||||
Reference in New Issue
Block a user