Commit ae263430 authored by charras's avatar charras

Preparing stable version

parent f14be5af
...@@ -6,10 +6,10 @@ ...@@ -6,10 +6,10 @@
#endif #endif
#ifndef KICAD_BUILD_VERSION #ifndef KICAD_BUILD_VERSION
#define KICAD_BUILD_VERSION "(2010-02-28)" #define KICAD_BUILD_VERSION "(2010-03-13)"
#endif #endif
#define VERSION_STABILITY "RC5" #define VERSION_STABILITY "final"
/** Function GetBuildVersion() /** Function GetBuildVersion()
* Return the build date and version * Return the build date and version
......
No preview for this file type
This diff is collapsed.
...@@ -573,20 +573,12 @@ void DIALOG_PAD_PROPERTIES::PadPropertiesAccept( wxCommandEvent& event ) ...@@ -573,20 +573,12 @@ void DIALOG_PAD_PROPERTIES::PadPropertiesAccept( wxCommandEvent& event )
int padlayers_mask = PadLayerMask & (LAYER_BACK | LAYER_FRONT); int padlayers_mask = PadLayerMask & (LAYER_BACK | LAYER_FRONT);
if( padlayers_mask == 0 ) if( padlayers_mask == 0 )
{ {
if( g_Pad_Master.m_Size.x || g_Pad_Master.m_Drill.y ) if( g_Pad_Master.m_Drill.x || g_Pad_Master.m_Drill.y )
{ {
DisplayError( this, _( "Error: pad is not on a copper layer and has a hole" ) ); DisplayError( this, _( "Error: pad is not on a copper layer and has a hole" ) );
return; return;
} }
} }
if( padlayers_mask != (LAYER_BACK | LAYER_FRONT) )
{
if( g_Pad_Master.m_Size.x || g_Pad_Master.m_Drill.y )
{
if( !IsOK(this, _( "Warning: pad is not a through pad and has a hole; Continue?" ) ) )
return;
}
}
if( ( g_Pad_Master.m_Size.x / 2 <= ABS( g_Pad_Master.m_Offset.x ) ) if( ( g_Pad_Master.m_Size.x / 2 <= ABS( g_Pad_Master.m_Offset.x ) )
|| ( g_Pad_Master.m_Size.y / 2 <= ABS( g_Pad_Master.m_Offset.y ) ) ) || ( g_Pad_Master.m_Size.y / 2 <= ABS( g_Pad_Master.m_Offset.y ) ) )
......
release version: release version:
2010 feb 28 2010 mar 13
files (.zip,.tgz): files (.zip,.tgz):
kicad-2010-02-28-RC5 kicad-2010-03-13-final
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment