set build version to stable.
This commit is contained in:
parent
100c64b455
commit
d115b66884
|
@ -44,10 +44,14 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
|
||||||
description << ( _T( "Build: " ) ) << GetAboutBuildVersion();
|
description << ( _T( "Build: " ) ) << GetAboutBuildVersion();
|
||||||
|
|
||||||
/* Check for unicode */
|
/* Check for unicode */
|
||||||
|
description << ( wxT( "\n\nUsing " ) );
|
||||||
|
description << ( wxT( "wxWidgets " ) );
|
||||||
|
description << wxMAJOR_VERSION << wxT( "." ) << wxMINOR_VERSION << wxT( "." ) <<
|
||||||
|
wxRELEASE_NUMBER;
|
||||||
#if wxUSE_UNICODE
|
#if wxUSE_UNICODE
|
||||||
description << ( wxT( " Unicode " ) );
|
description << ( wxT( " Unicode " ) );
|
||||||
#else
|
#else
|
||||||
description << ( wxT( " Ansi " ) );
|
description << ( wxT( " Ansi " ) );
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
/* Check for wxMSW */
|
/* Check for wxMSW */
|
||||||
|
@ -67,9 +71,6 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
|
||||||
#else
|
#else
|
||||||
description << ( wxT( " 32 bits" ) );
|
description << ( wxT( " 32 bits" ) );
|
||||||
#endif
|
#endif
|
||||||
description << ( wxT( "\n with wxWidgets " ) );
|
|
||||||
description << wxMAJOR_VERSION << wxT( "." ) << wxMINOR_VERSION << wxT( "." ) <<
|
|
||||||
wxRELEASE_NUMBER;
|
|
||||||
|
|
||||||
description << wxT( "\n\nWeb sites:\n" );
|
description << wxT( "\n\nWeb sites:\n" );
|
||||||
description << wxT( "http://iut-tice.ujf-grenoble.fr/kicad/" );
|
description << wxT( "http://iut-tice.ujf-grenoble.fr/kicad/" );
|
||||||
|
|
|
@ -9,7 +9,7 @@ COMMON_GLOBL wxString g_BuildVersion
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
(wxT(KICAD_SVN_VERSION))
|
(wxT(KICAD_SVN_VERSION))
|
||||||
# else
|
# else
|
||||||
(wxT("(20080825-RC1)")) /* main program version */
|
(wxT("(20080825)")) /* main program version */
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
@ -20,7 +20,7 @@ COMMON_GLOBL wxString g_BuildAboutVersion
|
||||||
# include "config.h"
|
# include "config.h"
|
||||||
(wxT(KICAD_ABOUT_VERSION))
|
(wxT(KICAD_ABOUT_VERSION))
|
||||||
# else
|
# else
|
||||||
(wxT("(20080825-RC1)")) /* svn date & rev (normally overridden) */
|
(wxT("(20080825-final)")) /* svn date & rev (normally overridden) */
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
|
Loading…
Reference in New Issue