116dde9
Merge branch 'master' of github.com:iNPUTmice/Conversations
Click to expand commit body
* 'master' of github.com:iNPUTmice/Conversations:
version bump to 2.10.5 + changelog
retrieve uncompressed file size in HEAD request
disable knownFileSize on re-download for pgp encrypted files
limit posh files to 10k
ensure downloaded file does not exceed Content-Length reported by HEAD
Stephen Paul Weber
created
ed216fe
Fix crash on Android < 23 where there is not dialler stuff
f3b3202
Merge branch 'master' of github.com:iNPUTmice/Conversations
Click to expand commit body
* 'master' of github.com:iNPUTmice/Conversations:
bump version code
remove footnote hint in translations
catch two rare exceptions to fix crash
version bump to 2.10.4 + changelog
pulled translations from transifex
remove hint about yearly fee for server
fix ability to use GoogleMaps ShareLocationPlugin
pulled translations from transifex
version bump to 2.10.3 + changelog
Stephen Paul Weber
created
95e3a67
retrieve uncompressed file size in HEAD request
Daniel Gultsch
created
eadb1e1
disable knownFileSize on re-download for pgp encrypted files
needed on targetSDK >= 30 for microphone access. Without this, we cannot
access the microphone in dialer integration mode since we are not the
foreground app.
f62e9f1
Merge branch 'master' of github.com:iNPUTmice/Conversations
Click to expand commit body
* 'master' of github.com:iNPUTmice/Conversations:
pulled translations from transifex
catch security exception when importing backup
pulled translations from transifex
bump libraries
show jid only for incoming calls during ringing
version bump to 2.10.3-beta.2
Enable WebRTC-BindUsingInterfaceName/Enabled/
pulled translations from transifex
be smarter about what files can be deleted
use libwebrtc m99
allow deletion of all files
437002d
ConnectionService: handle disconnected state correctly
Click to expand commit body
onDisconnect() will only be called when the user manually requests a
disconnect. When the call is disconnected by the rtp connection itself,
the call won't be cleaned up and the system will be stuck in an in-call
state. Handle this correctly by moving the clean-up code to a close()
function, and calling that function instead when we disconnect.
Note that we cannot call the cleanup routine destroy() from the
onStateChanged() function, because it seems that this triggers a
deadlock somewhere down the line, probably in the calling
account-related telephony code. Doing a close() function mirrors what is
done in the default TelephonyConnection implementation for RIL-based
calls.