version bump to 0.10
This commit is contained in:
parent
fc8bd64bfd
commit
e89e54a04a
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,4 +1,14 @@
|
||||||
###Changelog
|
###Changelog
|
||||||
|
####Version 0.10
|
||||||
|
* Support for Message Archive Management
|
||||||
|
* Dynamically load message history
|
||||||
|
* Ability to block contacts
|
||||||
|
* New UI to verify fingerprints
|
||||||
|
* Ability to change password on server
|
||||||
|
* removed stream compression
|
||||||
|
* quiet hours
|
||||||
|
* fixed connection issues on ipv6 servers
|
||||||
|
|
||||||
####Version 0.9.3
|
####Version 0.9.3
|
||||||
* bug fixes
|
* bug fixes
|
||||||
|
|
||||||
|
|
|
@ -46,8 +46,8 @@ android {
|
||||||
defaultConfig {
|
defaultConfig {
|
||||||
minSdkVersion 14
|
minSdkVersion 14
|
||||||
targetSdkVersion 19
|
targetSdkVersion 19
|
||||||
versionCode 40
|
versionCode 41
|
||||||
versionName "0.9.3"
|
versionName "0.10"
|
||||||
}
|
}
|
||||||
|
|
||||||
compileOptions {
|
compileOptions {
|
||||||
|
|
|
@ -23,7 +23,7 @@ public abstract class AbstractGenerator {
|
||||||
"http://jabber.org/protocol/disco#info",
|
"http://jabber.org/protocol/disco#info",
|
||||||
"urn:xmpp:avatar:metadata+notify",
|
"urn:xmpp:avatar:metadata+notify",
|
||||||
"urn:xmpp:ping"};
|
"urn:xmpp:ping"};
|
||||||
public final String IDENTITY_NAME = "Conversations 0.9.3";
|
public final String IDENTITY_NAME = "Conversations 0.10";
|
||||||
public final String IDENTITY_TYPE = "phone";
|
public final String IDENTITY_TYPE = "phone";
|
||||||
|
|
||||||
private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
|
private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss.SSS'Z'", Locale.US);
|
||||||
|
|
Loading…
Reference in a new issue