Skip to content

Commit

Permalink
prepare 1.42 (#3560)
Browse files Browse the repository at this point in the history
* prepare 1.42

* Update src/renderer/deviceMessages.ts

Co-authored-by: missytake <[email protected]>

---------

Co-authored-by: missytake <[email protected]>
  • Loading branch information
Simon-Laux and missytake authored Nov 24, 2023
1 parent f8610a5 commit 298195c
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 19 deletions.
18 changes: 17 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@

## [Unreleased][unreleased]

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

## [1.42.0] - 2023-11-23

> Since we needed to upgrade electron this version drops support for windows 7, 8 and 8.1
> https://www.electronjs.org/blog/windows-7-to-8-1-deprecation-notice
> If you are using DC on these platforms you have the following options:
> - Keep using 1.40.4
> - update windows to 10 or 11
> - switch to linux (or dual boot it)
> - contact [email protected] if you have money and want to sponsor the development of a special legacy build of deltachat desktop 1.42 for windows 7/8/8.1.
>
> - Core is now built on Debian 10: now requires glibc 2.28, so ubuntu 18 is not supported anymore.
### Fixed
- fix clear chat sometimes not refreshing the messagelist

Expand Down Expand Up @@ -2318,7 +2332,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.41.3...HEAD
[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v1.42.0...HEAD

[1.42.0]: https://github.com/deltachat/deltachat-desktop/compare/v1.41.3...v1.42.0

[1.41.3]: https://github.com/deltachat/deltachat-desktop/compare/v1.41.2...v1.41.3

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.41.4",
"version": "1.42.0",
"description": "Desktop Application for delta.chat",
"main": "index.js",
"scripts": {
Expand Down
18 changes: 3 additions & 15 deletions src/renderer/deviceMessages.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,12 @@
import { BackendRemote } from './backend-com'
import { runtime } from './runtime'

export async function updateDeviceChats(accountId: number) {
// const tx = window.static_translate

await BackendRemote.rpc.addDeviceMessage(
accountId,
'changelog-version-1.41.0-version0',
`What's new in 1.41.0?
'changelog-version-1.42.0-version0',
`What's new in 1.42.0?
💌 one-to-one chats guarantee end-to-end encryption for introduced contacts now
😌 for everyone's simplicity, we mark these contacts and chats with green checkmarks
Expand All @@ -17,17 +16,6 @@ export async function updateDeviceChats(accountId: number) {
🖼️ Global Gallery with your pictures, documents, media across all chats
✨ many more improvements and bugfixes
Full Changelog: https://github.com/deltachat/deltachat-desktop/blob/master/CHANGELOG.md#1_41_0
Thanks for testing this pre-release version, for more information and to five us feedback go to https://support.delta.chat/t/help-testing-the-upcoming-1-41-x-release/2793`
Full Changelog: https://github.com/deltachat/deltachat-desktop/blob/master/CHANGELOG.md#1_42_0`
)

if (runtime.getRuntimeInfo().isAppx) {
BackendRemote.rpc.addDeviceMessage(
accountId,
'changelog-version-1.41.0-ms-store',
`If you wonder why you get a test version: We fixed a [bug that blocked installations from the Microsoft Store](https://github.com/deltachat/deltachat-desktop/issues/3292) in the test version and decided to give you early access to it :)
If you encounter any bugs, please [notify us.](https://support.delta.chat/t/help-testing-the-upcoming-1-41-x-release/2793)`
)
}
}

0 comments on commit 298195c

Please sign in to comment.