Commit 727f77db authored by jean-pierre charras's avatar jean-pierre charras
Browse files

Set cmake minimum version req. to 2.6.4. Added footprint name edition in the...

Set cmake minimum version req. to 2.6.4. Added footprint name edition in the module editor dialog properties (see changelog).
parents 67a959a5 12ce0a7b
Loading
Loading
Loading
Loading
+11 −0
Original line number Diff line number Diff line
@@ -4,6 +4,17 @@ KiCad ChangeLog 2010
Please add newer entries at the top, list the date and your name with
email address.

2010-may-18, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++All:
    Set minimum cmake version requirement to 2.6.4
    (does not works with 2.6.1)
++Pcbnew, Module Editor:
    Added footprint name edition in the module properties dialog.
    Until now, the footprint name used to retrieve a footprint in lib was
    set only when saving the footprint in lib, and could not be edited without saving
    the footprint in lib.

2010-may-01, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++Pcbnew:
+2 −2
Original line number Diff line number Diff line
@@ -2,9 +2,9 @@ project(kicad)

# test the minimum Cmake version requirement (could be different under unix or Windows
if(WIN32)
    cmake_minimum_required(VERSION 2.8.0 FATAL_ERROR)
    cmake_minimum_required(VERSION 2.6.4 FATAL_ERROR)
else(WIN32)
    cmake_minimum_required(VERSION 2.8.0 FATAL_ERROR)
    cmake_minimum_required(VERSION 2.6.4 FATAL_ERROR)
endif(WIN32)

# Path to local CMake modules.
+2 −2
Original line number Diff line number Diff line
@@ -121,8 +121,8 @@ bool IsOK( wxWindow* parent, const wxString& text )
 * Leading and trailing spaces are removed
 * Buffer is the initial text displayed, anr the returned text
 * Return:
 * 1 if OK
 * 0 if ESCAPE
 * 0 if OK
 * 1 if CANCEL
 */
int Get_Message( const wxString& title,           // The question
                 const wxString& frame_caption,   // The frame caption
+89 −125
Original line number Diff line number Diff line
update=13/5/2006-07:55:36
update=16/05/2010 14:21:37
version=1
last_client=pcbnew
[common]
@@ -62,64 +62,28 @@ NetType=0
EquName1=devcms
[pcbnew]
version=1
PadDril=1200
PadDimH=1500
PadDimV=1500
PadForm=1
PadMask=14745599
ViaDiam=600
ViaDril=250
Isol=110
Countlayer=2
Lpiste=170
RouteTo=15
RouteBo=0
TypeVia=3
Segm45=1
Racc45=1
Unite=0
SegFill=1
SegAffG=0
NewAffG=1
PadFill=1
PadAffG=1
PadSNum=1
ModAffC=1
ModAffT=1
PcbAffT=1
PadDrlX=430
PadDimH=550
PadDimV=550
BoardThickness=630
SgPcb45=1
TxtPcbV=800
TxtPcbH=600
TxtModV=600
TxtModH=600
TxtModW=120
HPGLnum=1
HPGdiam=15
HPGLSpd=20
HPGLrec=2
HPGLorg=0
GERBmin=15
VEgarde=100
DrawLar=150
EdgeLar=150
EdgeLar=50
TxtLar=170
MSegLar=150
ForPlot=1
WpenSer=10
UserGrX=0,1
UserGrY=0,1
UserGrU=0
DivGrPc=1
TimeOut=600
MaxLnkS=3
ShowRat=0
ShowMRa=1
LastNetListRead=interf_u.net
[pcbnew/libraries]
LibDir=
LibName1=connect
LibName2=discret
LibName3=pin_array
LibName4=divers
LibName5=libcms
LibName6=supports
LibName4=sockets
LibName5=divers
LibName6=libcms
LibName7=display
+7 −1
Original line number Diff line number Diff line
@@ -77,7 +77,8 @@ void DIALOG_MODULE_MODULE_EDITOR::InitModeditProperties()
    m_ValueCopy->Copy(m_CurrentModule->m_Value);
    m_ReferenceCtrl->SetValue( m_ReferenceCopy->m_Text );
    m_ValueCtrl->SetValue( m_ValueCopy->m_Text );

    m_ValueCtrl->SetValue( m_ValueCopy->m_Text );
    m_FootprintNameCtrl->SetValue( m_CurrentModule->m_LibRef );

#if wxCHECK_VERSION( 2, 8, 0 )
    m_AttributsCtrl->SetItemToolTip( 0, _( "Use this attribute for most non smd components" ) );
@@ -343,6 +344,10 @@ void DIALOG_MODULE_MODULE_EDITOR::OnOkClick( wxCommandEvent& event )
    m_CurrentModule->m_Doc = m_DocCtrl->GetValue();
    m_CurrentModule->m_KeyWord = m_KeywordCtrl->GetValue();

    // Init footprint name in library
    if( ! m_FootprintNameCtrl->GetValue( ).IsEmpty() )
        m_CurrentModule->m_LibRef = m_FootprintNameCtrl->GetValue( );

    // Init Fields:
    m_CurrentModule->m_Reference->Copy(m_ReferenceCopy );
    m_CurrentModule->m_Value->Copy(m_ValueCopy );
@@ -429,3 +434,4 @@ void DIALOG_MODULE_MODULE_EDITOR::OnEditValue(wxCommandEvent& event)
    m_Parent->GetScreen()->m_Curseur = tmp;
    m_ValueCtrl->SetValue(m_ValueCopy->m_Text);
}
Loading