Skip to content

Commit 588b3e4

Browse files
Merge branch 'develop' into feature/aris/crypto_share_room_keys_past_messages
2 parents 15c6a5e + 343322e commit 588b3e4

File tree

530 files changed

+5412
-2371
lines changed

Some content is hidden

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

530 files changed

+5412
-2371
lines changed

.editorconfig

Lines changed: 901 additions & 14 deletions
Large diffs are not rendered by default.

.github/workflows/nightly.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -330,10 +330,9 @@ jobs:
330330
if: always() && github.event_name != 'workflow_dispatch'
331331
# No concurrency required, runs every time on a schedule.
332332
steps:
333-
- uses: michaelkaye/matrix-hookshot-action@v0.3.0
333+
- uses: michaelkaye/matrix-hookshot-action@v1.0.0
334334
with:
335335
github_token: ${{ secrets.GITHUB_TOKEN }}
336-
matrix_access_token: ${{ secrets.ELEMENT_ANDROID_NOTIFICATION_ACCESS_TOKEN }}
337-
matrix_room_id: ${{ secrets.ELEMENT_ANDROID_INTERNAL_ROOM_ID }}
336+
hookshot_url: ${{ secrets.ELEMENT_ANDROID_HOOKSHOT_URL }}
338337
text_template: "{{#if '${{ github.event_name }}' == 'schedule' }}Nightly test run{{else}}Test run (on ${{ github.ref }}){{/if }}: {{#each job_statuses }}{{#with this }}{{#if completed }} {{name}} {{conclusion}} at {{completed_at}}, {{/if}}{{/with}}{{/each}}"
339338
html_template: "{{#if '${{ github.event_name }}' == 'schedule' }}Nightly test run{{else}}Test run (on ${{ github.ref }}){{/if }}: {{#each job_statuses }}{{#with this }}{{#if completed }}<br />{{icon conclusion}} {{name}} <font color='{{color conclusion}}'>{{conclusion}} at {{completed_at}} <a href=\"{{html_url}}\">[details]</a></font>{{/if}}{{/with}}{{/each}}"

.github/workflows/triage-labelled.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,6 @@ jobs:
1111
if: >
1212
contains(github.event.issue.labels.*.name, 'A-Maths') ||
1313
contains(github.event.issue.labels.*.name, 'A-Message-Pinning') ||
14-
contains(github.event.issue.labels.*.name, 'A-Threads') ||
1514
contains(github.event.issue.labels.*.name, 'A-Polls') ||
1615
contains(github.event.issue.labels.*.name, 'A-Location-Sharing') ||
1716
contains(github.event.issue.labels.*.name, 'A-Message-Bubbles') ||

.github/workflows/triage-move-review-requests.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ jobs:
77
add_design_pr_to_project:
88
name: Move PRs asking for design review to the design board
99
runs-on: ubuntu-latest
10+
# Skip in forks
11+
if: github.repository == 'vector-im/element-android'
1012
steps:
1113
- uses: octokit/[email protected]
1214
id: find_team_members
@@ -74,6 +76,8 @@ jobs:
7476
add_product_pr_to_project:
7577
name: Move PRs asking for product review to the product board
7678
runs-on: ubuntu-latest
79+
# Skip in forks
80+
if: github.repository == 'vector-im/element-android'
7781
steps:
7882
- uses: octokit/[email protected]
7983
id: find_team_members

CHANGES.md

Lines changed: 62 additions & 0 deletions

build.gradle

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ buildscript {
2222
classpath 'com.google.android.gms:oss-licenses-plugin:0.10.5'
2323
classpath "com.likethesalad.android:stem-plugin:2.0.0"
2424
classpath 'org.owasp:dependency-check-gradle:7.0.4.1'
25-
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.6.10"
25+
classpath "org.jetbrains.dokka:dokka-gradle-plugin:1.6.20"
2626
// NOTE: Do not place your application dependencies here; they belong
2727
// in the individual module build.gradle files
2828
}
@@ -106,6 +106,12 @@ allprojects {
106106
// display the corresponding rule
107107
verbose = true
108108
disabledRules = [
109+
// TODO: Re-enable these 4 rules after reformatting project
110+
"indent",
111+
"experimental:argument-list-wrapping",
112+
"max-line-length",
113+
"parameter-list-wrapping",
114+
109115
"spacing-between-declarations-with-comments",
110116
"no-multi-spaces",
111117
"experimental:spacing-between-declarations-with-annotations",

changelog.d/2396.wip

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/5079.misc

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/5262.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

changelog.d/5475.bugfix

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)