switch to RC4
This commit is contained in:
parent
6335ede786
commit
636c708ee7
|
@ -6,10 +6,10 @@
|
|||
#endif
|
||||
|
||||
#ifndef KICAD_BUILD_VERSION
|
||||
#define KICAD_BUILD_VERSION "(2010-02-17)"
|
||||
#define KICAD_BUILD_VERSION "(2010-02-21)"
|
||||
#endif
|
||||
|
||||
#define VERSION_STABILITY "RC3a"
|
||||
#define VERSION_STABILITY "RC4"
|
||||
|
||||
/** Function GetBuildVersion()
|
||||
* Return the build date and version
|
||||
|
|
|
@ -23,7 +23,10 @@
|
|||
* or you may write to the Free Software Foundation, Inc.,
|
||||
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
|
||||
*/
|
||||
const char* newstroke_font[] =
|
||||
|
||||
#include "newstroke_font.h"
|
||||
|
||||
const char* const newstroke_font[] =
|
||||
{
|
||||
/* // BASIC LATIN (0020-007F) */
|
||||
"JZ", /* U+20 SPACE */
|
||||
|
@ -11344,7 +11347,7 @@ const char* newstroke_font[] =
|
|||
"F^K[KFYFY[K[",
|
||||
"F^K[KFYFY[K[",
|
||||
"F^K[KFYFY[K[",
|
||||
"F^K[KFYFY[K[",
|
||||
"F^K[KFYFY[K["
|
||||
};
|
||||
/* --- unused glyphs --- */
|
||||
/* RECTANGLE_V_BLACK_SMALL */
|
||||
|
@ -11352,5 +11355,5 @@ const char* newstroke_font[] =
|
|||
/* COMBINING */
|
||||
/* DIAMOND_SMALL */
|
||||
|
||||
int newstroke_font_bufsize = sizeof(newstroke_font)/sizeof(newstroke_font[0]);
|
||||
const int newstroke_font_bufsize = sizeof(newstroke_font)/sizeof(newstroke_font[0]);
|
||||
|
||||
|
|
|
@ -100,7 +100,7 @@ int DefaultTransformMatrix[2][2] = { { 1, 0 }, { 0, -1 } };
|
|||
// not wxApp)
|
||||
IMPLEMENT_APP( WinEDA_App )
|
||||
|
||||
/* MacOSX: Needed for file association
|
||||
/* MacOSX: Needed for file association
|
||||
* http://wiki.wxwidgets.org/WxMac-specific_topics
|
||||
*/
|
||||
void WinEDA_App::MacOpenFile(const wxString &fileName) {
|
||||
|
@ -118,7 +118,6 @@ bool WinEDA_App::OnInit()
|
|||
wxApp::s_macPreferencesMenuItemId = ID_OPTIONS_SETUP;
|
||||
#endif /* __WXMAC__ */
|
||||
|
||||
|
||||
wxFileName filename;
|
||||
WinEDA_SchematicFrame* frame = NULL;
|
||||
|
||||
|
|
|
@ -29,6 +29,6 @@
|
|||
/**
|
||||
* Array containing strokes for unicode glyphs
|
||||
*/
|
||||
extern const char* newstroke_font[]; //The font
|
||||
extern int newstroke_font_bufsize; //font buffer size
|
||||
extern const char* const newstroke_font[]; //The font
|
||||
extern const int newstroke_font_bufsize; //font buffer size
|
||||
#endif /* __NEWSTROKE_FONT_H__ */
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
release version:
|
||||
2010 feb 17
|
||||
2010 feb 21
|
||||
files (.zip,.tgz):
|
||||
kicad-2010-02-17-RC3a
|
||||
kicad-2010-02-21-RC4
|
||||
|
|
Loading…
Reference in New Issue