mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-05 19:41:57 +02:00
commit
bbe9871ba6
3 changed files with 20 additions and 5 deletions
15
CHANGELOG.md
15
CHANGELOG.md
|
@ -1,5 +1,20 @@
|
|||
# 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
|
||||
2020-07
|
||||
|
||||
|
|
|
@ -89,8 +89,8 @@ android {
|
|||
}
|
||||
|
||||
defaultConfig {
|
||||
versionCode 588
|
||||
versionName "1.11.0"
|
||||
versionCode 589
|
||||
versionName "1.12.0"
|
||||
|
||||
applicationId "com.b44t.messenger"
|
||||
multiDexEnabled true
|
||||
|
|
|
@ -91,9 +91,9 @@ public class ConversationListActivity extends PassphraseRequiredActionBarActivit
|
|||
|
||||
// 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.
|
||||
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");
|
||||
dcContext.addDeviceMsg("update_1_10b_android", msg); // addDeviceMessage() makes sure, messages with the same id are not added twice
|
||||
//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");
|
||||
//dcContext.addDeviceMsg("update_1_10b_android", msg); // addDeviceMessage() makes sure, messages with the same id are not added twice
|
||||
|
||||
// create view
|
||||
setContentView(R.layout.conversation_list_activity);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue