Skip to content

Commit

Permalink
6.4.1 (#1150)
Browse files Browse the repository at this point in the history
- Allow image cropping when setting a group/channel avatar
- Fix position of floating scroll-to-bottom button (thanks Matthew
Fennell)
- Fix buttons in contact list not working sometimes (thanks Matthew
Fennell)
- Implement setting to control the time used for auto-deletion of
messages (thanks Noman Ashraf)
- Fix bug sometimes showing an empty list of omemo keys in groups
- Fix saving of group name when creating groups on ejabberd servers
- Fix message retraction in groups/channels
- Fixed dark mode display of chat placeholder image (park)
- New Onboarding flow introducing Monal, XMPP and Privacy Settings
- Accessibility fixes when using VoiceOver
- Merge and improve add contact menu and contact requests menu
- Show contact requests menu when tapping onto a contact request
notification
- Fix several crashes and other bugs
- Updated translations
MACOS_ONLY - This is the last release that will support macOS 11 + 12.
IOS_ONLY - This is the last release that will support iOS 14 + 15.
  • Loading branch information
tmolitor-stud-tu committed Jul 24, 2024
2 parents 519c92d + 6533fae commit bf715e0
Showing 1 changed file with 10 additions and 2 deletions.
12 changes: 10 additions & 2 deletions .github/workflows/stable.build-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -131,13 +131,21 @@ jobs:
path_ios="$(mktemp -d)"
cp -av ./appstore_metadata/* "$path_ios"
echo -n "$(date +%Y) Thilo Molitor" > "$path_ios/copyright.txt"
echo -n "$CHANGELOG_IOS" > "$path_ios/en-US/release_notes.txt"
for dir in */; do
if [[ -d "$dir" && "$dir" == *-* ]]; then
echo -n "$CHANGELOG_IOS" > "$path_ios/${dir%/}/release_notes.txt"
fi
done
echo "path_ios=$path_ios" | tee /dev/stderr >> "$GITHUB_OUTPUT"
path_macos="$(mktemp -d)"
cp -av ./appstore_metadata/* "$path_macos"
echo -n "$(date +%Y) Thilo Molitor" > "$path_macos/copyright.txt"
echo -n "$CHANGELOG_MACOS" > "$path_macos/en-US/release_notes.txt"
for dir in */; do
if [[ -d "$dir" && "$dir" == *-* ]]; then
echo -n "$CHANGELOG_MACOS" > "$path_macos/${dir%/}/release_notes.txt"
fi
done
echo "path_macos=$path_macos" | tee /dev/stderr >> "$GITHUB_OUTPUT"
- name: Publish ios to appstore connect
#run: xcrun altool --upload-app --file ./Monal/build/ipa/Monal.ipa --type ios --asc-provider S8D843U34Y --team-id S8D843U34Y -u $(cat /Users/ci/apple_connect_upload_mail.txt) -p "$(cat /Users/ci/apple_connect_upload_secret.txt)"
Expand Down

0 comments on commit bf715e0

Please sign in to comment.