From b993311d479ef10e80843d14f5b833ccd1a1a662 Mon Sep 17 00:00:00 2001 From: Jeff Young Date: Sun, 6 Aug 2023 21:56:11 +0100 Subject: [PATCH] Archive simulator workbook files. Fixes https://gitlab.com/kicad/code/kicad/-/issues/15364 --- common/project/project_archiver.cpp | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/common/project/project_archiver.cpp b/common/project/project_archiver.cpp index 044906d349..4943636b16 100644 --- a/common/project/project_archiver.cpp +++ b/common/project/project_archiver.cpp @@ -121,18 +121,19 @@ bool PROJECT_ARCHIVER::Archive( const wxString& aSrcDir, const wxString& aDestFi wxT( "*.kicad_mod" ), wxT( "*.kicad_dru" ), wxT( "*.kicad_wks" ), + wxT( "*.wbk" ), wxT( "fp-lib-table" ), wxT( "sym-lib-table" ) }; // List of additional file extensions that are only archived when aIncludeExtraFiles is true static const wxChar* extraExtensionList[] = { - wxT( "*.pro" ), + wxT( "*.pro" ), // Legacy project files wxT( "*.sch" ), // Legacy schematic files wxT( "*.lib" ), wxT( "*.dcm" ), // Legacy schematic library files wxT( "*.cmp" ), - wxT( "*.brd" ), - wxT( "*.mod" ), + wxT( "*.brd" ), // Legacy PCB files + wxT( "*.mod" ), // Legacy footprint library files wxT( "*.stp" ), wxT( "*.step" ), // 3d files wxT( "*.wrl" ), wxT( "*.g?" ), wxT( "*.g??" ), // Gerber files