From b9483ae66f61aabe75b850f991d5d3887f05d3c0 Mon Sep 17 00:00:00 2001 From: Seth Hillbrand Date: Mon, 21 Jan 2019 07:26:50 -0800 Subject: [PATCH] Adding additional archive extensions These include standard protel extensions and 3d-model extensions Fixes: lp:1812639 * https://bugs.launchpad.net/kicad/+bug/1812639 --- kicad/files-io.cpp | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/kicad/files-io.cpp b/kicad/files-io.cpp index 95bae341c0..e6b22a8dd4 100644 --- a/kicad/files-io.cpp +++ b/kicad/files-io.cpp @@ -142,8 +142,16 @@ void KICAD_MANAGER_FRAME::OnArchiveFiles( wxCommandEvent& event ) wxT( "*.cmp" ), wxT( "*.brd" ), wxT( "*.kicad_pcb" ), // Brd files wxT( "*.mod" ), wxT( "*.kicad_mod" ), // fp files - wxT( "*.gbr" ), wxT( "*.gbrjob" ), // Gerber files + wxT( "*.gb?" ), wxT( "*.gbrjob" ), // Gerber files + wxT( "*.gko" ), wxT( "*.gm1" ), + wxT( "*.gm2" ), wxT( "*.g?" ), + wxT( "*.gp1" ), wxT( "*.gp2" ), + wxT( "*.gpb" ), wxT( "*.gpt" ), + wxT( "*.gt?" ), wxT( "*.pos" ), wxT( "*.drl" ), // Fab files + wxT( "*.d356" ), wxT( "*.rpt" ), + wxT( "*.stp" ), wxT( "*.step" ), // 3d files + wxT( "*.wrl" ), wxT( "*.net" ), wxT( "*.py" ), wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.kicad_wks" ), };