Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add missing libasound2 to debian package dependencies #4275

Merged
merged 3 commits into from
Oct 27, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
- remove unnecessary horizontal scrollbar in "View Group" dialog #4254
- change title of EditAccountAndPasswordDialog to make it clearer that it is about email account #4271
- fix styling of progressbars in light theme #4274
- add `libasound2` to debian package dependencies #4275
Simon-Laux marked this conversation as resolved.
Show resolved Hide resolved

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

Expand Down
12 changes: 12 additions & 0 deletions packages/target-electron/build/gen-electron-builder-config.js
Original file line number Diff line number Diff line change
Expand Up @@ -151,6 +151,18 @@ build['appImage'] = {

build['deb'] = {
packageName: previewBuild ? 'deltachat-desktop-preview' : 'deltachat-desktop',
depends: [
'libasound2',
'libgtk-3-0',
'libnotify4',
'libnss3',
'libxss1',
'libxtst6',
'xdg-utils',
'libatspi2.0-0',
'libuuid1',
'libsecret-1-0',
],
}

build['win'] = {
Expand Down
Loading