Bump release version and snapshot startup state

This commit is contained in:
2026-07-08 14:56:38 +03:00
parent 7bb437f28b
commit 7316e932f0
18 changed files with 149 additions and 72 deletions
+2 -2
View File
@@ -1,10 +1,10 @@
use crate::models::{LocalSingBoxConfig, SubscriptionCache};
use crate::process::command_no_window;
use serde::{Deserialize, Serialize};
use serde_json::{json, Value};
use std::{
env, fs,
path::Path,
process::Command,
time::{SystemTime, UNIX_EPOCH},
};
@@ -215,7 +215,7 @@ impl SingBoxConfigChecker for SingBoxCommandChecker {
)
})?;
let output = Command::new(binary_path)
let output = command_no_window(binary_path)
.arg("check")
.arg("-c")
.arg(&config_path)