mirror of
https://github.com/chatmail/core.git
synced 2026-05-07 08:56:30 +03:00
prepare 1.95 (#3617)
* update changelog for 1.95.0 * bump version to 1.95.0
This commit is contained in:
18
CHANGELOG.md
18
CHANGELOG.md
@@ -2,22 +2,28 @@
|
|||||||
|
|
||||||
## Unreleased
|
## Unreleased
|
||||||
|
|
||||||
|
### API-Changes
|
||||||
|
|
||||||
|
### Changes
|
||||||
|
|
||||||
|
### Fixes
|
||||||
|
|
||||||
|
|
||||||
|
## 1.95.0
|
||||||
|
|
||||||
### API-Changes
|
### API-Changes
|
||||||
- jsonrpc: add `mailingListAddress` property to `FullChat` #3607
|
- jsonrpc: add `mailingListAddress` property to `FullChat` #3607
|
||||||
- jsonrpc: add `MessageNotificationInfo` & `messageGetNotificationInfo()` #3614
|
- jsonrpc: add `MessageNotificationInfo` & `messageGetNotificationInfo()` #3614
|
||||||
- jsonrpc: add `chat_get_neighboring_media` function #3610
|
- jsonrpc: add `chat_get_neighboring_media` function #3610
|
||||||
|
|
||||||
### Added
|
|
||||||
- `dclogin:` scheme to allow configuration from a qr code (data inside qrcode, contrary to `dcaccount:` which points to an api to create an account) #3541
|
|
||||||
|
|
||||||
### Changes
|
### Changes
|
||||||
|
- added `dclogin:` scheme to allow configuration from a qr code
|
||||||
|
(data inside qrcode, contrary to `dcaccount:` which points to an API to create an account) #3541
|
||||||
- truncate incoming messages by lines instead of just length #3480
|
- truncate incoming messages by lines instead of just length #3480
|
||||||
- emit separate `DC_EVENT_MSGS_CHANGED` for each expired message,
|
- emit separate `DC_EVENT_MSGS_CHANGED` for each expired message,
|
||||||
and `DC_EVENT_WEBXDC_INSTANCE_DELETED` when a message contains a webxdc #3605
|
and `DC_EVENT_WEBXDC_INSTANCE_DELETED` when a message contains a webxdc #3605
|
||||||
- enable `bcc_self` by default #3612
|
- enable `bcc_self` by default #3612
|
||||||
|
|
||||||
### Fixes
|
|
||||||
|
|
||||||
|
|
||||||
## 1.94.0
|
## 1.94.0
|
||||||
|
|
||||||
@@ -30,7 +36,7 @@
|
|||||||
and `dc_event_emitter_unref()` should be used instead of
|
and `dc_event_emitter_unref()` should be used instead of
|
||||||
`dc_accounts_event_emitter_unref`.
|
`dc_accounts_event_emitter_unref`.
|
||||||
- add `dc_contact_was_seen_recently()` #3560
|
- add `dc_contact_was_seen_recently()` #3560
|
||||||
- Fix get_connectivity_html and get_encrinfo futures not being Send. See rust-lang/rust#101650 for more information
|
- Fix `get_connectivity_html` and `get_encrinfo` futures not being Send. See rust-lang/rust#101650 for more information
|
||||||
- jsonrpc: add functions: #3586, #3587, #3590
|
- jsonrpc: add functions: #3586, #3587, #3590
|
||||||
- `deleteChat()`
|
- `deleteChat()`
|
||||||
- `getChatEncryptionInfo()`
|
- `getChatEncryptionInfo()`
|
||||||
|
|||||||
6
Cargo.lock
generated
6
Cargo.lock
generated
@@ -893,7 +893,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"ansi_term",
|
"ansi_term",
|
||||||
"anyhow",
|
"anyhow",
|
||||||
@@ -965,7 +965,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat-jsonrpc"
|
name = "deltachat-jsonrpc"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"async-channel",
|
"async-channel",
|
||||||
@@ -993,7 +993,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"deltachat",
|
"deltachat",
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat"
|
name = "deltachat"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
license = "MPL-2.0"
|
license = "MPL-2.0"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat_ffi"
|
name = "deltachat_ffi"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
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"
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "deltachat-jsonrpc"
|
name = "deltachat-jsonrpc"
|
||||||
version = "1.94.0"
|
version = "1.95.0"
|
||||||
description = "DeltaChat JSON-RPC API"
|
description = "DeltaChat JSON-RPC API"
|
||||||
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
authors = ["Delta Chat Developers (ML) <delta@codespeak.net>"]
|
||||||
edition = "2021"
|
edition = "2021"
|
||||||
|
|||||||
@@ -47,5 +47,5 @@
|
|||||||
},
|
},
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"types": "dist/deltachat.d.ts",
|
"types": "dist/deltachat.d.ts",
|
||||||
"version": "1.94.0"
|
"version": "1.95.0"
|
||||||
}
|
}
|
||||||
@@ -61,5 +61,5 @@
|
|||||||
"test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec --bail"
|
"test:mocha": "mocha -r esm node/test/test.js --growl --reporter=spec --bail"
|
||||||
},
|
},
|
||||||
"types": "node/dist/index.d.ts",
|
"types": "node/dist/index.d.ts",
|
||||||
"version": "1.94.0"
|
"version": "1.95.0"
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user