Skip to content

Commit 1a8289c

Browse files
committed
Merge branch 'release/0.1.5' into main
2 parents cff8df4 + a48fad6 commit 1a8289c

File tree

4 files changed

+13
-2
lines changed

4 files changed

+13
-2
lines changed

CHANGES.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
Changes in Element X v0.1.5 (2023-08-28)
2+
========================================
3+
4+
Bugfixes 🐛
5+
----------
6+
- Fix crash when opening any room. ([#1160](https://github.com/vector-im/element-x-android/issues/1160))
7+
8+
19
Changes in Element X v0.1.4 (2023-08-28)
210
========================================
311

appnav/src/main/kotlin/io/element/android/appnav/LoggedInAppScopeFlowNode.kt

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,8 @@ class LoggedInAppScopeFlowNode @AssistedInject constructor(
102102
plugins<Callback>().forEach { it.onOpenBugReport() }
103103
}
104104
}
105-
createNode<LoggedInFlowNode>(buildContext, listOf(callback))
105+
val nodeLifecycleCallbacks = plugins<NodeLifecycleCallback>()
106+
createNode<LoggedInFlowNode>(buildContext, nodeLifecycleCallbacks + callback)
106107
}
107108
}
108109
}
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Main changes in this version: bug fixes and add OIDC support.
2+
Full changelog: https://github.com/vector-im/element-x-android/releases

plugins/src/main/kotlin/Versions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ private const val versionMinor = 1
5656
// Note: even values are reserved for regular release, odd values for hotfix release.
5757
// When creating a hotfix, you should decrease the value, since the current value
5858
// is the value for the next regular release.
59-
private const val versionPatch = 4
59+
private const val versionPatch = 5
6060

6161
object Versions {
6262
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch

0 commit comments

Comments
 (0)