preparing a bug fix release

This commit is contained in:
charras 2010-03-30 17:52:34 +00:00
parent 95316beba1
commit 14f74f7ab4
7 changed files with 601 additions and 487 deletions

View File

@ -9,10 +9,10 @@ email address.
================================================================================ ================================================================================
++Pcbnew ++Pcbnew
enhancements in printing or plot in SVG format: enhancements in printing or plot in SVG format:
When printing techncal layers, pads on solder mask or solder paste layers When printing technical layers, pads on solder mask or solder paste layers
where printed in sketch mode. where printed in sketch mode.
Now they are printed as solid shapes, with dimensions according to Now they are printed as solid shapes, with dimensions according to
solder past or solder mask clearances. solder paste or solder mask clearances.
2010-mar-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr> 2010-mar-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>

View File

@ -6,10 +6,10 @@
#endif #endif
#ifndef KICAD_BUILD_VERSION #ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-03-17)" #define KICAD_BUILD_VERSION "(2010-03-30 SVN 2479)"
#endif #endif
#define VERSION_STABILITY "unstable" #define VERSION_STABILITY "final"
/** Function GetBuildVersion() /** Function GetBuildVersion()
* Return the build date and version * Return the build date and version

View File

@ -36,10 +36,11 @@ DialogLabelEditor_Base::DialogLabelEditor_Base( wxWindow* parent, wxWindowID id,
m_textLabelMultiLine = new wxTextCtrl( this, wxID_VALUEMULTI, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_PROCESS_ENTER ); m_textLabelMultiLine = new wxTextCtrl( this, wxID_VALUEMULTI, wxEmptyString, wxDefaultPosition, wxDefaultSize, wxTE_MULTILINE|wxTE_PROCESS_ENTER );
m_textLabelMultiLine->SetToolTip( _("Enter the text to be used within the schematic") ); m_textLabelMultiLine->SetToolTip( _("Enter the text to be used within the schematic") );
m_textLabelMultiLine->SetMinSize( wxSize( -1,60 ) );
bSizeText->Add( m_textLabelMultiLine, 1, wxEXPAND|wxLEFT, 5 ); bSizeText->Add( m_textLabelMultiLine, 1, wxEXPAND|wxLEFT, 3 );
m_textControlSizer->Add( bSizeText, 1, wxEXPAND, 5 ); m_textControlSizer->Add( bSizeText, 1, wxEXPAND, 3 );
m_SizeTitle = new wxStaticText( this, wxID_ANY, _("&Size:"), wxDefaultPosition, wxDefaultSize, 0 ); m_SizeTitle = new wxStaticText( this, wxID_ANY, _("&Size:"), wxDefaultPosition, wxDefaultSize, 0 );
m_SizeTitle->Wrap( -1 ); m_SizeTitle->Wrap( -1 );

View File

@ -220,7 +220,7 @@
<property name="id">wxID_VALUEMULTI</property> <property name="id">wxID_VALUEMULTI</property>
<property name="maximum_size"></property> <property name="maximum_size"></property>
<property name="maxlength">0</property> <property name="maxlength">0</property>
<property name="minimum_size"></property> <property name="minimum_size">-1,60</property>
<property name="name">m_textLabelMultiLine</property> <property name="name">m_textLabelMultiLine</property>
<property name="permission">protected</property> <property name="permission">protected</property>
<property name="pos"></property> <property name="pos"></property>

Binary file not shown.

File diff suppressed because it is too large Load Diff

View File

@ -1,4 +1,4 @@
release version: release version:
2010 mar 14 (SVN 2456) 2010 mar 30 (SVN 2479)
files (.zip,.tgz): files (.zip,.tgz):
kicad-2010-03-14-final kicad-2010-03-30-final