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

Commit 191faef

Browse files
committed
Merge branch 'release/v0.8.7'
2 parents c0c7146 + b61465d commit 191faef

File tree

83 files changed

+4556
-964
lines changed

Some content is hidden

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

83 files changed

+4556
-964
lines changed

CHANGES.rst

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,33 @@
1+
Changes in Riot 0.8.7 (2018-04-25)
2+
===================================================
3+
4+
Improvements:
5+
* Disable sending analytics by default on the F-Droid version
6+
7+
Bug Fix:
8+
* Fix issue on Sticker rendering (#2175)
9+
* Fix infinite loader issue (#2178)
10+
11+
Changes in Riot 0.8.6 (2018-04-20)
12+
===================================================
13+
14+
Features:
15+
* Render stickers in the timeline (#2097).
16+
17+
Improvements:
18+
* Update matrix-sdk.aar lib (v0.9.3).
19+
* Notifications: make them user friendly again (#2130).
20+
* Add Notification privacy screen (PR #2152).
21+
* Hide "Show devices list" for local contacts who are not matrix users (#2153).
22+
* Login Activity: Code cleaning.
23+
24+
Bug Fix:
25+
* Tapping on a room pill should not automatically join it (#2098).
26+
* Notifications: Make the notification for messages no more sticky (PR #2148).
27+
28+
Build:
29+
* Update to SDK 27.
30+
131
Changes in Riot 0.8.5 (2018-03-31)
232
===================================================
333

build.gradle

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

1515
// global properties used in sub modules
1616
ext {
17-
versionCodeProp = 80500
18-
versionNameProp = "0.8.5"
17+
versionCodeProp = 80700
18+
versionNameProp = "0.8.7"
1919
versionBuild = System.getenv("BUILD_NUMBER") as Integer ?: 0
2020
buildNumberProp = "${versionBuild}"
2121
}

vector/build.gradle

Lines changed: 12 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
apply plugin: 'com.android.application'
22

33
android {
4-
compileSdkVersion 26
4+
compileSdkVersion 27
55
buildToolsVersion '26.0.2'
66

77
packagingOptions {
@@ -142,10 +142,10 @@ dependencies {
142142

143143
compile 'me.leolin:ShortcutBadger:1.1.2@aar'
144144

145-
compile 'com.android.support:appcompat-v7:26.1.0'
146-
compile 'com.android.support:design:26.1.0'
147-
compile 'com.android.support:cardview-v7:26.1.0'
148-
compile 'com.android.support:recyclerview-v7:26.1.0'
145+
compile 'com.android.support:appcompat-v7:27.1.1'
146+
compile 'com.android.support:design:27.1.1'
147+
compile 'com.android.support:cardview-v7:27.1.1'
148+
compile 'com.android.support:recyclerview-v7:27.1.1'
149149
compile 'com.jakewharton:butterknife:8.5.1'
150150
annotationProcessor 'com.jakewharton:butterknife-compiler:8.5.1'
151151

@@ -156,14 +156,18 @@ dependencies {
156156

157157
compile 'pl.droidsonroids.gif:android-gif-drawable:1.2.+'
158158

159+
// Use Glide library to display image (Gif supported)
160+
compile 'com.github.bumptech.glide:glide:4.7.1'
161+
annotationProcessor 'com.github.bumptech.glide:compiler:4.7.1'
162+
159163
compile 'com.googlecode.libphonenumber:libphonenumber:8.0.1'
160164

161165
/************* Matrix SDK management **************/
162166
// update settings.gradle
163167
// use the matrix SDK as external lib
164168
compile(name: 'matrix-sdk', ext: 'aar')
165169
// use the matrix SDK as a sub project
166-
// compile project(':matrix-sdk')
170+
//compile project(':matrix-sdk')
167171
compile(name: 'olm-sdk', ext: 'aar')
168172

169173
/************* jitsi **************/
@@ -179,7 +183,6 @@ dependencies {
179183
compile 'com.squareup.okio:okio:1.13.0'
180184
compile 'org.webkit:android-jsc:r174650'
181185

182-
183186
compile(name: 'jitsi-sdk', ext: 'aar')
184187
compile(name: 'react-native-background-timer', ext: 'aar')
185188
compile(name: 'react-native-fetch-blob', ext: 'aar')
@@ -201,8 +204,8 @@ dependencies {
201204
/************* flavors management **************/
202205

203206
// app flavor only
204-
appCompile 'com.google.firebase:firebase-core:11.6.2'
205-
appCompile 'com.google.firebase:firebase-messaging:11.6.2'
207+
appCompile 'com.google.firebase:firebase-core:11.8.0'
208+
appCompile 'com.google.firebase:firebase-messaging:11.8.0'
206209

207210
// fdroid flavor only
208211
}

vector/libs/matrix-sdk.aar

4.53 KB
Binary file not shown.
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<bool name="default_settings_disable_analytics">false</bool>
5+
6+
</resources>
Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<?xml version="1.0" encoding="utf-8"?>
2+
<resources>
3+
4+
<bool name="default_settings_disable_analytics">true</bool>
5+
6+
</resources>

0 commit comments

Comments
 (0)