Skip to content

Instantly share code, notes, and snippets.

@hpk42
Created December 14, 2019 00:41
Show Gist options
  • Select an option

  • Save hpk42/7423e07d6cb3ae6a4a80bf2df27fa05b to your computer and use it in GitHub Desktop.

Select an option

Save hpk42/7423e07d6cb3ae6a4a80bf2df27fa05b to your computer and use it in GitHub Desktop.
commit 8fa175f36d77fa80ceae200db3341076506a6449
Author: holger krekel <holger@merlinux.eu>
Date: Sat Dec 14 00:22:09 2019 +0100
changelog and version up to 1.0.0-beta.16
diff --git a/CHANGELOG.md b/CHANGELOG.md
index ad3c015..4024abc 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,34 @@
# Changelog
+## 1.0.0-beta.16
+
+- alleviate login problems with providers which only
+ support RSA1024 keys by switching back from Rustls
+ to native-tls, by using the new async-email/async-native-tls
+ crate from @dignifiedquire. thanks @link2xt.
+
+- introduce per-contact profile images to send out
+ own profile image heuristically, and fix sending
+ out of profile images in "in-prepare" groups.
+ this also extends the Chat-spec that is maintained
+ in core to specify Chat-Group-Image and Chat-Group-Avatar
+ headers. thanks @r10s and @hpk42.
+
+- fix merging of protected headers from the encrypted
+ to the unencrypted parts, now not happening recursively
+ anymore. thanks @hpk and @r10s
+
+- fix/optimize autocrypt gossip headers to only get
+ sent when there are more than 2 people in a chat.
+ thanks @link2xt
+
+- fix displayname to use the authenticated name
+ when available (displayname as coming from contacts
+ themselves). thanks @simon-laux
+
+- introduce preliminary support for offline autoconfig
+ for nauta provider. thanks @hpk42 @r10s
+
## 1.0.0-beta.15
- fix #994 attachment appeared doubled in chats (and where actually
diff --git a/Cargo.toml b/Cargo.toml
index ad6a0af..79b6da1 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deltachat"
-version = "1.0.0-beta.15"
+version = "1.0.0-beta.16"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018"
license = "MPL"
diff --git a/deltachat-ffi/Cargo.toml b/deltachat-ffi/Cargo.toml
index 6c5f9d6..fd028d9 100644
--- a/deltachat-ffi/Cargo.toml
+++ b/deltachat-ffi/Cargo.toml
@@ -1,6 +1,6 @@
[package]
name = "deltachat_ffi"
-version = "1.0.0-beta.15"
+version = "1.0.0-beta.16"
description = "Deltachat FFI"
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
edition = "2018"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment