[1.463.*] Pre-release merge (#1052)

This commit is contained in:
tramline-github[bot]
2026-01-24 14:30:06 +00:00
committed by GitHub
3 changed files with 28 additions and 2 deletions
+24 -1
View File
@@ -144,8 +144,31 @@ jobs:
# Push the tag to GitHub
git push origin "v${VERSION}"
# Create GitHub release notes with footer
RELEASE_NOTES=$(mktemp)
{
cat distribution/whatsnew/whatsnew-en-GB
echo ""
echo "---"
echo ""
echo '<a href="https://play.google.com/store/apps/details?id=dev.msfjarvis.claw.android">'
echo ' <img src="https://play.google.com/intl/en_us/badges/static/images/badges/en_badge_web_generic.png"'
echo ' alt="Get it on Google Play"'
echo ' height="80" />'
echo '</a>'
echo ""
echo '<a href="https://android.izzysoft.de/repo/apk/dev.msfjarvis.claw.android">'
echo ' <img src="./.github/izzy-badge.webp"'
echo ' alt="Get it on IzzyOnDroid"'
echo ' height="65" />'
echo '</a>'
} > "$RELEASE_NOTES"
# Create a GitHub release
gh release create "v${VERSION}" --notes-file distribution/whatsnew/whatsnew-en-GB --title "v${VERSION}" ./android/apk/*.apk ./android/bundle/*.aab
gh release create "v${VERSION}" --notes-file "$RELEASE_NOTES" --title "v${VERSION}" ./android/apk/*.apk ./android/bundle/*.aab
# Clean up temp file
rm "$RELEASE_NOTES"
# Start the next development iteration
./gradlew -q --no-configuration-cache bumpSnapshot
+3
View File
@@ -9,11 +9,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
### Fixed
- Rare crash in widget handling
- Line-breaking behavior in comments now packs text densely
- Tag filtering now applies to widgets as well
### Changed
- Links to other posts now open in the app itself
- Widget handles bad network scenarios better
## [1.59.0] - 2026-01-09
+1 -1
View File
@@ -22,7 +22,7 @@ konvert = "4.4.0"
kotlin = "2.3.10-RC"
kotlinResult = "2.1.0"
lifecycle = "2.10.0"
metro = "0.10.0"
metro = "0.10.1"
monitor = "1.8.0"
navigation3 = "1.0.0"
navigation3-material = "1.3.0-alpha06"