We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b8eb288 commit fbe7c9eCopy full SHA for fbe7c9e
.changes/bundler-injectedbundle.md
@@ -0,0 +1,5 @@
1
+---
2
+tauri-bundler: 'patch:bug'
3
4
+
5
+Fixed an issue that caused the compiled AppImage to miss webkitgtk's internal `libwebkit2gtkinjectedbundle.so` file.
crates/tauri-bundler/src/bundle/linux/appimage.rs
@@ -141,7 +141,7 @@ pub fn bundle_project(settings: &Settings) -> crate::Result<Vec<PathBuf>> {
141
for file in [
142
"WebKitNetworkProcess",
143
"WebKitWebProcess",
144
- "libwebkit2gtkinjectedbundle.so",
+ "injected-bundle/libwebkit2gtkinjectedbundle.so",
145
] {
146
for source in search_dirs.map(PathBuf::from) {
147
// TODO: Check if it's the same dir name on all systems
0 commit comments