Skip to content
This repository was archived by the owner on Jan 30, 2025. It is now read-only.

Commit a49056e

Browse files
committed
Merge branch 'release/0.8.11'
2 parents 10c3e52 + 668c015 commit a49056e

File tree

259 files changed

+10835
-9024
lines changed

Some content is hidden

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

259 files changed

+10835
-9024
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,3 +11,5 @@
1111

1212
.gradle
1313
/local.properties
14+
15+
/tmp

.travis.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,4 +43,7 @@ before_script:
4343
- /bin/sh ./set_debug_env.sh
4444

4545
# Just build the project for now
46-
script: ./gradlew clean lintAppRelease assembleAppRelease --stacktrace
46+
script:
47+
- ./gradlew clean lintAppRelease assembleAppRelease --stacktrace
48+
- ./tools/check/check_code_quality.sh
49+
- ./tools/travis/check_pr.sh

AUTHORS.rst

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,3 +39,6 @@ Chris Tarazi <tarazichris at gmail.com>
3939

4040
Safa AlFulaij <safa1996alfulaij at gmail.com>
4141
* PR #1934: Fix some plural messages.
42+
43+
Isa Cichon <isa4 at posteo.net>
44+
* Add spacing to device keys

CHANGES.rst

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,35 @@
1+
Changes in Riot 0.8.11 (2018-07-03)
2+
===================================================
3+
4+
Features:
5+
- Re-request keys manually for encrypted events (#2319)
6+
- Add option to send voice message to a room, using a third application to record message.
7+
To enable in the Labs settings (PR #1762)
8+
9+
Improvements:
10+
- Update matrix-sdk.aar lib (v0.9.6).
11+
- New Floating Action Menu in Home screen (PR #2335)
12+
- Add spacing to device keys (#2314)
13+
- use apply() instead of commit() to save shared prefs (#2231)
14+
- Do not ring if "Do Not Disturb" is active (#1072)
15+
- Manage the "consent not given" error when declining a room invite
16+
17+
Other changes:
18+
- Remove "Matrix application" activation from the Lab section in the settings (#2341)
19+
20+
Bugfix:
21+
- Remove black borders on 18:9 phone (#2063)
22+
- Auto dismiss the join/reject room notification when user select an action (#2354)
23+
- Fix some crashes reported by the PlayStore (#2380, #2382, #2383, #2395)
24+
- Fix issues in UrlPreviews (#2312)
25+
26+
Translations:
27+
- Galician thanks to Miguel Branco
28+
29+
Build:
30+
- Add script to check code quality
31+
- Travis will now check if CHANGES.rst has been modified for each PR
32+
133
Changes in Riot 0.8.10 (2018-01-06)
234
===================================================
335

CONTRIBUTING.rst

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ use github's pull request workflow to review the contribution, and either ask
3030
you to make any refinements needed or merge it and make them ourselves. The
3131
changes will then land on master when we next do a release.
3232

33-
We use Jenkins for continuous integration (http://matrix.org/jenkins), and
34-
typically all pull requests get automatically tested Jenkins: if your change breaks the build, Jenkins will yell about it in #matrix-dev:matrix.org so please lurk there and keep an eye open.
33+
All pull requests are built by TravisCI. Please fix any issue found by TravisCI
34+
on your PR
3535

3636
Code style
3737
~~~~~~~~~~
@@ -54,6 +54,12 @@ description of the area(s) you've worked on. Also, we sometimes have swag to
5454
give away to contributors - if you feel that Matrix-branded apparel is missing
5555
from your life, please mail us your shipping address to matrix at matrix.org and we'll try to fix it :)
5656

57+
Changelog
58+
~~~~~~~~~
59+
60+
Please add at least one line on the top of file CHANGES.rst (in the correct section)
61+
to describe what you've done on the code (bugfix, new feature, etc.)
62+
5763
Sign off
5864
~~~~~~~~
5965

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Riot
1+
Riot-Android [![Jenkins](https://img.shields.io/jenkins/s/https/matrix.org/jenkins/view/MatrixView/job/VectorAndroidDevelop.svg)](https://matrix.org/jenkins/view/MatrixView/job/VectorAndroidDevelop/) [![Weblate](https://translate.riot.im/widgets/riot-android/-/svg-badge.svg)](https://translate.riot.im/engage/riot-android/?utm_source=widget)
22
=======
33

44
Riot is an Android Matrix client.

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,8 @@ buildscript {
1919

2020
// global properties used in sub modules
2121
ext {
22-
versionCodeProp = 81000
23-
versionNameProp = "0.8.10"
22+
versionCodeProp = 81100
23+
versionNameProp = "0.8.11"
2424
versionBuild = System.getenv("BUILD_NUMBER") as Integer ?: 0
2525
buildNumberProp = "${versionBuild}"
2626
}

build_matrix_sdk_lib.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ echo remove sdk folder
77
rm -rf matrix-android-sdk
88

99
echo clone the git folder
10-
git clone -b master https://github.com/matrix-org/matrix-android-sdk
10+
git clone -b master https://github.com/matrix-org/matrix-android-sdk
1111

1212
cd matrix-android-sdk
1313

build_matrix_sdk_lib_develop.sh

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
#!/bin/bash
2+
3+
echo "Save current dir"
4+
currentDir=`pwd`
5+
6+
echo "up dir"
7+
cd ..
8+
9+
echo "remove sdk folder"
10+
rm -rf matrix-android-sdk
11+
12+
echo "clone the matrix-android-sdk repository, and checkout develop branch"
13+
git clone -b develop https://github.com/matrix-org/matrix-android-sdk
14+
15+
cd matrix-android-sdk
16+
17+
echo "Build matrix sdk from source"
18+
./gradlew clean assembleRelease
19+
20+
cd ${currentDir}
21+
22+
echo "Copy freshly built matrix sdk to the libs folder"
23+
# Ensure the lib is updated by removing the previous one
24+
rm vector/libs/matrix-sdk.aar
25+
26+
cp ../matrix-android-sdk/matrix-sdk/build/outputs/aar/matrix-sdk-release-*.aar vector/libs/matrix-sdk.aar

google-services.json

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

0 commit comments

Comments
 (0)