Add tutorial overlay tour after welcome wizard

This commit is contained in:
2026-03-06 15:48:06 +02:00
parent 4a328010d7
commit d94ea19a0d
5 changed files with 204 additions and 1 deletions

View File

@@ -4,6 +4,7 @@ use serde::{Deserialize, Serialize};
#[serde(default)]
pub struct AppConfig {
pub first_run_complete: bool,
pub tutorial_complete: bool,
pub output_subfolder: String,
pub output_fixed_path: Option<String>,
pub overwrite_behavior: OverwriteBehavior,
@@ -25,6 +26,7 @@ impl Default for AppConfig {
fn default() -> Self {
Self {
first_run_complete: false,
tutorial_complete: false,
output_subfolder: "processed".into(),
output_fixed_path: None,
overwrite_behavior: OverwriteBehavior::Ask,