Skip to content

Commit 72b72ba

Browse files
committed
feat(guard): disable SystemUI monitor by default
SystemUI crash monitoring is aggressive for most users and can cause false-positive recovery lockouts. Default to off so new installs are not affected. Users can still enable it in guard settings.
1 parent 4b164ab commit 72b72ba

4 files changed

Lines changed: 6 additions & 6 deletions

File tree

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "zeromount"
3-
version = "2.0.174-dev"
3+
version = "2.0.175-dev"
44
edition = "2021"
55

66
[dependencies]

module/module.prop

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
id=meta-zeromount
22
name=ZeroMount
3-
version=v2.0.174-dev
4-
versionCode=20174
3+
version=v2.0.175-dev
4+
versionCode=20175
55
author=Enginex0
66
description=Mountless module loading via VFS redirection with SUSFS integration. Supports OverlayFS and magic mount fallback. GHOST👻
77
updateJson=https://raw.githubusercontent.com/Enginex0/zeromount/master/update.json

src/core/config.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -395,7 +395,7 @@ pub struct GuardConfig {
395395
pub systemui_max_restarts: u32,
396396
#[serde(default = "default_systemui_absent")]
397397
pub systemui_absent_timeout_secs: u32,
398-
#[serde(default = "default_true")]
398+
#[serde(default)]
399399
pub systemui_monitor_enabled: bool,
400400
#[serde(default = "default_allowed_modules")]
401401
pub allowed_modules: Vec<String>,
@@ -416,7 +416,7 @@ impl Default for GuardConfig {
416416
systemui_poll_secs: 4,
417417
systemui_max_restarts: 3,
418418
systemui_absent_timeout_secs: 25,
419-
systemui_monitor_enabled: true,
419+
systemui_monitor_enabled: false,
420420
allowed_modules: vec!["meta-zeromount".to_string()],
421421
allowed_scripts: Vec::new(),
422422
}

0 commit comments

Comments
 (0)