Revert "feat(settings): add auto-launch on system startup feature"

This reverts commit ba336fc416.

Reason: Found issues that need to be addressed before reintroducing
the auto-launch feature. Will reimplement with fixes.
This commit is contained in:
Jason
2025-11-21 23:30:56 +08:00
parent ba336fc416
commit eb46ac8592
14 changed files with 0 additions and 178 deletions

View File

@@ -50,14 +50,6 @@ pub enum AppError {
zh: String,
en: String,
},
#[error("Failed to get application path for auto-launch: {0}")]
AutoLaunchPathError(#[source] std::io::Error),
#[error("Failed to enable auto-launch: {0}")]
AutoLaunchEnableError(String),
#[error("Failed to disable auto-launch: {0}")]
AutoLaunchDisableError(String),
#[error("Failed to check auto-launch status: {0}")]
AutoLaunchCheckError(String),
}
impl AppError {