Skip to content

Commit 0b09a51

Browse files
committed
Merge branch 'release/1.5.30'
2 parents 7ce1842 + 76cea42 commit 0b09a51

File tree

84 files changed

+1069
-675
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

84 files changed

+1069
-675
lines changed

CHANGES.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
Changes in Element v1.5.30 (2023-04-05)
2+
=======================================
3+
4+
Features ✨
5+
----------
6+
- Permalinks to a room/space are pillified ([#8219](https://github.com/vector-im/element-android/issues/8219))
7+
- Permalinks to a matrix user are pillified ([#8220](https://github.com/vector-im/element-android/issues/8220))
8+
- Permalinks to messages are pillified ([#8221](https://github.com/vector-im/element-android/issues/8221))
9+
10+
Bugfixes 🐛
11+
----------
12+
- Custom sticker picker loads indefinitely ([#8026](https://github.com/vector-im/element-android/issues/8026))
13+
- Replace hardcoded colors by theming colors on save button. ([#8208](https://github.com/vector-im/element-android/issues/8208))
14+
- Add RTL support to RemoveJitsiWidgetView ([#8210](https://github.com/vector-im/element-android/issues/8210))
15+
- Add user completion for matrix ids ([#8217](https://github.com/vector-im/element-android/issues/8217))
16+
- Long name are truncated in the pills ([#8218](https://github.com/vector-im/element-android/issues/8218))
17+
- The read marker is stuck in the past ([#8268](https://github.com/vector-im/element-android/issues/8268))
18+
19+
Other changes
20+
-------------
21+
- Replace Terms and Conditions with Acceptable Use Policy. ([#8286](https://github.com/vector-im/element-android/issues/8286))
22+
23+
124
Changes in Element v1.5.28 (2023-03-08)
225
=======================================
326

build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ buildscript {
2424
classpath libs.gradle.gradlePlugin
2525
classpath libs.gradle.kotlinPlugin
2626
classpath libs.gradle.hiltPlugin
27-
classpath 'com.google.firebase:firebase-appdistribution-gradle:3.2.0'
27+
classpath 'com.google.firebase:firebase-appdistribution-gradle:4.0.0'
2828
classpath 'com.google.gms:google-services:4.3.15'
2929
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:4.0.0.2929'
3030
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.6'
3131
classpath "com.likethesalad.android:stem-plugin:2.3.0"
32-
classpath 'org.owasp:dependency-check-gradle:8.1.2'
33-
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.7.20"
32+
classpath 'org.owasp:dependency-check-gradle:8.2.1'
33+
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.8.10"
3434
classpath "org.jetbrains.kotlinx:kotlinx-knit:0.4.0"
3535
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
3636
classpath libs.squareup.paparazziPlugin

dependencies.gradle

Lines changed: 11 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -11,25 +11,23 @@ def gradle = "7.4.2"
1111
def kotlin = "1.8.10"
1212
def kotlinCoroutines = "1.6.4"
1313
def dagger = "2.45"
14-
def firebaseBom = "31.2.2"
14+
def firebaseBom = "31.4.0"
1515
def appDistribution = "16.0.0-beta06"
1616
def retrofit = "2.9.0"
1717
def markwon = "4.6.2"
1818
def moshi = "1.14.0"
1919
def lifecycle = "2.5.1"
2020
def flowBinding = "1.2.0"
21-
def flipper = "0.183.0"
21+
def flipper = "0.188.0"
2222
def epoxy = "5.0.0"
23-
def mavericks = "3.0.1"
24-
def glide = "4.15.0"
23+
def mavericks = "3.0.2"
24+
def glide = "4.15.1"
2525
def bigImageViewer = "1.8.1"
2626
def jjwt = "0.11.5"
27-
// Temporary version to unblock #6929. Once 0.16.0 is released we should use it, and revert
28-
// the whole commit which set version 0.16.0-SNAPSHOT
29-
def vanniktechEmoji = "0.16.0-SNAPSHOT"
30-
def sentry = "6.15.0"
27+
def vanniktechEmoji = "0.16.0"
28+
def sentry = "6.17.0"
3129
// Use 1.6.0 alpha to fix issue with test
32-
def fragment = "1.6.0-alpha04"
30+
def fragment = "1.6.0-alpha08"
3331
// Testing
3432
def mockk = "1.12.3" // We need to use 1.12.3 to have mocking in androidTest until a new version is released: https://github.com/mockk/mockk/issues/819
3533
def espresso = "3.5.1"
@@ -49,11 +47,11 @@ ext.libs = [
4947
'coroutinesTest' : "org.jetbrains.kotlinx:kotlinx-coroutines-test:$kotlinCoroutines"
5048
],
5149
androidx : [
52-
'activity' : "androidx.activity:activity-ktx:1.6.1",
50+
'activity' : "androidx.activity:activity-ktx:1.7.0",
5351
'appCompat' : "androidx.appcompat:appcompat:1.6.1",
5452
'biometric' : "androidx.biometric:biometric:1.1.0",
5553
'core' : "androidx.core:core-ktx:1.9.0",
56-
'recyclerview' : "androidx.recyclerview:recyclerview:1.2.1",
54+
'recyclerview' : "androidx.recyclerview:recyclerview:1.3.0",
5755
'exifinterface' : "androidx.exifinterface:exifinterface:1.3.6",
5856
'fragmentKtx' : "androidx.fragment:fragment-ktx:$fragment",
5957
'fragmentTesting' : "androidx.fragment:fragment-testing:$fragment",
@@ -88,7 +86,7 @@ ext.libs = [
8886
'appdistributionApi' : "com.google.firebase:firebase-appdistribution-api-ktx:$appDistribution",
8987
'appdistribution' : "com.google.firebase:firebase-appdistribution:$appDistribution",
9088
// Phone number https://github.com/google/libphonenumber
91-
'phonenumber' : "com.googlecode.libphonenumber:libphonenumber:8.13.7"
89+
'phonenumber' : "com.googlecode.libphonenumber:libphonenumber:8.13.8"
9290
],
9391
dagger : [
9492
'dagger' : "com.google.dagger:dagger:$dagger",
@@ -103,7 +101,7 @@ ext.libs = [
103101
],
104102
element : [
105103
'opusencoder' : "io.element.android:opusencoder:1.1.0",
106-
'wysiwyg' : "io.element.android:wysiwyg:1.1.1"
104+
'wysiwyg' : "io.element.android:wysiwyg:1.2.2"
107105
],
108106
squareup : [
109107
'moshi' : "com.squareup.moshi:moshi:$moshi",

dependencies_groups.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,6 @@ ext.groups = [
4242
regex: [
4343
],
4444
group: [
45-
'com.vanniktech',
4645
]
4746
],
4847
mavenCentral: [
@@ -128,7 +127,7 @@ ext.groups = [
128127
'com.sun.xml.bind.mvn',
129128
'com.sun.xml.fastinfoset',
130129
'com.thoughtworks.qdox',
131-
// 'com.vanniktech',
130+
'com.vanniktech',
132131
'commons-cli',
133132
'commons-codec',
134133
'commons-io',
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Hlavní změny v této verzi: Hlavně opravy chyb.
2+
Úplný seznam změn: https://github.com/vector-im/element-android/releases
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Die wichtigsten Änderungen in dieser Version: Hauptsächlich Fehlerbehebungen.
2+
Vollständiges Änderungsprotokoll: https://github.com/vector-im/element-android/releases
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Main changes in this version: permalinks to rooms, spaces, users and messages are now displayed as pills in the timeline. We also fixed some issues with custom stickers and the read marker getting stuck in the past.
2+
Full changelog: https://github.com/vector-im/element-android/releases
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Põhilised muutused selles versioonis: põhiliselt veaparandused.
2+
Kogu ingliskeelne muudatuste logi: https://github.com/vector-im/element-android/releases
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
تغییرات عمده در این نگارش: عمدتاً رفع اشکال.
2+
گزارش دگرگونی کامل: https://github.com/vector-im/element-android/releases
Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Principaux changements pour cette version : Principalement des corrections de bugs.
2+
Intégralité des changements : https://github.com/vector-im/element-android/releases

0 commit comments

Comments
 (0)