From eb7fec52d59e353c443e7c2bdae4bb3424bbec6d Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Mon, 13 Feb 2023 22:43:16 +0000 Subject: [PATCH] Add archiving of SPICE files. Fixes https://gitlab.com/kicad/code/kicad/issues/12102 --- common/project/project_archiver.cpp | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/common/project/project_archiver.cpp b/common/project/project_archiver.cpp index 80ae4eec11..b4a3609480 100644 --- a/common/project/project_archiver.cpp +++ b/common/project/project_archiver.cpp @@ -137,9 +137,13 @@ bool PROJECT_ARCHIVER::Archive( const wxString& aSrcDir, const wxString& aDestFi wxT( "*.g?" ), wxT( "*.g??" ), // Gerber files wxT( "*.gm??" ), wxT( "*.gbrjob" ), wxT( "*.pos" ), wxT( "*.drl" ), wxT( "*.nc" ), wxT( "*.xnc" ), // Fab files - wxT( "*.d356" ), wxT( "*.rpt" ), - wxT( "*.net" ), wxT( "*.py" ), - wxT( "*.pdf" ), wxT( "*.txt" ) + wxT( "*.d356" ), + wxT( "*.rpt" ), + wxT( "*.net" ), + wxT( "*.py" ), + wxT( "*.pdf" ), + wxT( "*.txt" ), + wxT( "*.cir" ), wxT( "*.sub" ), wxT( "*.model" ) // SPICE files }; bool success = true;