fix(tauri): disable WebKitGTK sandbox inside AppImage on Linux and bump version to 0.2.6
Release Desktop Apps / build-linux (push) Successful in 2m40s
Release Desktop Apps / build-windows (push) Successful in 3h16m19s
Release Desktop Apps / release (push) Successful in 8s

This commit is contained in:
2026-07-16 15:28:36 -04:00
parent f20f4aa6fa
commit 09a59c6124
2 changed files with 6 additions and 2 deletions
+5 -1
View File
@@ -3,8 +3,12 @@
fn main() {
#[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();
}
+1 -1
View File
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "dumpsterChat",
"version": "0.2.0",
"version": "0.2.6",
"identifier": "coffee.dustin.dumpsterchat",
"build": {
"frontendDist": "../dist",