Merge pull request #1517 from deltachat/prep-1.12

Prep 1.12
This commit is contained in:
bjoern 2020-07-30 18:30:47 +02:00 committed by GitHub
commit bbe9871ba6
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 20 additions and 5 deletions

View file

@ -1,5 +1,20 @@
# Delta Chat Android Changelog # Delta Chat Android Changelog
## v1.12.0
2020-07
* show a device message when the password was changed on the server
* videochats introduced as experimental feature
* show experimental disappearing-messags state in chat's title bar
* improve sending large messages
* improve receiving messages
* improve error handling when there is no network
* use correct aspect ratio of background images
* fix sending umcompressed images
* fix emojis for android 4
* more bug fixes
## v1.10.5 ## v1.10.5
2020-07 2020-07

View file

@ -89,8 +89,8 @@ android {
} }
defaultConfig { defaultConfig {
versionCode 588 versionCode 589
versionName "1.11.0" versionName "1.12.0"
applicationId "com.b44t.messenger" applicationId "com.b44t.messenger"
multiDexEnabled true multiDexEnabled true

View file

@ -91,9 +91,9 @@ public class ConversationListActivity extends PassphraseRequiredActionBarActivit
// update messages - for new messages, do not reuse or modify strings but create new ones. // update messages - for new messages, do not reuse or modify strings but create new ones.
// it is not needed to keep all past update messages, however, when deleted, also the strings should be deleted. // it is not needed to keep all past update messages, however, when deleted, also the strings should be deleted.
DcMsg msg = new DcMsg(dcContext, DcMsg.DC_MSG_TEXT); //DcMsg msg = new DcMsg(dcContext, DcMsg.DC_MSG_TEXT);
msg.setText(getString(R.string.update_1_10_android) + "\n\n" + "https://delta.chat/en/2020-06-24-releases"); //msg.setText(getString(R.string.update_1_10_android) + "\n\n" + "https://delta.chat/en/2020-06-24-releases");
dcContext.addDeviceMsg("update_1_10b_android", msg); // addDeviceMessage() makes sure, messages with the same id are not added twice //dcContext.addDeviceMsg("update_1_10b_android", msg); // addDeviceMessage() makes sure, messages with the same id are not added twice
// create view // create view
setContentView(R.layout.conversation_list_activity); setContentView(R.layout.conversation_list_activity);