version bump to 2.9.8-beta
This commit is contained in:
parent
5848013a1e
commit
4a175f915d
|
@ -1,5 +1,9 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
### Version 2.9.8
|
||||||
|
|
||||||
|
* Verify A/V calls with preexisting OMEMO sessions
|
||||||
|
|
||||||
### Version 2.9.7
|
### Version 2.9.7
|
||||||
|
|
||||||
* Ability to select incoming call ringtone
|
* Ability to select incoming call ringtone
|
||||||
|
|
|
@ -91,8 +91,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 21
|
minSdkVersion 21
|
||||||
targetSdkVersion 29
|
targetSdkVersion 29
|
||||||
versionCode 42000
|
versionCode 42001
|
||||||
versionName "2.9.7"
|
versionName "2.9.8-beta"
|
||||||
archivesBaseName += "-$versionName"
|
archivesBaseName += "-$versionName"
|
||||||
applicationId "eu.siacs.conversations"
|
applicationId "eu.siacs.conversations"
|
||||||
resValue "string", "applicationId", applicationId
|
resValue "string", "applicationId", applicationId
|
||||||
|
|
|
@ -691,6 +691,7 @@ public class XmppConnectionService extends Service {
|
||||||
}
|
}
|
||||||
case TorServiceUtils.ACTION_STATUS:
|
case TorServiceUtils.ACTION_STATUS:
|
||||||
final String status = intent.getStringExtra(TorServiceUtils.EXTRA_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)) {
|
if ("ON".equals(status)) {
|
||||||
handleOrbotStartedEvent();
|
handleOrbotStartedEvent();
|
||||||
return START_STICKY;
|
return START_STICKY;
|
||||||
|
|
Loading…
Reference in a new issue