Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
K
kicad-source-mirror
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Commits
Open sidebar
Elphel
kicad-source-mirror
Commits
d115b668
Commit
d115b668
authored
Sep 10, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
set build version to stable.
parent
100c64b4
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
7 deletions
+8
-7
about_kicad.cpp
common/about_kicad.cpp
+6
-5
build_version.h
include/build_version.h
+2
-2
No files found.
common/about_kicad.cpp
View file @
d115b668
...
...
@@ -44,10 +44,14 @@ void InitKiCadAbout( wxAboutDialogInfo& info )
description
<<
(
_T
(
"Build: "
)
)
<<
GetAboutBuildVersion
();
/* Check for unicode */
description
<<
(
wxT
(
"
\n\n
Using "
)
);
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\n
Web sites:
\n
"
);
description
<<
wxT
(
"http://iut-tice.ujf-grenoble.fr/kicad/"
);
...
...
include/build_version.h
View file @
d115b668
...
...
@@ -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
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment