set build version to stable.

This commit is contained in:
charras 2008-09-10 06:23:52 +00:00
parent 100c64b455
commit d115b66884
2 changed files with 8 additions and 7 deletions

View File

@ -44,10 +44,14 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
description << ( _T( "Build: " ) ) << GetAboutBuildVersion();
/* Check for unicode */
description << ( wxT( "\n\nUsing " ) );
description << ( wxT( "wxWidgets " ) );
description << wxMAJOR_VERSION << wxT( "." ) << wxMINOR_VERSION << wxT( "." ) <<
wxRELEASE_NUMBER;
#if wxUSE_UNICODE
description << ( wxT( " Unicode " ) );
description << ( wxT( " Unicode " ) );
#else
description << ( wxT( " Ansi " ) );
description << ( wxT( " Ansi " ) );
#endif
/* Check for wxMSW */
@ -67,9 +71,6 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
#else
description << ( wxT( " 32 bits" ) );
#endif
description << ( wxT( "\n with wxWidgets " ) );
description << wxMAJOR_VERSION << wxT( "." ) << wxMINOR_VERSION << wxT( "." ) <<
wxRELEASE_NUMBER;
description << wxT( "\n\nWeb sites:\n" );
description << wxT( "http://iut-tice.ujf-grenoble.fr/kicad/" );

View File

@ -9,7 +9,7 @@ COMMON_GLOBL wxString g_BuildVersion
# include "config.h"
(wxT(KICAD_SVN_VERSION))
# else
(wxT("(20080825-RC1)")) /* main program version */
(wxT("(20080825)")) /* main program version */
# endif
#endif
;
@ -20,7 +20,7 @@ COMMON_GLOBL wxString g_BuildAboutVersion
# include "config.h"
(wxT(KICAD_ABOUT_VERSION))
# else
(wxT("(20080825-RC1)")) /* svn date & rev (normally overridden) */
(wxT("(20080825-final)")) /* svn date & rev (normally overridden) */
# endif
#endif
;