fix(tauri): disable WebKitGTK sandbox inside AppImage on Linux and bump version to 0.2.6

This commit is contained in:
2026-07-16 15:28:36 -04:00
parent b0d820cd92
commit e79505d8b4
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -3,8 +3,12 @@
fn main() { fn main() {
#[cfg(target_os = "linux")] #[cfg(target_os = "linux")]
std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1"); {
std::env::set_var("WEBKIT_DISABLE_DMABUF_RENDERER", "1");
std::env::set_var("WEBKIT_DISABLE_SANDBOX_THIS_IS_DANGEROUS", "1");
}
app_lib::run(); app_lib::run();
} }
+1 -1
View File
@@ -1,7 +1,7 @@
{ {
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json", "$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "dumpsterChat", "productName": "dumpsterChat",
"version": "0.2.0", "version": "0.2.6",
"identifier": "coffee.dustin.dumpsterchat", "identifier": "coffee.dustin.dumpsterchat",
"build": { "build": {
"frontendDist": "../dist", "frontendDist": "../dist",