Skip to content

Commit f637996

Browse files
author
ganfra
committed
Merge branch 'release/1.5.26' into main
2 parents f74a885 + a9ebf4f commit f637996

File tree

197 files changed

+4536
-789
lines changed

Some content is hidden

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

197 files changed

+4536
-789
lines changed

.github/ISSUE_TEMPLATE/bug.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Bug report for the Element Android app
2-
description: Report any issues that you have found with the Element app. Please [check open issues](https://github.com/vector-im/element-android/issues) first, in case it has already been reported.
2+
description: Report any issues that you have found with the Element app. Please check open issues first, in case it has already been reported.
33
labels: [T-Defect]
44
body:
55
- type: markdown

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
blank_issues_enabled: true
2+
contact_links:
3+
- name: Enhancement or feature request
4+
url: https://github.com/vector-im/element-meta/discussions/categories/ideas
5+
about: Do you have a suggestion or feature request?
6+
- name: Element Android Community Support
7+
url: https://matrix.to/#/#element-android:matrix.org
8+
about: General Element Android support questions can be asked in the app Matrix room

.github/ISSUE_TEMPLATE/enhancement.yml

Lines changed: 0 additions & 47 deletions
This file was deleted.

.github/ISSUE_TEMPLATE/matrix-sdk.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: Matrix SDK bug or enhancement
2-
description: Report issue or ask for a feature in the [Android Matrix SDK](https://github.com/matrix-org/matrix-android-sdk2)
2+
description: "Report issue or ask for a feature in the Android Matrix SDK: https://github.com/matrix-org/matrix-android-sdk2"
33
title: "[SDK] "
44
labels: [matrix-sdk]
55

.github/workflows/build.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,9 @@ jobs:
2525
cancel-in-progress: true
2626
steps:
2727
- uses: actions/checkout@v3
28+
with:
29+
# https://github.com/actions/checkout/issues/881
30+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
2831
- name: Configure gradle
2932
uses: gradle/gradle-build-action@v2
3033
with:
@@ -46,6 +49,9 @@ jobs:
4649
cancel-in-progress: ${{ github.ref != 'refs/head/main' }}
4750
steps:
4851
- uses: actions/checkout@v3
52+
with:
53+
# https://github.com/actions/checkout/issues/881
54+
ref: ${{ github.event_name == 'pull_request' && github.event.pull_request.head.sha || github.sha }}
4955
- name: Configure gradle
5056
uses: gradle/gradle-build-action@v2
5157
with:

.github/workflows/tests.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@ on:
44
pull_request: { }
55
push:
66
branches: [ main, develop ]
7+
paths-ignore:
8+
- '.github/**'
79

810
# Enrich gradle.properties for CI/CD
911
env:

.github/workflows/triage-labelled.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -271,6 +271,31 @@ jobs:
271271
PROJECT_ID: "PVT_kwDOAM0swc4ABTXY"
272272
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
273273

274+
275+
ex_plorers:
276+
name: Add labelled issues to X-Plorer project
277+
runs-on: ubuntu-latest
278+
if: >
279+
contains(github.event.issue.labels.*.name, 'Team: Element X Feature')
280+
steps:
281+
- uses: octokit/graphql-action@v2.x
282+
id: add_to_project
283+
with:
284+
headers: '{"GraphQL-Features": "projects_next_graphql"}'
285+
query: |
286+
mutation add_to_project($projectid:ID!,$contentid:ID!) {
287+
addProjectV2ItemById(input: {projectId: $projectid contentId: $contentid}) {
288+
item {
289+
id
290+
}
291+
}
292+
}
293+
projectid: ${{ env.PROJECT_ID }}
294+
contentid: ${{ github.event.issue.node_id }}
295+
env:
296+
PROJECT_ID: "PVT_kwDOAM0swc4ALoFY"
297+
GITHUB_TOKEN: ${{ secrets.ELEMENT_BOT_TOKEN }}
298+
274299
ps_features1:
275300
name: Add labelled issues to PS features team 1
276301
runs-on: ubuntu-latest

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
.idea/caches
66
.idea/libraries
77
.idea/inspectionProfiles
8+
.idea/sonarlint
89
.idea/*.xml
910
.DS_Store
1011
/build

CHANGES.md

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,32 @@
1+
Changes in Element v1.5.26 (2023-02-22)
2+
=======================================
3+
4+
Features ✨
5+
----------
6+
- Adds MSC3824 OIDC-awareness when talking to an OIDC-enabled homeservers ([#6367](https://github.com/vector-im/element-android/issues/6367))
7+
- [Poll] Synchronize polls push rules with message push rules ([#8007](https://github.com/vector-im/element-android/issues/8007))
8+
- [Rich text editor] Add code block, quote and indentation actions ([#8045](https://github.com/vector-im/element-android/issues/8045))
9+
- [Poll] History list: details screen of a poll
10+
- [Poll] History list: enable the new settings entry in release mode ([#8056](https://github.com/vector-im/element-android/issues/8056))
11+
- [Location sharing] Show own location in map views ([#8110](https://github.com/vector-im/element-android/issues/8110))
12+
- Updates to protocol used for Sign in with QR code ([#8123](https://github.com/vector-im/element-android/issues/8123))
13+
- [Poll] Synchronize polls and message push rules ([#8130](https://github.com/vector-im/element-android/issues/8130))
14+
15+
Bugfixes 🐛
16+
----------
17+
- Android app does not show correct poll data ([#6121](https://github.com/vector-im/element-android/issues/6121))
18+
- Fix timeline always jumps to the bottom when screen goes back to foreground. ([#8090](https://github.com/vector-im/element-android/issues/8090))
19+
- [Poll] Improve rendering of poll end message when poll start event isn't available ([#8129](https://github.com/vector-im/element-android/issues/8129))
20+
- Replace hardcoded colors by theming colors on send button. ([#8142](https://github.com/vector-im/element-android/issues/8142))
21+
- [Timeline]: Editing a reply from iOS breaks the "in reply to" rendering ([#8150](https://github.com/vector-im/element-android/issues/8150))
22+
23+
Other changes
24+
-------------
25+
- Build unmerged APKs on pull request ([#8044](https://github.com/vector-im/element-android/issues/8044))
26+
- Replace 'Bots' with 'bots' inside terms_description_for_integration_manager ([#8115](https://github.com/vector-im/element-android/issues/8115))
27+
- Fix ktlint issue with fields and a new line. ([#8139](https://github.com/vector-im/element-android/issues/8139))
28+
29+
130
Changes in Element v1.5.25 (2023-02-15)
231
=======================================
332

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ buildscript {
2929
classpath 'org.sonarsource.scanner.gradle:sonarqube-gradle-plugin:3.5.0.2730'
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.0.2'
32+
classpath 'org.owasp:dependency-check-gradle:8.1.0'
3333
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.7.20"
3434
classpath "org.jetbrains.kotlinx:kotlinx-knit:0.4.0"
3535
classpath 'com.jakewharton:butterknife-gradle-plugin:10.2.3'
@@ -41,7 +41,7 @@ buildscript {
4141

4242
plugins {
4343
// ktlint Plugin
44-
id "org.jlleitschuh.gradle.ktlint" version "11.1.0"
44+
id "org.jlleitschuh.gradle.ktlint" version "11.2.0"
4545
// Detekt
4646
id "io.gitlab.arturbosch.detekt" version "1.22.0"
4747
// Ksp

0 commit comments

Comments
 (0)