~singpolyma/cheogram-android

Merge branch 'master' of github.com:iNPUTmice/Conversations

* '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
Add new screenshots to doap
Merge branch 'fastlane'

* fastlane:
  Screenshot add contact options speeddial
  startConversation screenshot
  Draft new full description
  Generate a screenshot with fastlane
Merge branch 'for-singpolyma' of https://gitea.angry.im/PeterCxy/cheogram

* 'for-singpolyma' of https://gitea.angry.im/PeterCxy/cheogram:
  ConnectionService: handle disconnected state correctly
  ConnectionService: implement onReject()
  ConnectionService: miscellaneous fixes
  ConnectionService: Dialer UI integration for incoming calls
  ConnectionService: fix unchecked type assignments
Screenshot add contact options speeddial
startConversation screenshot
Add dialler screenshot
Draft new full description
Generate a screenshot with fastlane
Point to new screenshot
Remove upstream fastlane data, start our new set
Some fixes for playstore build
ed988605 — Daniel Gultsch 1 year, 8 months ago
pulled translations from transifex
ConnectionService: handle disconnected state correctly

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.
Update generic parts of the DOAP file
ConnectionService: implement onReject()

Forgot this for incoming calls
Next