version bump to 2.5.7 + changelog

This commit is contained in:
Daniel Gultsch 2019-08-29 12:14:01 +02:00
parent e49473007e
commit 7d6bd540d9
3 changed files with 8 additions and 5 deletions

View file

@ -1,5 +1,9 @@
# Changelog # Changelog
### Version 2.5.7
* fixed crash when scanning QR codes on Android 6 and lower
* when sharing a message from and to Conversations insert it as quote
### Version 2.5.6 ### Version 2.5.6
* fixes for Jingle file transfer * fixes for Jingle file transfer
* fixed some rare crashes * fixed some rare crashes

View file

@ -6,7 +6,7 @@ buildscript {
jcenter() jcenter()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:3.4.1' classpath 'com.android.tools.build:gradle:3.4.2'
} }
} }
@ -83,8 +83,8 @@ android {
defaultConfig { defaultConfig {
minSdkVersion 16 minSdkVersion 16
targetSdkVersion 28 targetSdkVersion 28
versionCode 336 versionCode 337
versionName "2.5.6" versionName "2.5.7"
archivesBaseName += "-$versionName" archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations" applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId resValue "string", "applicationId", applicationId

View file

@ -20,7 +20,6 @@ public class AboutActivity extends AppCompatActivity {
setContentView(R.layout.activity_about); setContentView(R.layout.activity_about);
setSupportActionBar(findViewById(R.id.toolbar)); setSupportActionBar(findViewById(R.id.toolbar));
configureActionBar(getSupportActionBar()); configureActionBar(getSupportActionBar());
setTitle(getString(R.string.title_activity_about_x, getString(R.string.app_name setTitle(getString(R.string.title_activity_about_x, getString(R.string.app_name)));
)));
} }
} }