Skip to content

Commit

Permalink
prepare 1.40 (#3353)
Browse files Browse the repository at this point in the history
* ensure device message ordering

* prepare 1.40.0
  • Loading branch information
Simon-Laux authored Aug 13, 2023
1 parent 2649fee commit b9ada79
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 8 deletions.
13 changes: 12 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,22 @@

### Added

### Changed

### Fixed

<a id="1_40_0"></a>

## [1.40.0] - 2023-08-13

### Changed
- update `@deltachat/message_parser_wasm` to `0.6.0`, which fixes 2 bugs:
- Fixed problem of IPv6 links being detected as punycode
- Fixed the bug of brackets being parsed as part of the email address

### Fixed
- fix missing translation string in setup second device progress dialog
- fix device message ordering


<a id="1_39_0"></a>
Expand Down Expand Up @@ -2100,7 +2109,9 @@ This section is only relevant to contributors.

**Historical Note 2** We removed the older changelog, you can look at the git history to get it. (version numbers made hallmark crazy)

[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v1.39.0...HEAD
[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v1.40.0...HEAD

[1.39.0]: https://github.com/deltachat/deltachat-desktop/compare/v1.39.0...v1.40.0

[1.39.0]: https://github.com/deltachat/deltachat-desktop/compare/v1.38.1...v1.39.0

Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "deltachat-desktop",
"version": "1.39.0",
"version": "1.40.0",
"description": "Desktop Application for delta.chat",
"main": "index.js",
"scripts": {
Expand Down
8 changes: 4 additions & 4 deletions src/renderer/deviceMessages.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { BackendRemote } from './backend-com'

export function updateDeviceChats(accountId: number) {
BackendRemote.rpc.addDeviceMessage(
export async function updateDeviceChats(accountId: number) {
await BackendRemote.rpc.addDeviceMessage(
accountId,
'changelog-version-1.36.0-version1',
`What's new in 1.36.0?
Expand All @@ -14,13 +14,13 @@ Full Changelog: https://github.com/deltachat/deltachat-desktop/blob/master/CHANG
)

const tx = window.static_translate
BackendRemote.rpc.addDeviceMessage(
await BackendRemote.rpc.addDeviceMessage(
accountId,
'changelog-version-1.36.0-audit',
tx('update_1_36_audit', 'https://delta.chat/en/2023-05-22-webxdc-security')
)

BackendRemote.rpc.addDeviceMessage(
await BackendRemote.rpc.addDeviceMessage(
accountId,
'changelog-version-1.38.0-version0',
`What's new in 1.38.0?
Expand Down

0 comments on commit b9ada79

Please sign in to comment.