mirror of
https://github.com/deltachat/deltachat-android.git
synced 2025-10-06 03:49:58 +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
|
# 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
|
||||||
|
|
||||||
|
|
|
@ -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
|
||||||
|
|
|
@ -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);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue