Commit d115b668 authored by charras's avatar charras

set build version to stable.

parent 100c64b4
......@@ -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/" );
......
......@@ -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
;
......
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