feat: full pattern matrix — M1 complete, M2 LLM chat, 30+ pattern files #10

Open
pyr0ball wants to merge 35 commits from feat/patterns-expansion into main
Showing only changes of commit 5142e29ad9 - Show all commits

View file

@ -104,6 +104,14 @@ pub fn run() {
commands::panel_closed,
commands::chat,
])
.run(tauri::generate_context!())
.expect("error while running Robin");
.build(tauri::generate_context!())
.expect("error building Robin")
.run(|_app, event| {
// Robin lives in the system tray. Prevent the process from exiting
// when the chat window is closed or hidden — only the tray "Quit"
// menu item should terminate the app.
if let tauri::RunEvent::ExitRequested { api, .. } = event {
api.prevent_exit();
}
});
}