prepare 1.27 (#2200)

* update changelog for 1.27

* bump version to 1.27.0
This commit is contained in:
bjoern 2022-01-23 23:59:37 +01:00 committed by GitHub
parent 38fe471604
commit 6ea4b2dbcd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 29 additions and 3 deletions

View file

@ -1,5 +1,31 @@
# Delta Chat Android Changelog # Delta Chat Android Changelog
## v1.27.0
2022-01
* add option to create encrypted database at "Add Account / Advanced",
the database passphrase is generated automatically and is stored in the system's keychain,
subsequent versions will probably get more options to handle passphrases
* add initial support for Webxdc extensions
* add "Advanced / Developer Mode" to help on creating Webxdc extensions
* add writing support for supported mailinglist types; other mailinglist types stay read-only
* "Message Info" show routes
* explicit "Watch Inbox folder" and "Watch DeltaChat folder" settings no longer required;
the folders are watched automatically as needed
* detect correctly signed messages from Thunderbird and show them as such
* synchronize Seen status across devices
* more reliable group memberlist and group avatar updates
* recognize MS Exchange read receipts as such
* fix leaving groups
* fix unread count issues in account switcher
* fix crash when selecting thumbnail image
* fix add POI if the user cannot send in a chat
* fix "Reply Privately" in contact request chats
* add Bulgarian translations, update other translations and local help
* update provider-database
* update to core71
## v1.26.2 ## v1.26.2
2021-12 2021-12

View file

@ -96,8 +96,8 @@ android {
useLibrary 'org.apache.http.legacy' useLibrary 'org.apache.http.legacy'
defaultConfig { defaultConfig {
versionCode 621 versionCode 622
versionName "1.26.2" versionName "1.27.0"
applicationId "com.b44t.messenger" applicationId "com.b44t.messenger"
multiDexEnabled true multiDexEnabled true
@ -244,4 +244,4 @@ String getNdkArch() {
def arch = properties.getProperty('NDK_ARCH') def arch = properties.getProperty('NDK_ARCH')
if (arch == null) return "\"\"" if (arch == null) return "\"\""
return "\"$arch\"" return "\"$arch\""
} }