version bump to 2.9.8-beta
This commit is contained in:
parent
5848013a1e
commit
4a175f915d
|
@ -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
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue