From a4ddbff3219c58b7df06c2aa2a59640cdd4f7733 Mon Sep 17 00:00:00 2001 From: jean-pierre charras Date: Sun, 26 Aug 2018 13:35:33 +0200 Subject: [PATCH] Kicad archive project: add missing file extensions (.kicad_mod, .gbrjob) in files to archive filter. From master. --- kicad/files-io.cpp | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/kicad/files-io.cpp b/kicad/files-io.cpp index 3db10d647f..126ec0302c 100644 --- a/kicad/files-io.cpp +++ b/kicad/files-io.cpp @@ -135,10 +135,15 @@ void KICAD_MANAGER_FRAME::OnArchiveFiles( wxCommandEvent& event ) { // List of file extensions to save. static const wxChar* extentionList[] = { - wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.mod" ), wxT( "*.cmp" ), - wxT( "*.brd" ), wxT( "*.kicad_pcb" ), wxT( "*.gbr" ), wxT( "*.pos" ), - wxT( "*.net" ), wxT( "*.pro" ), wxT( "*.drl" ), wxT( "*.py" ), - wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.dcm" ), wxT( "*.kicad_wks" ), + wxT( "*.pro" ), + wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.dcm" ), // Schematic related files + wxT( "*.cmp" ), + wxT( "*.brd" ), wxT( "*.kicad_pcb" ), // Brd files + wxT( "*.mod" ), wxT( "*.kicad_mod" ), // fp files + wxT( "*.gbr" ), wxT( "*.gbrjob" ), // Gerber files + wxT( "*.pos" ), wxT( "*.drl" ), // Fab files + wxT( "*.net" ), wxT( "*.py" ), + wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.kicad_wks" ), }; wxString msg;