mirror of
https://github.com/moparisthebest/Conversations
synced 2024-11-04 16:25:06 -05:00
version bump, changelog and one last minute change for OTR
This commit is contained in:
parent
c02ef80086
commit
4b2e06b9c3
@ -2,7 +2,7 @@
|
||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||
package="eu.siacs.conversations"
|
||||
android:versionCode="26"
|
||||
android:versionName="0.7-alpha" >
|
||||
android:versionName="0.7" >
|
||||
|
||||
<uses-sdk
|
||||
android:minSdkVersion="14"
|
||||
|
@ -1,4 +1,12 @@
|
||||
###Changelog
|
||||
####Version 0.7
|
||||
* Ability to disable notifications for single conversations
|
||||
* Merge messages in chat bubbles
|
||||
* Fixes for OpenPGP and OTR (please republish your public key)
|
||||
* Improved reliability on sending messages
|
||||
* Join password protected Conferences
|
||||
* Configurable font size
|
||||
* Expert options for encryption
|
||||
|
||||
####Version 0.6
|
||||
* Support for server side avatars
|
||||
|
@ -17,7 +17,7 @@ public abstract class AbstractGenerator {
|
||||
"jabber:x:conference", "http://jabber.org/protocol/caps",
|
||||
"http://jabber.org/protocol/disco#info",
|
||||
"urn:xmpp:avatar:metadata+notify" };
|
||||
public final String IDENTITY_NAME = "Conversations 0.6";
|
||||
public final String IDENTITY_NAME = "Conversations 0.7";
|
||||
public final String IDENTITY_TYPE = "phone";
|
||||
|
||||
public String getCapHash() {
|
||||
|
@ -115,7 +115,7 @@ public class XmppConnectionService extends Service {
|
||||
public void onContactStatusChanged(Contact contact, boolean online) {
|
||||
Conversation conversation = find(getConversations(), contact);
|
||||
if (conversation != null) {
|
||||
conversation.resetOtrSession();
|
||||
conversation.endOtrIfNeeded();
|
||||
if (online && (contact.getPresences().size() == 1)) {
|
||||
sendUnsendMessages(conversation);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user