Archive simulator workbook files.

Fixes https://gitlab.com/kicad/code/kicad/-/issues/15364
This commit is contained in:
Jeff Young 2023-08-06 21:56:11 +01:00
parent 97fbbceae7
commit b993311d47
1 changed files with 4 additions and 3 deletions

View File

@ -121,18 +121,19 @@ bool PROJECT_ARCHIVER::Archive( const wxString& aSrcDir, const wxString& aDestFi
wxT( "*.kicad_mod" ), wxT( "*.kicad_mod" ),
wxT( "*.kicad_dru" ), wxT( "*.kicad_dru" ),
wxT( "*.kicad_wks" ), wxT( "*.kicad_wks" ),
wxT( "*.wbk" ),
wxT( "fp-lib-table" ), wxT( "fp-lib-table" ),
wxT( "sym-lib-table" ) wxT( "sym-lib-table" )
}; };
// List of additional file extensions that are only archived when aIncludeExtraFiles is true // List of additional file extensions that are only archived when aIncludeExtraFiles is true
static const wxChar* extraExtensionList[] = { static const wxChar* extraExtensionList[] = {
wxT( "*.pro" ), wxT( "*.pro" ), // Legacy project files
wxT( "*.sch" ), // Legacy schematic files wxT( "*.sch" ), // Legacy schematic files
wxT( "*.lib" ), wxT( "*.dcm" ), // Legacy schematic library files wxT( "*.lib" ), wxT( "*.dcm" ), // Legacy schematic library files
wxT( "*.cmp" ), wxT( "*.cmp" ),
wxT( "*.brd" ), wxT( "*.brd" ), // Legacy PCB files
wxT( "*.mod" ), wxT( "*.mod" ), // Legacy footprint library files
wxT( "*.stp" ), wxT( "*.step" ), // 3d files wxT( "*.stp" ), wxT( "*.step" ), // 3d files
wxT( "*.wrl" ), wxT( "*.wrl" ),
wxT( "*.g?" ), wxT( "*.g??" ), // Gerber files wxT( "*.g?" ), wxT( "*.g??" ), // Gerber files