Skip to content

Commit

Permalink
Merge branch 'release/tchap_v2.9.3'
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Sep 14, 2023
2 parents 7d7e345 + 09a3ef7 commit 1108d12
Show file tree
Hide file tree
Showing 223 changed files with 21,377 additions and 663 deletions.
9 changes: 5 additions & 4 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
# https://docs.github.com/github/administering-a-repository/configuration-options-for-dependency-updates

version: 2
updates:
Expand All @@ -15,7 +15,7 @@ updates:
reviewers:
- "vector-im/element-android-reviewers"
ignore:
- dependency-name: "*github-script*"
- dependency-name: "*"
# Updates for Gradle dependencies used in the app
- package-ecosystem: gradle
directory: "/"
Expand All @@ -25,5 +25,6 @@ updates:
open-pull-requests-limit: 0
reviewers:
- "vector-im/element-android-reviewers"
ignore:
- dependency-name: com.google.zxing:core
allow:
- dependency-name: "io.element.android:wysiwyg"
- dependency-name: "org.matrix.rustcomponents:crypto-android"
8 changes: 8 additions & 0 deletions .github/workflows/triage-incoming.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,3 +15,11 @@ jobs:
project: Issue triage
column: Incoming
repo-token: ${{ secrets.ELEMENT_BOT_TOKEN }}

triage-new-issues:
runs-on: ubuntu-latest
steps:
- uses: actions/add-to-project@main
with:
project-url: https://github.com/orgs/vector-im/projects/91
github-token: ${{ secrets.ELEMENT_BOT_TOKEN }}
36 changes: 36 additions & 0 deletions ELEMENT_CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,39 @@
Changes in Element v1.6.5 (2023-07-25)
======================================

