Skip to content

Commit f1aa120

Browse files
authored
fix(bundler): update create-dmg, fixes #1571 (#1729)
1 parent 9c10ccf commit f1aa120

File tree

17 files changed

+277
-274
lines changed

17 files changed

+277
-274
lines changed

.changes/config.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
"getPublishedVersion": "cargo search ${ pkgFile.pkg.package.name } --limit 1 | sed -nE \"s/^[^\\\"]*\\\"//; s/\\\".*//1p\"",
99
"prepublish": [
1010
"sudo apt-get update",
11-
"sudo apt-get install -y webkit2gtk-4.0",
11+
"sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0",
1212
"cargo install cargo-audit --features=fix",
1313
{
1414
"command": "cargo generate-lockfile",

.changes/dmg-bundle-fixes.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"tauri-bundler": patch
3+
---
4+
5+
Pull latest changes from `create-dmg`, fixing unmount issue.

.github/workflows/artifacts-updater.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: matrix.platform == 'ubuntu-latest'
3636
run: |
3737
sudo apt-get update
38-
sudo apt-get install -y webkit2gtk-4.0
38+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
3939
4040
- name: Get current date
4141
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

.github/workflows/build-smoke-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
if: matrix.platform == 'ubuntu-latest'
7070
run: |
7171
sudo apt-get update
72-
sudo apt-get install -y webkit2gtk-4.0
72+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
7373
- name: yarn install for cli
7474
working-directory: tauri/tooling/cli.js
7575
run: yarn

.github/workflows/core-lint-fmt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
- name: install webkit2gtk
2525
run: |
2626
sudo apt-get update
27-
sudo apt-get install -y webkit2gtk-4.0
27+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
2828
2929
- uses: actions-rs/toolchain@v1
3030
with:
@@ -151,7 +151,7 @@ jobs:
151151
- name: install webkit2gtk
152152
run: |
153153
sudo apt-get update
154-
sudo apt-get install -y webkit2gtk-4.0
154+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
155155
156156
- uses: actions-rs/toolchain@v1
157157
with:

.github/workflows/covector-version-or-publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ jobs:
7070
- name: install webkit2gtk
7171
run: |
7272
sudo apt-get update
73-
sudo apt-get install -y webkit2gtk-4.0
73+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
7474
- name: generate rust docs
7575
working-directory: ./tauri/core/tauri
7676
run: cargo doc --no-deps

.github/workflows/smoke-test-prod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: matrix.platform == 'ubuntu-latest'
3838
run: |
3939
sudo apt-get update
40-
sudo apt-get install -y webkit2gtk-4.0
40+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
4141
- name: cache rust bin
4242
id: cache_rust_bin
4343
uses: actions/cache@v1

.github/workflows/test-bundler.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
if: matrix.platform == 'ubuntu-latest'
3636
run: |
3737
sudo apt-get update
38-
sudo apt-get install -y webkit2gtk-4.0
38+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
3939
4040
- name: Get current date
4141
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@@ -100,7 +100,7 @@ jobs:
100100
if: matrix.platform == 'ubuntu-latest'
101101
run: |
102102
sudo apt-get update
103-
sudo apt-get install -y webkit2gtk-4.0
103+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
104104
- name: clippy check
105105
uses: actions-rs/clippy-check@v1
106106
with:

.github/workflows/test-core.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
if: matrix.platform == 'ubuntu-latest'
3838
run: |
3939
sudo apt-get update
40-
sudo apt-get install -y webkit2gtk-4.0
40+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
4141
4242
- name: Get current date
4343
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV
@@ -161,7 +161,7 @@ jobs:
161161
if: matrix.platform == 'ubuntu-latest'
162162
run: |
163163
sudo apt-get update
164-
sudo apt-get install -y webkit2gtk-4.0
164+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
165165
166166
- name: Get current date
167167
run: echo "CURRENT_DATE=$(date +'%Y-%m-%d')" >> $GITHUB_ENV

.github/workflows/test-cta.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
- name: install webkit2gtk
4848
run: |
4949
sudo apt-get update
50-
sudo apt-get install -y webkit2gtk-4.0
50+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
5151
- run: yarn
5252
working-directory: tooling/create-tauri-app
5353
- run: yarn build
@@ -83,7 +83,7 @@ jobs:
8383
- name: install webkit2gtk
8484
run: |
8585
sudo apt-get update
86-
sudo apt-get install -y webkit2gtk-4.0
86+
sudo apt-get install -y libgtk-3-dev libgtksourceview-3.0-dev webkit2gtk-4.0
8787
- run: yarn
8888
working-directory: tooling/create-tauri-app
8989
- run: yarn build

0 commit comments

Comments
 (0)