Kicad manager: fix bug: .kicad_pcb files not saved in zip file
This commit is contained in:
parent
9d40727b4c
commit
a88d067abf
|
@ -131,7 +131,7 @@ void KICAD_MANAGER_FRAME::OnArchiveFiles( wxCommandEvent& event )
|
|||
/* List of file extensions to save. */
|
||||
static const wxChar* extentionList[] = {
|
||||
wxT( "*.sch" ), wxT( "*.lib" ), wxT( "*.cmp" ),
|
||||
wxT( "*.brd" ), wxT( "*.kicad_brd" ),
|
||||
wxT( "*.brd" ), wxT( "*.kicad_pcb" ),
|
||||
wxT( "*.net" ), wxT( "*.pro" ), wxT( "*.pho" ), wxT( "*.py" ),
|
||||
wxT( "*.pdf" ), wxT( "*.txt" ), wxT( "*.dcm" ),
|
||||
NULL
|
||||
|
|
|
@ -36,7 +36,7 @@ SetCompressor /final /solid lzma
|
|||
CRCCheck force
|
||||
XPStyle on
|
||||
Name "${PRODUCT_NAME} ${PRODUCT_VERSION}"
|
||||
OutFile "${PRODUCT_NAME}_stable-${PRODUCT_VERSION}-BZR3992_Win_full_version.exe"
|
||||
OutFile "${PRODUCT_NAME}_stable-${PRODUCT_VERSION}-BZR3993_Win_full_version.exe"
|
||||
InstallDir "$PROGRAMFILES\KiCad"
|
||||
ShowInstDetails hide
|
||||
ShowUnInstDetails hide
|
||||
|
|
|
@ -1016,7 +1016,7 @@ void PCB_PARSER::parseSetup() throw( IO_ERROR, PARSE_ERROR )
|
|||
// "last_trace_width", "trace_min_width", "via_size", "via_drill",
|
||||
// "via_min_size", and "via_clearance", put those same global
|
||||
// values into the default NETCLASS until later board load
|
||||
// code should override them. *.kicad_brd files which have been
|
||||
// code should override them. *.kicad_pcb files which have been
|
||||
// saved with knowledge of NETCLASSes will override these
|
||||
// defaults, old boards will not.
|
||||
//
|
||||
|
|
Loading…
Reference in New Issue