diff --git a/common/about_kicad.cpp b/common/about_kicad.cpp index 5e546db05e..56fdb3fce9 100644 --- a/common/about_kicad.cpp +++ b/common/about_kicad.cpp @@ -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/" ); diff --git a/include/build_version.h b/include/build_version.h index 445eef6001..045764e4a1 100644 --- a/include/build_version.h +++ b/include/build_version.h @@ -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 ;