Merge branch 'release/0.1.5' into main

This commit is contained in:
Benoit Marty 2023-08-28 17:18:58 +02:00
commit 1a8289cd13
4 changed files with 13 additions and 2 deletions

View file

@ -1,3 +1,11 @@
Changes in Element X v0.1.5 (2023-08-28)
========================================
Bugfixes 🐛
----------
- Fix crash when opening any room. ([#1160](https://github.com/vector-im/element-x-android/issues/1160))
Changes in Element X v0.1.4 (2023-08-28)
========================================

View file

@ -102,7 +102,8 @@ class LoggedInAppScopeFlowNode @AssistedInject constructor(
plugins<Callback>().forEach { it.onOpenBugReport() }
}
}
createNode<LoggedInFlowNode>(buildContext, listOf(callback))
val nodeLifecycleCallbacks = plugins<NodeLifecycleCallback>()
createNode<LoggedInFlowNode>(buildContext, nodeLifecycleCallbacks + callback)
}
}
}

View file

@ -0,0 +1,2 @@
Main changes in this version: bug fixes and add OIDC support.
Full changelog: https://github.com/vector-im/element-x-android/releases

View file

@ -56,7 +56,7 @@ private const val versionMinor = 1
// Note: even values are reserved for regular release, odd values for hotfix release.
// When creating a hotfix, you should decrease the value, since the current value
// is the value for the next regular release.
private const val versionPatch = 4
private const val versionPatch = 5
object Versions {
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch