Skip to content

Commit

Permalink
Merge branch 'hotfix/1.5.0_disable_applayout' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ganfra committed Sep 23, 2022
2 parents cb6d0a6 + f8ed352 commit 8d112a4
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 7 deletions.
4 changes: 1 addition & 3 deletions CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
Changes in Element v1.5.0 (2022-09-21)
Changes in Element v1.5.0 (2022-09-23)
======================================

Features ✨
Expand Down Expand Up @@ -33,8 +33,6 @@ Other changes
- Exclude legacy android support annotation library ([#7140](https://github.com/vector-im/element-android/issues/7140))
- 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))
- Fixing build cache misses when compiling the vector module ([#7157](https://github.com/vector-im/element-android/issues/7157))
- 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))


Changes in Element v1.4.36 (2022-09-10)
=======================================
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -225,8 +225,8 @@ class VerifySessionInteractiveTest : VerificationTestBase() {

// Wait until local secrets are known (gossip)
withIdlingResource(allSecretsKnownIdling(uiSession)) {
onView(withId(R.id.roomListContainer))
.check(matches(isDisplayed()))
onView(withId(R.id.groupToolbarAvatarImageView))
.perform(click())
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ import im.vector.app.withIdlingResource
import timber.log.Timber

class ElementRobot(
private val labsPreferences: LabFeaturesPreferences = LabFeaturesPreferences(true)
private val labsPreferences: LabFeaturesPreferences = LabFeaturesPreferences(false)
) {
fun onboarding(block: OnboardingRobot.() -> Unit) {
block(OnboardingRobot())
Expand Down
2 changes: 1 addition & 1 deletion vector-config/src/main/res/values/config-settings.xml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
<bool name="settings_labs_deferred_dm_visible">true</bool>
<bool name="settings_labs_deferred_dm_default">true</bool>
<bool name="settings_labs_thread_messages_default">false</bool>
<bool name="settings_labs_new_app_layout_default">true</bool>
<bool name="settings_labs_new_app_layout_default">false</bool>
<bool name="settings_timeline_show_live_sender_info_visible">true</bool>
<bool name="settings_timeline_show_live_sender_info_default">false</bool>
<!-- Level 1: Advanced settings -->
Expand Down

0 comments on commit 8d112a4

Please sign in to comment.