Skip to content

Commit 8d112a4

Browse files
author
ganfra
committed
Merge branch 'hotfix/1.5.0_disable_applayout' into main
2 parents cb6d0a6 + f8ed352 commit 8d112a4

File tree

4 files changed

+5
-7
lines changed

4 files changed

+5
-7
lines changed

CHANGES.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Changes in Element v1.5.0 (2022-09-21)
1+
Changes in Element v1.5.0 (2022-09-23)
22
======================================
33

44
Features ✨
@@ -33,8 +33,6 @@ Other changes
3333
- Exclude legacy android support annotation library ([#7140](https://github.com/vector-im/element-android/issues/7140))
3434
- Pulling no longer hosted im.dlg:android-dialer directly into the repository and removing legacy support library usages ([#7142](https://github.com/vector-im/element-android/issues/7142))
3535
- Fixing build cache misses when compiling the vector module ([#7157](https://github.com/vector-im/element-android/issues/7157))
36-
- New App Layout is now enabled by default! Go to the Settings > Labs to toggle this ([#7166](https://github.com/vector-im/element-android/issues/7166))
37-
3836

3937
Changes in Element v1.4.36 (2022-09-10)
4038
=======================================

vector-app/src/androidTest/java/im/vector/app/VerifySessionInteractiveTest.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -225,8 +225,8 @@ class VerifySessionInteractiveTest : VerificationTestBase() {
225225

226226
// Wait until local secrets are known (gossip)
227227
withIdlingResource(allSecretsKnownIdling(uiSession)) {
228-
onView(withId(R.id.roomListContainer))
229-
.check(matches(isDisplayed()))
228+
onView(withId(R.id.groupToolbarAvatarImageView))
229+
.perform(click())
230230
}
231231
}
232232

vector-app/src/androidTest/java/im/vector/app/ui/robot/ElementRobot.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ import im.vector.app.withIdlingResource
5050
import timber.log.Timber
5151

5252
class ElementRobot(
53-
private val labsPreferences: LabFeaturesPreferences = LabFeaturesPreferences(true)
53+
private val labsPreferences: LabFeaturesPreferences = LabFeaturesPreferences(false)
5454
) {
5555
fun onboarding(block: OnboardingRobot.() -> Unit) {
5656
block(OnboardingRobot())

vector-config/src/main/res/values/config-settings.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@
4040
<bool name="settings_labs_deferred_dm_visible">true</bool>
4141
<bool name="settings_labs_deferred_dm_default">true</bool>
4242
<bool name="settings_labs_thread_messages_default">false</bool>
43-
<bool name="settings_labs_new_app_layout_default">true</bool>
43+
<bool name="settings_labs_new_app_layout_default">false</bool>
4444
<bool name="settings_timeline_show_live_sender_info_visible">true</bool>
4545
<bool name="settings_timeline_show_live_sender_info_default">false</bool>
4646
<!-- Level 1: Advanced settings -->

0 commit comments

Comments
 (0)