Merge branch 'release/1.3.1' into develop

This commit is contained in:
Benoit Marty 2021-09-29 14:52:26 +02:00
commit c4539abe4c
6 changed files with 12 additions and 29 deletions

View File

@ -1,3 +1,13 @@
Changes in Element v1.3.1 (2021-09-29)
======================================
Bugfixes 🐛
----------
- Verifying exported E2E keys to provide user feedback when the output is malformed ([#4082](https://github.com/vector-im/element-android/issues/4082))
- Fix settings crash when accelerometer not available ([#4103](https://github.com/vector-im/element-android/issues/4103))
- Crash while rendering failed message warning ([#4110](https://github.com/vector-im/element-android/issues/4110))
Changes in Element v1.3.0 (2021-09-27)
======================================

View File

@ -1 +0,0 @@
Verifying exported E2E keys to provide user feedback when the output is malformed

View File

@ -1 +0,0 @@
Fix settings crash when accelerometer not available

View File

@ -1 +0,0 @@
Crash while rendering failed message warning

View File

@ -0,0 +1,2 @@
Main changes in this version: Organize your rooms using Spaces! v1.3.1 is fixing a crash which can occurs in v1.3.0.
Full changelog: https://github.com/vector-im/element-android/releases/tag/v1.3.1

View File

@ -59,24 +59,6 @@ else
removeShortDes_si=1
fi
if [[ -f "./fastlane/metadata/android/sq/short_description.txt" ]]; then
echo "It appears that file ./fastlane/metadata/android/sq/short_description.txt now exists. This can be removed."
removeShortDes_sq=0
else
echo "Copy default short description to ./fastlane/metadata/android/sq"
cp ./fastlane/metadata/android/en-US/short_description.txt ./fastlane/metadata/android/sq
removeShortDes_sq=1
fi
if [[ -f "./fastlane/metadata/android/sq/full_description.txt" ]]; then
echo "It appears that file ./fastlane/metadata/android/sq/full_description.txt now exists. This can be removed."
removeFullDes_sq=0
else
echo "Copy default full description to ./fastlane/metadata/android/sq"
cp ./fastlane/metadata/android/en-US/full_description.txt ./fastlane/metadata/android/sq
removeFullDes_sq=1
fi
if [[ -f "./fastlane/metadata/android/th/full_description.txt" ]]; then
echo "It appears that file ./fastlane/metadata/android/th/full_description.txt now exists. This can be removed."
removeFullDes_th=0
@ -117,18 +99,10 @@ if [[ ${removeShortDes_si} -eq 1 ]]; then
rm ./fastlane/metadata/android/si-LK/short_description.txt
fi
if [[ ${removeShortDes_sq} -eq 1 ]]; then
rm ./fastlane/metadata/android/sq/short_description.txt
fi
if [[ ${removeFullDes_th} -eq 1 ]]; then
rm ./fastlane/metadata/android/th/full_description.txt
fi
if [[ ${removeFullDes_sq} -eq 1 ]]; then
rm ./fastlane/metadata/android/sq/full_description.txt
fi
if [[ ${removeFullDes_vi} -eq 1 ]]; then
rm ./fastlane/metadata/android/vi/full_description.txt
fi