Bugfixes 🐛
----------
- Fix several crashes observed when the device cannot reach the homeserver ([#8578](https://github.com/vector-im/element-android/issues/8578))

Other changes
-------------
- Update MSC3912 implementation: Redaction of related events ([#8481](https://github.com/vector-im/element-android/issues/8481))
- Include some source code in our project to remove our dependency to artifact hosted by bintray (Jcenter). ([#8556](https://github.com/vector-im/element-android/issues/8556))


Changes in Element v1.6.3 (2023-06-27)
======================================

Features ✨
----------
- **Element Android is now using the Crypto Rust SDK**. Migration of user's data should be done at first launch after application upgrade. ([#8390](https://github.com/vector-im/element-android/issues/8390))
- [Rich text editor] Add mentions and slash commands ([#8440](https://github.com/vector-im/element-android/issues/8440))

Bugfixes 🐛
----------
- Update rich text editor library to support pasting of images. ([#8270](https://github.com/vector-im/element-android/issues/8270))
- Fix | Got asked twice about verification #8353 (and other verification banners problems) ([#8353](https://github.com/vector-im/element-android/issues/8353))
- Prompt the user when the invited MatrixId is not recognized ([#8468](https://github.com/vector-im/element-android/issues/8468))
- The correct title and options are now displayed When a poll that was edited is ended. ([#8471](https://github.com/vector-im/element-android/issues/8471))
- In some conditions the room shield is not refreshed correctly ([#8507](https://github.com/vector-im/element-android/issues/8507))
- Fix crypto config fallback key sharing strategy ([#8541](https://github.com/vector-im/element-android/issues/8541))

Other changes
-------------
- MSC3987 implementation: the 'dont_notify' action for a push_rule is now deprecated and replaced by an empty action list. ([#8503](https://github.com/vector-im/element-android/issues/8503))
- Update crypto rust sdk version to 0.3.10 ([#8554](https://github.com/vector-im/element-android/issues/8554))


Changes in Element v1.6.2 (2023-06-02)
======================================

Expand Down
19 changes: 19 additions & 0 deletions TCHAP_CHANGES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
Changes in Tchap 2.9.3 (2023-09-14)
===================================

Improvements 🙌
--------------
- Le message d'erreur de connexion affiche un lien vers la page de status des services ([#955](https://github.com/tchapgouv/tchap-android/issues/955))
- Rebase against Element-Android v1.6.5 ([#966](https://github.com/tchapgouv/tchap-android/issues/966))

Bugfixes 🐛
----------
- Problème d'invitation : IdentityServerUrl comporte un "/" terminal en fin d'URL qui pose problème ([#949](https://github.com/tchapgouv/tchap-android/issues/949))
- Crash avec erreur "Max number of dynamic shortcuts exceeded" ([#964](https://github.com/tchapgouv/tchap-android/issues/964))
- La recherche ne fonctionne pas. Le serveur d'identité n'est pas configuré ([#965](https://github.com/tchapgouv/tchap-android/issues/965))

Other changes
-------------
- Update appname in crash logs ([#969](https://github.com/tchapgouv/tchap-android/issues/969))


Changes in Tchap 2.9.2 (2023-09-01)
===================================

Expand Down
11 changes: 0 additions & 11 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -112,24 +112,13 @@ allprojects {
groups.google.group.each { includeGroup it }
}
}
//noinspection JcenterRepositoryObsolete
// Do not use `jcenter`, it prevents Dependabot from working properly
maven {
url 'https://jcenter.bintray.com'
content {
groups.jcenter.regex.each { includeGroupByRegex it }
groups.jcenter.group.each { includeGroup it }
}
}

maven {
url 'https://s01.oss.sonatype.org/content/repositories/snapshots'
content {
groups.mavenSnapshots.regex.each { includeGroupByRegex it }
groups.mavenSnapshots.group.each { includeGroup it }
}
}

}

tasks.withType(org.jetbrains.kotlin.gradle.tasks.KotlinCompile).all {
Expand Down
3 changes: 2 additions & 1 deletion dependencies.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ ext.libs = [
],
element : [
'opusencoder' : "io.element.android:opusencoder:1.1.0",
'wysiwyg' : "io.element.android:wysiwyg:2.2.1"
'wysiwyg' : "io.element.android:wysiwyg:2.2.2"
],
squareup : [
'moshi' : "com.squareup.moshi:moshi:$moshi",
Expand Down Expand Up @@ -172,6 +172,7 @@ ext.libs = [
'kluent' : "org.amshove.kluent:kluent-android:1.73",
'timberJunitRule' : "net.lachlanmckee:timber-junit-rule:1.0.1",
'junit' : "junit:junit:4.13.2",
'robolectric' : "org.robolectric:robolectric:4.9",
]
]

Expand Down
17 changes: 3 additions & 14 deletions dependencies_groups.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -115,6 +115,7 @@ ext.groups = [
'com.linkedin.dexmaker',
'com.mapbox.mapboxsdk',
'com.nulab-inc',
'com.otaliastudios',
'com.otaliastudios.opengl',
'com.parse.bolts',
'com.pinterest',
Expand Down Expand Up @@ -189,6 +190,7 @@ ext.groups = [
'org.codehaus.groovy',
'org.codehaus.mojo',
'org.codehaus.woodstox',
'org.conscrypt',
'org.eclipse.ee4j',
'org.ec4j.core',
'org.freemarker',
Expand Down Expand Up @@ -221,6 +223,7 @@ ext.groups = [
'org.ow2.asm',
'org.ow2.asm',
'org.reactivestreams',
'org.robolectric',
'org.slf4j',
'org.sonatype.oss',
'org.testng',
Expand All @@ -232,18 +235,4 @@ ext.groups = [
'xml-apis',
]
],
jcenter : [
regex: [
],
group: [
'com.amulyakhare',
'com.otaliastudios',
'com.yqritc',
// https://github.com/cmelchior/realmfieldnameshelper/issues/42
'dk.ilios',
'im.dlg',
'me.dm7.barcodescanner',
'me.gujun.android',
]
]
]
2 changes: 2 additions & 0 deletions fastlane/metadata/android/cs-CZ/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavní změny v této verzi: Element Android nyní používá Crypto Rust SDK.
Úplný seznam změn: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/cs-CZ/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavní změny v této verzi: Element Android nyní používá Crypto Rust SDK.
Úplný seznam změn: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/cs-CZ/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavní změny v této verzi: Element Android nyní používá Crypto Rust SDK.
Úplný seznam změn: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Die wichtigsten Änderungen in dieser Version: Element Android nutzt nun das Crypto-Rust-SDK.
Vollständiges Änderungsprotokoll: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Die wichtigsten Änderungen in dieser Version: Element Android nutzt nun das Crypto-Rust-SDK.
Vollständiges Änderungsprotokoll: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/de-DE/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Die wichtigsten Änderungen in dieser Version: Element Android nutzt nun das Crypto-Rust-SDK.
Vollständiges Änderungsprotokoll: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/40106030.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Main changes in this version: Element Android is now using the Crypto Rust SDK.
Full changelog: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/40106050.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Main changes in this version: corrective release.
Full changelog: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/et/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Põhilised muutused selles versioonis: Element Android krüptoteekideks on nüüd Crypto Rust SDK.
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/et/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Põhilised muutused selles versioonis: Element Android krüptoteekideks on nüüd Crypto Rust SDK.
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/et/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Põhilised muutused selles versioonis: Element Android krüptoteekideks on nüüd Crypto Rust SDK.
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fa/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
تغییرات عمده در این نگارش: المنت اندروید اکنون از SDK راست Crypto استفاده می‌کند.
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fa/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
تغییرات عمده در این نگارش: المنت اندروید اکنون از SDK راست Crypto استفاده می‌کند.
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fa/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
تغییرات عمده در این نگارش: المنت اندروید اکنون از SDK راست Crypto استفاده می‌کند.
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fr-FR/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Principaux changements pour cette version : Element Android utilise désormais le SDK cryptographique en Rust.
Intégralité des changements : https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fr-FR/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Principaux changements pour cette version : Element Android utilise désormais le SDK cryptographique en Rust.
Intégralité des changements : https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/fr-FR/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Principaux changements pour cette version : Element Android utilise désormais le SDK cryptographique en Rust.
Intégralité des changements : https://github.com/vector-im/element-android/releases
1 change: 1 addition & 0 deletions fastlane/metadata/android/hy/short_description.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Խմբային մեսինջեր - գաղտնագրված շփում, խմբային չատեր և վիդեո զանգեր
1 change: 1 addition & 0 deletions fastlane/metadata/android/hy/title.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Element - Անվտանգ Մեսինջեր
2 changes: 2 additions & 0 deletions fastlane/metadata/android/id/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Perubahan utama dalam versi ini: Element Android sekarang menggunakan SDK Kripto Rust.
Catatan perubahan lanjutan: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/id/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Perubahan utama dalam versi ini: Element Android sekarang menggunakan SDK Kripto Rust.
Catatan perubahan lanjutan: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/id/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Perubahan utama dalam versi ini: Element Android sekarang menggunakan SDK Kripto Rust.
Catatan perubahan lanjutan: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/it-IT/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Modifiche principali in questa versione: Element Android ora utilizza l'SDK Rust Crypto.
Cronologia completa: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/it-IT/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Modifiche principali in questa versione: Element Android ora utilizza l'SDK Rust Crypto.
Cronologia completa: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/it-IT/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Modifiche principali in questa versione: Element Android ora utilizza l'SDK Rust Crypto.
Cronologia completa: https://github.com/vector-im/element-android/releases
2 changes: 1 addition & 1 deletion fastlane/metadata/android/nb/short_description.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Sikker desentralisert chat & VoIP. Beskytt dataene dine fra tredjeparter.
Gruppe-meldingsapp - krypterte meldinger, gruppechat og videosamtaler
2 changes: 1 addition & 1 deletion fastlane/metadata/android/nb/title.txt
Original file line number Diff line number Diff line change
@@ -1 +1 @@
Element (tidligere Riot.im)
Element - Sikker Meldingsapp
2 changes: 2 additions & 0 deletions fastlane/metadata/android/pl-PL/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Główne zmiany w tej wersji: Element Android teraz korzysta z Crypto Rust SDK.
Pełna lista zmian: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/pl-PL/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Główne zmiany w tej wersji: Element Android teraz korzysta z Crypto Rust SDK.
Pełna lista zmian: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/pl-PL/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Główne zmiany w tej wersji: Element Android teraz korzysta z Crypto Rust SDK.
Pełna lista zmian: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/ru-RU/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Главные изменения этой версии: Element для Android теперь использует Crypto Rust SDK.
Полный список изменений: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sk/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavné zmeny v tejto verzii: Element Android teraz používa Crypto Rust SDK.
Úplný zoznam zmien: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sk/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavné zmeny v tejto verzii: Element Android teraz používa Crypto Rust SDK.
Úplný zoznam zmien: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sk/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Hlavné zmeny v tejto verzii: Element Android teraz používa Crypto Rust SDK.
Úplný zoznam zmien: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sq/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Ndryshimet kryesore në këtë version: Element Android tani përdor Crypto Rust SDK.
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sq/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Ndryshimet kryesore në këtë version: Element Android tanimë përdor SDK Rust Fshehtëzimesh.
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sq/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Ndryshimet kryesore në këtë version: Element Android tanimë përdor SDK Rust për Kripto.
Regjistër i plotë ndryshimesh: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sv-SE/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Huvudsakliga ändringar i den här versionen: Element Android använder nu Rust-krypto-SDK:t
Full ändringslogg: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sv-SE/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Huvudsakliga ändringar i den här versionen: Element Android använder nu Rust-krypto-SDK:t
Full ändringslogg: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/sv-SE/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Huvudsakliga ändringar i den här versionen: Element Android använder nu Rust-krypto-SDK:t
Full ändringslogg: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/uk/changelogs/40106000.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Основні зміни в цій версії: Element Android тепер використовує Crypto Rust SDK.
Перелік усіх змін: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/uk/changelogs/40106010.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Основні зміни в цій версії: Element Android тепер використовує Crypto Rust SDK.
Перелік усіх змін: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/uk/changelogs/40106020.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Основні зміни в цій версії: Element Android тепер використовує Crypto Rust SDK.
Перелік усіх змін: https://github.com/vector-im/element-android/releases
4 changes: 2 additions & 2 deletions fastlane/metadata/android/vi/changelogs/40103020.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Những thay đổi chính trong phiên bản này: Thêm hỗ trợ Android Auto. Sửa rất nhiều lỗi!
Log thay đổi đầy đủ: https://github.com/vector-im/element-android/releases/tag/v1.3.2
Thay đổi chính trong phiên bản này: Hỗ trợ Android Auto. Sửa rất nhiều lỗi!
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.2
4 changes: 2 additions & 2 deletions fastlane/metadata/android/vi/changelogs/40103030.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Những thay đổi chính trong phiên bản này: Hiển thị (các) chính sách máy chủ xác thực trong phần cài đặt. Tạm thời bỏ hỗ trợ Android Auto.
Log thay đổi đầy đủ: https://github.com/vector-im/element-android/releases/tag/v1.3.3
Thay đổi chính trong phiên bản này: Hiển thị (các) chính sách máy chủ định danh trong phần cài đặt. Tạm thời bỏ hỗ trợ Android Auto.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.3
4 changes: 2 additions & 2 deletions fastlane/metadata/android/vi/changelogs/40103040.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Những thay đổi chính trong phiên bản này: Thêm hỗ trợ hiển thị, cho phòng Tin nhắn Trực tiếp (lưu ý: hiển thị bị vô hiệu hóa trên matrix.org. Hỗ trợ Android Auto trở lại.
Nhật thay đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.4
Thay đổi chính trong phiên bản này: Hỗ trợ trạng thái, cho các phòng nhắn tin trực tiếp (ghi chú: trạng thái bị vô hiệu trên matrix.org). Hỗ trợ Android Auto trở lại.
Toàn bộ nhật sửa đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.4
2 changes: 2 additions & 0 deletions fastlane/metadata/android/vi/changelogs/40103050.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thay đổi chính trong phiên bản này: Hỗ trợ trạng thái, cho các phòng nhắn tin trực tiếp (ghi chú: trạng thái bị vô hiệu trên matrix.org). Hỗ trợ Android Auto trở lại.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.5
2 changes: 2 additions & 0 deletions fastlane/metadata/android/vi/changelogs/40103060.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thay đổi chính trong phiên bản này: Hỗ trợ trạng thái, cho các phòng nhắn tin trực tiếp (ghi chú: trạng thái bị vô hiệu trên matrix.org). Hỗ trợ Android Auto trở lại.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases/tag/v1.3.6
2 changes: 2 additions & 0 deletions fastlane/metadata/android/vi/changelogs/40105080.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thay đổi chính trong phiên bản này: Sửa lỗi và cải thiện.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/vi/changelogs/40105100.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thay đổi chính trong phiên bản này: Triển khai chế độ toàn màn hình mới cho trình soạn thảo văn bản phong phú và sửa lỗi.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
2 changes: 2 additions & 0 deletions fastlane/metadata/android/vi/changelogs/40105110.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
Thay đổi chính trong phiên bản này: Triển khai chế độ toàn màn hình mới cho trình soạn thảo văn bản phong phú và sửa lỗi.
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
2 changes: 1 addition & 1 deletion fastlane/metadata/android/vi/changelogs/40105120.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Thay đổi chính trong phiên bản này: Chức năng chủ đề được bật theo mặc định.
Toàn bộ nhật ký thay đổi: https://github.com/vector-im/element-android/releases
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
2 changes: 1 addition & 1 deletion fastlane/metadata/android/vi/changelogs/40105130.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Thay đổi chính trong phiên bản này: Chức năng chủ đề được bật theo mặc định.
Toàn bộ nhật ký thay đổi: https://github.com/vector-im/element-android/releases
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
2 changes: 1 addition & 1 deletion fastlane/metadata/android/vi/changelogs/40105140.txt
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
Thay đổi chính trong phiên bản này: Chức năng chủ đề được bật theo mặc định.
Toàn bộ nhật ký thay đổi: https://github.com/vector-im/element-android/releases
Toàn bộ nhật ký sửa đổi: https://github.com/vector-im/element-android/releases
Loading

0 comments on commit 1108d12

Please sign in to comment.