mirror of
https://github.com/chatmail/core.git
synced 2026-05-22 08:16:32 +03:00
prepare beta8
This commit is contained in:
32
CHANGELOG.md
32
CHANGELOG.md
@@ -1,5 +1,37 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## 1.0.0-beta.8
|
||||||
|
|
||||||
|
- now uses async-email/async-imap as the new base
|
||||||
|
which makes imap-idle interruptible and thus fixes
|
||||||
|
several issues around the imap thread being in zombie state .
|
||||||
|
thanks @dignifiedquire, @hpk42 and @link2xt.
|
||||||
|
|
||||||
|
- fixes imap-protocol parsing bugs that lead to infinitely
|
||||||
|
repeated crashing while trying to receive messages with
|
||||||
|
a subjec that contained non-utf8. thanks @link2xt
|
||||||
|
|
||||||
|
- fixed logic to find encryption subkey -- previously
|
||||||
|
delta chat would use the primary key for encryption
|
||||||
|
(which works with RSA but not ECC). thanks @link2xt
|
||||||
|
|
||||||
|
- introduce a new device chat where core and UIs can
|
||||||
|
add "device" messages. Android uses it for an initial
|
||||||
|
welcome message. thanks @r10s
|
||||||
|
|
||||||
|
- fix time smearing (when two message are virtually send
|
||||||
|
in the same second, there would be misbehaviour because
|
||||||
|
we didn't persist smeared time). thanks @r10s
|
||||||
|
|
||||||
|
- fix double-dotted extensions like .html.zip or .tar.gz
|
||||||
|
to not mangle them when creating blobfiles. thanks @flub
|
||||||
|
|
||||||
|
- fix backup/exports where the wrong sql file would be modified,
|
||||||
|
leading to problems when exporting twice. thanks @hpk42
|
||||||
|
|
||||||
|
- several other little fixes and improvements
|
||||||
|
|
||||||
|
|
||||||
## 1.0.0-beta.7
|
## 1.0.0-beta.7
|
||||||
|
|
||||||
- fix location-streaming #782
|
- fix location-streaming #782
|
||||||
|
|||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -608,7 +608,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.0.0-beta.7"
|
version = "1.0.0-beta.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"async-imap 0.1.1 (git+https://github.com/async-email/async-imap)",
|
"async-imap 0.1.1 (git+https://github.com/async-email/async-imap)",
|
||||||
"async-std 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
"async-std 1.1.0 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
@@ -683,9 +683,9 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.0.0-beta.7"
|
version = "1.0.0-beta.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"deltachat 1.0.0-beta.7",
|
"deltachat 1.0.0-beta.8",
|
||||||
"deltachat-provider-database 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"deltachat-provider-database 0.2.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
"human-panic 1.0.1 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
"libc 0.2.65 (registry+https://github.com/rust-lang/crates.io-index)",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.0.0-beta.7"
|
version = "1.0.0-beta.8"
|
||||||
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
license = "MPL"
|
license = "MPL"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.0.0-beta.7"
|
version = "1.0.0-beta.8"
|
||||||
description = "Deltachat FFI"
|
description = "Deltachat FFI"
|
||||||
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
|
|||||||
Reference in New Issue
Block a user