Skip to content

Commit c00d141

Browse files
authored
Prepare release 2.15.0 (#5506)
* Comment calls setting switch
1 parent f0d264b commit c00d141

File tree

8 files changed

+21
-28
lines changed

8 files changed

+21
-28
lines changed

CHANGELOG.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,10 @@
22

33
## [Unreleased][unreleased]
44

5+
<a id="2_15_0"></a>
6+
7+
## [2.15.0] - 2025-10-02
8+
59
### Added
610
- support multiple selection (multiselect) in the list of chats, activated with Ctrl + Click, Shift + Click #5297
711

@@ -3689,7 +3693,9 @@ This section is only relevant to contributors.
36893693
**Historical Note 2** We removed the older changelog, you can look at the git history to get it. (version numbers made hallmark crazy)
36903694

36913695

3692-
[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v2.11.1...HEAD
3696+
[unreleased]: https://github.com/deltachat/deltachat-desktop/compare/v2.15.0...HEAD
3697+
3698+
[2.15.0]: https://github.com/deltachat/deltachat-desktop/compare/v2.11.1...v2.15.0
36933699

36943700
[2.11.1]: https://github.com/deltachat/deltachat-desktop/compare/v2.11.0...v2.11.1
36953701

Cargo.lock

Lines changed: 7 additions & 20 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": "true",
33
"name": "deltachat-desktop",
44
"type": "module",
5-
"version": "2.11.1",
5+
"version": "2.15.0",
66
"scripts": {
77
"preinstall": "node ./bin/check-nodejs-version.js",
88
"check": "pnpm check:types && pnpm check:lint && pnpm check:format && pnpm check:target-versions && pnpm check:log-conventions",

packages/frontend/src/components/Settings/ExperimentalFeatures.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,13 +62,13 @@ export function ExperimentalFeatures({ settingsStore }: Props) {
6262
>
6363
{tx('videochat')}
6464
</SettingsSelector>
65-
{runtime.getRuntimeInfo().target === 'electron' && (
65+
{/* {runtime.getRuntimeInfo().target === 'electron' && (
6666
<DesktopSettingsSwitch
6767
settingsKey='enableAVCallsV2'
6868
label={tx('videochat') + ' v2'}
6969
description='Work in progress…'
7070
/>
71-
)}
71+
)} */}
7272
<DesktopSettingsSwitch
7373
settingsKey='enableBroadcastLists'
7474
label={tx('channels')}

packages/target-browser/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"name": "@deltachat-desktop/target-browser",
44
"type": "module",
5-
"version": "2.11.1",
5+
"version": "2.15.0",
66
"license": "GPL-3.0-or-later",
77
"scripts": {
88
"check:types": "tsc --noEmit && tsc --noEmit -p runtime-browser",

packages/target-electron/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"private": true,
33
"type": "module",
44
"name": "@deltachat-desktop/target-electron",
5-
"version": "2.11.1",
5+
"version": "2.15.0",
66
"description": "Desktop Application for delta.chat",
77
"repository": {
88
"type": "git",

packages/target-tauri/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "@deltachat-desktop/target-tauri",
33
"private": true,
4-
"version": "2.11.1",
4+
"version": "2.15.0",
55
"type": "module",
66
"license": "GPL-3.0-or-later",
77
"scripts": {

packages/target-tauri/src-tauri/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "deltachat-tauri"
3-
version = "2.11.1"
3+
version = "2.15.0"
44
description = "Delta Chat Desktop: Tauri Edition. Secure, cross-platform, decentralized super-app messenger."
55
authors = ["DeltaChat Contributors"]
66
edition = "2021"

0 commit comments

Comments
 (0)