diff --git a/CHANGES_BWI.md b/CHANGES_BWI.md index 02ee783b4..1188056a7 100644 --- a/CHANGES_BWI.md +++ b/CHANGES_BWI.md @@ -1,4 +1,33 @@ +Changes in BWI project 1.26.0 (2022-10-21) +=================================================== + +Upstream merge ✨: + +- v1.9.8 + +Features ✨: +- Zooming pictures with double tap (#3699) +- Enable animation handling with Lottie (for BuM) (#3620) + +Improvements 🙌: +- Rename closed polls to hidden polls (#3652) +- New Copyright URL (#3626) +- Better button contrast (#3688) +- Remove room settings for DMs to be more similar to Android (#3639) + +Bugfix 🐛: +- Security fix (Missing decoration for events decrypted with untrusted Megolm sessions ([Security advisory]) + +Translations 🗣 : + +SDK API changes ⚠️: + ++Build 🧱: + +Changes in BWI project 1.25.0 (2022-09-27) +=================================================== + Changes in BWI project 1.25.0 (2022-09-27) =================================================== diff --git a/Config/nexus_upload.sh b/Config/nexus_upload.sh index 304f37e9f..376ca71a0 100755 --- a/Config/nexus_upload.sh +++ b/Config/nexus_upload.sh @@ -14,7 +14,7 @@ find ../out$SUBDIR -name "*$VARIANT*.$EXT" -print0 | while read -d $'\0' file do echo "Source: $file" zip -r $file.zip $file - BASENAME=$(basename $file .$EXT.zip)-$VERSION-$DATE_STR-$GITHASH.$EXT$SUBDIR.$EXT.zip + BASENAME=$(basename $file .zip)-$VERSION-$DATE_STR-$GITHASH.$EXT$SUBDIR.zip echo "Destination $NEXUS_BASE_URL/$VERSION/$BASENAME" curl --fail -u $S_BWMESSENGER_ID:$S_BWMESSENGER_PASSWORD -v --upload-file $file.zip $NEXUS_BASE_URL/$VERSION/$BASENAME done \ No newline at end of file diff --git a/Riot/Assets/new_features.html b/Riot/Assets/new_features.html index f89a13d15..2222ec11e 100644 --- a/Riot/Assets/new_features.html +++ b/Riot/Assets/new_features.html @@ -33,6 +33,28 @@
Feature-Übersicht ++ Version 1.26.0 +
+ ++ Neue Funktionen +
+ Verbesserungen +
Version 1.25.0 diff --git a/Riot/Modules/Room/RoomViewController.m b/Riot/Modules/Room/RoomViewController.m index f692d37be..7e1a92cdc 100644 --- a/Riot/Modules/Room/RoomViewController.m +++ b/Riot/Modules/Room/RoomViewController.m @@ -4331,7 +4331,7 @@ static CGSize kThreadListBarButtonItemImageSize; }]]; } - if (!isJitsiCallEvent && self.roomDataSource.room.summary.isEncrypted) + if (!isJitsiCallEvent && self.roomDataSource.room.summary.isEncrypted && BuildSettings.roomContextualMenuShowEncryptionOption) { [self.eventMenuBuilder addItemWithType:EventMenuItemTypeViewEncryption action:[UIAlertAction actionWithTitle:[VectorL10n roomEventActionViewEncryption]