version bump to 2.9.8-beta

This commit is contained in:
Daniel Gultsch 2021-03-04 09:25:20 +01:00
parent 5848013a1e
commit 4a175f915d
3 changed files with 7 additions and 2 deletions

View file

@ -1,5 +1,9 @@
# Changelog
### Version 2.9.8
* Verify A/V calls with preexisting OMEMO sessions
### Version 2.9.7
* Ability to select incoming call ringtone

View file

@ -91,8 +91,8 @@ android {
defaultConfig {
minSdkVersion 21
targetSdkVersion 29
versionCode 42000
versionName "2.9.7"
versionCode 42001
versionName "2.9.8-beta"
archivesBaseName += "-$versionName"
applicationId "eu.siacs.conversations"
resValue "string", "applicationId", applicationId

View file

@ -691,6 +691,7 @@ public class XmppConnectionService extends Service {
}
case TorServiceUtils.ACTION_STATUS:
final String status = intent.getStringExtra(TorServiceUtils.EXTRA_STATUS);
//TODO port and host are in 'extras' - but this may not be a reliable source?
if ("ON".equals(status)) {
handleOrbotStartedEvent();
return START_STICKY;