Commit 636c708e authored by charras's avatar charras

switch to RC4

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