Skip to content

Commit 991ef67

Browse files
committed
Merge remote-tracking branch 'element/main'
# Conflicts: # .github/workflows/build.yml # .github/workflows/sync-from-external-sources.yml # .github/workflows/triage-labelled.yml # .github/workflows/triage-move-review-requests.yml # .github/workflows/triage-priority-bugs.yml # .github/workflows/update-gradle-wrapper.yml # README.md
2 parents e7558a6 + 493093c commit 991ef67

File tree

2,211 files changed

+4147
-3512
lines changed

Some content is hidden

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

2,211 files changed

+4147
-3512
lines changed

.github/ISSUE_TEMPLATE/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
blank_issues_enabled: true
22
contact_links:
33
- name: Enhancement or feature request
4-
url: https://github.com/vector-im/element-meta/discussions/categories/ideas
4+
url: https://github.com/element-hq/element-meta/discussions/categories/ideas
55
about: Do you have a suggestion or feature request?
66
- name: Element Android Community Support
77
url: https://matrix.to/#/#element-android:matrix.org

.github/ISSUE_TEMPLATE/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ body:
1919
- [ ] Check the update of the store descriptions (using Google Translate if necessary) to ensure that the changes are acceptable to be published to the stores.
2020
- [ ] While Weblate is locked, and after the PR from Weblate has been merged, handle all the TODOs in the main `strings.xml` file
2121
- [ ] Run the script `./tools/release/pushPlayStoreMetaData.sh`. You can check in the GooglePlay console the Activity log to check the effect.
22-
- [ ] Ensure all [the required PRs](https://github.com/vector-im/element-android/pulls?q=is%3Aopen+is%3Apr+label%3AZ-NextRelease) have been merged
22+
- [ ] Ensure all [the required PRs](https://github.com/element-hq/element-android/pulls?q=is%3Aopen+is%3Apr+label%3AZ-NextRelease) have been merged
2323
2424
### Do the release
2525

.github/PULL_REQUEST_TEMPLATE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
<!-- Please read [CONTRIBUTING.md](https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md) before submitting your pull request -->
1+
<!-- Please read [CONTRIBUTING.md](https://github.com/element-hq/element-android/blob/develop/CONTRIBUTING.md) before submitting your pull request -->
22

33
## Type of change
44

@@ -49,10 +49,10 @@ Uncomment this markdown table below and edit the last line `|||`:
4949

5050
- [ ] Changes has been tested on an Android device or Android emulator with API 21
5151
- [ ] UI change has been tested on both light and dark themes
52-
- [ ] Accessibility has been taken into account. See https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md#accessibility
52+
- [ ] Accessibility has been taken into account. See https://github.com/element-hq/element-android/blob/develop/CONTRIBUTING.md#accessibility
5353
- [ ] Pull request is based on the develop branch
54-
- [ ] Pull request includes a new file under ./changelog.d. See https://github.com/vector-im/element-android/blob/develop/CONTRIBUTING.md#changelog
54+
- [ ] Pull request includes a new file under ./changelog.d. See https://github.com/element-hq/element-android/blob/develop/CONTRIBUTING.md#changelog
5555
- [ ] Pull request includes screenshots or videos if containing UI changes
5656
- [ ] Pull request includes a [sign off](https://matrix-org.github.io/synapse/latest/development/contributing_guide.html#sign-off)
5757
- [ ] You've made a self review of your PR
58-
- [ ] If you have modified the screen flow, or added new screens to the application, you have updated the test [UiAllScreensSanityTest.allScreensTest()](https://github.com/vector-im/element-android/blob/main/vector/src/androidTest/java/im/vector/app/ui/UiAllScreensSanityTest.kt#L73)
58+
- [ ] If you have modified the screen flow, or added new screens to the application, you have updated the test [UiAllScreensSanityTest.allScreensTest()](https://github.com/element-hq/element-android/blob/main/vector/src/androidTest/java/im/vector/app/ui/UiAllScreensSanityTest.kt#L73)

.github/dependabot.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ updates:
1111
schedule:
1212
interval: "weekly"
1313
reviewers:
14-
- "vector-im/element-android-reviewers"
14+
- "element-hq/element-android-reviewers"
1515
ignore:
1616
- dependency-name: "*"
1717
# Updates for Gradle dependencies used in the app
@@ -21,7 +21,7 @@ updates:
2121
interval: "daily"
2222
open-pull-requests-limit: 200
2323
reviewers:
24-
- "vector-im/element-android-reviewers"
24+
- "element-hq/element-android-reviewers"
2525
allow:
2626
- dependency-name: "io.element.android:wysiwyg"
2727
- dependency-name: "org.matrix.rustcomponents:crypto-android"

.github/workflows/build.yml

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,27 +3,20 @@ name: APK Build
33
on:
44
pull_request: { }
55
push:
6-
branches: [ main ]
6+
branches: [ main, develop ]
77

88
# Enrich gradle.properties for CI/CD
99
env:
1010
GRADLE_OPTS: -Dorg.gradle.jvmargs="-Xmx3072m -Dfile.encoding=UTF-8 -XX:+HeapDumpOnOutOfMemoryError -XX:MaxMetaspaceSize=1g" -Dkotlin.daemon.jvm.options="-Xmx2560m" -Dkotlin.incremental=false
1111
CI_GRADLE_ARG_PROPERTIES: --stacktrace -PpreDexEnable=false --max-workers 2 --no-daemon
1212

13+
1314
jobs:
14-
release:
15+
release-fdroid:
1516
name: Build release APKs (Fdroid)
1617
runs-on: ubuntu-latest
1718
steps:
1819
- uses: actions/checkout@v3
19-
- uses: actions/cache@v3
20-
with:
21-
path: |
22-
~/.gradle/caches
23-
~/.gradle/wrapper
24-
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*', '**/gradle-wrapper.properties') }}
25-
restore-keys: |
26-
${{ runner.os }}-gradle-
2720
- name: Assemble Fdroid release apk
2821
run: ./gradlew assembleFdroidRelease $CI_GRADLE_ARG_PROPERTIES
2922
- name: Upload Fdroid release APKs
@@ -32,3 +25,17 @@ jobs:
3225
name: vector-Fdroid-release
3326
path: |
3427
vector-app/build/outputs/apk/*/release/*.apk
28+
29+
release-gplay:
30+
name: Build unsigned GPlay APKs
31+
runs-on: ubuntu-latest
32+
steps:
33+
- uses: actions/checkout@v3
34+
- name: Assemble GPlay unsigned apk
35+
run: ./gradlew clean assembleGplayRelease $CI_GRADLE_ARG_PROPERTIES
36+
- name: Upload Gplay unsigned APKs
37+
uses: actions/upload-artifact@v3
38+
with:
39+
name: vector-gplay-release-unsigned
40+
path: |
41+
vector-app/build/outputs/apk/*/release/*.apk

AUTHORS.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
A full developer contributors list can be found [here](https://github.com/vector-im/element-android/graphs/contributors).
1+
A full developer contributors list can be found [here](https://github.com/element-hq/element-android/graphs/contributors).
22

33
# Core team:
44

0 commit comments

Comments
 (0)