Merge branch 'develop' into patch-1
This commit is contained in:
commit
7a442028ab
5 changed files with 18 additions and 13 deletions
13
CHANGES.md
13
CHANGES.md
|
|
@ -1,3 +1,16 @@
|
||||||
|
Changes in Element X v0.2.3 (2023-09-27)
|
||||||
|
========================================
|
||||||
|
|
||||||
|
Features ✨
|
||||||
|
----------
|
||||||
|
- Handle installation of Apks from the media viewer. ([#1432](https://github.com/vector-im/element-x-android/pull/1432))
|
||||||
|
- Integrate SDK 0.1.58 ([#1437](https://github.com/vector-im/element-x-android/pull/1437))
|
||||||
|
|
||||||
|
Other changes
|
||||||
|
-------------
|
||||||
|
- Element call: add custom parameters to Element Call urls. ([#1434](https://github.com/vector-im/element-x-android/issues/1434))
|
||||||
|
|
||||||
|
|
||||||
Changes in Element X v0.2.2 (2023-09-21)
|
Changes in Element X v0.2.2 (2023-09-21)
|
||||||
========================================
|
========================================
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1 +0,0 @@
|
||||||
Element call: add custom parameters to Element Call urls.
|
|
||||||
|
|
@ -120,18 +120,9 @@ You can also have access to the aars through the [release](https://github.com/ma
|
||||||
If you need to locally build the sdk-android you can use
|
If you need to locally build the sdk-android you can use
|
||||||
the [build](https://github.com/matrix-org/matrix-rust-components-kotlin/blob/main/scripts/build.sh) script.
|
the [build](https://github.com/matrix-org/matrix-rust-components-kotlin/blob/main/scripts/build.sh) script.
|
||||||
|
|
||||||
For this, you first need to ensure to setup :
|
For this please check the [prerequisites](https://github.com/matrix-org/matrix-rust-components-kotlin/blob/main/README.md#prerequisites) from the repo.
|
||||||
|
|
||||||
- rust environment (check https://rust-lang.github.io/rustup/ if needed)
|
Checkout both [matrix-rust-sdk](https://github.com/matrix-org/matrix-rust-sdk) and [matrix-rust-components-kotlin](https://github.com/matrix-org/matrix-rust-components-kotlin) repositories
|
||||||
- cargo-ndk
|
|
||||||
```shell
|
|
||||||
cargo install cargo-ndk
|
|
||||||
```
|
|
||||||
- android targets
|
|
||||||
```shell
|
|
||||||
rustup target add aarch64-linux-android armv7-linux-androideabi x86_64-linux-android i686-linux-android
|
|
||||||
```
|
|
||||||
- checkout both [matrix-rust-sdk](https://github.com/matrix-org/matrix-rust-sdk) and [matrix-rust-components-kotlin](https://github.com/matrix-org/matrix-rust-components-kotlin) repositories
|
|
||||||
```shell
|
```shell
|
||||||
git clone git@github.com:matrix-org/matrix-rust-sdk.git
|
git clone git@github.com:matrix-org/matrix-rust-sdk.git
|
||||||
git clone git@github.com:matrix-org/matrix-rust-components-kotlin.git
|
git clone git@github.com:matrix-org/matrix-rust-components-kotlin.git
|
||||||
|
|
|
||||||
2
fastlane/metadata/android/en-US/changelogs/40002030.txt
Normal file
2
fastlane/metadata/android/en-US/changelogs/40002030.txt
Normal file
|
|
@ -0,0 +1,2 @@
|
||||||
|
Main changes in this version: bugfixes.
|
||||||
|
Full changelog: https://github.com/vector-im/element-x-android/releases
|
||||||
|
|
@ -56,7 +56,7 @@ private const val versionMinor = 2
|
||||||
// Note: even values are reserved for regular release, odd values for hotfix release.
|
// 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
|
// When creating a hotfix, you should decrease the value, since the current value
|
||||||
// is the value for the next regular release.
|
// is the value for the next regular release.
|
||||||
private const val versionPatch = 3
|
private const val versionPatch = 4
|
||||||
|
|
||||||
object Versions {
|
object Versions {
|
||||||
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
val versionCode = 4_000_000 + versionMajor * 1_00_00 + versionMinor * 1_00 + versionPatch
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue