use the more inviting term 'testing', not 'unstable'
This commit is contained in:
parent
d536f9d914
commit
df5ce91765
|
@ -9,7 +9,9 @@
|
||||||
#define KICAD_BUILD_VERSION "(2010-04-19 BZR 23xx)"
|
#define KICAD_BUILD_VERSION "(2010-04-19 BZR 23xx)"
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define VERSION_STABILITY "unstable"
|
//#define VERSION_STABILITY "stable"
|
||||||
|
#define VERSION_STABILITY "testing"
|
||||||
|
|
||||||
|
|
||||||
/** Function GetBuildVersion()
|
/** Function GetBuildVersion()
|
||||||
* Return the build date and version
|
* Return the build date and version
|
||||||
|
@ -18,6 +20,6 @@ wxString GetBuildVersion()
|
||||||
{
|
{
|
||||||
static wxString msg;
|
static wxString msg;
|
||||||
msg.Printf( wxT("%s-%s"),
|
msg.Printf( wxT("%s-%s"),
|
||||||
wxT( KICAD_BUILD_VERSION ), wxT(VERSION_STABILITY));
|
wxT( KICAD_BUILD_VERSION ), wxT( VERSION_STABILITY ));
|
||||||
return msg;
|
return msg;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue