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
b707493f
Commit
b707493f
authored
Nov 26, 2011
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Update version number
parent
63399bbe
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
17 additions
and
14 deletions
+17
-14
3d_read_mesh.cpp
3d-viewer/3d_read_mesh.cpp
+1
-1
build_version.cpp
common/build_version.cpp
+2
-2
install.nsi
packaging/windows/nsis/install.nsi
+1
-1
block.cpp
pcbnew/block.cpp
+11
-8
version.txt
version.txt
+2
-2
No files found.
3d-viewer/3d_read_mesh.cpp
View file @
b707493f
...
...
@@ -520,7 +520,7 @@ int S3D_MASTER::ReadGeometry( FILE* file, int* LineNum )
{
int
kk
=
coordIndex
[
jj
]
*
3
;
if
(
(
kk
<
0
)
||
((
kk
+
3
)
>
points
.
size
())
)
if
(
(
kk
<
0
)
||
((
kk
+
3
)
>
(
int
)
points
.
size
())
)
{
wxLogError
(
wxT
(
"3D geometry index read error <%s> at line %d."
),
GetChars
(
FROM_UTF8
(
text
)
),
*
LineNum
);
...
...
common/build_version.cpp
View file @
b707493f
...
...
@@ -7,9 +7,9 @@
#ifndef KICAD_BUILD_VERSION
#if defined KICAD_GOST
# define KICAD_BUILD_VERSION "(2011-nov-
12
GOST)"
# define KICAD_BUILD_VERSION "(2011-nov-
26
GOST)"
#else
# define KICAD_BUILD_VERSION "(2011-nov-
12
)"
# define KICAD_BUILD_VERSION "(2011-nov-
26
)"
#endif
#endif
...
...
packaging/windows/nsis/install.nsi
View file @
b707493f
...
...
@@ -17,7 +17,7 @@
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2011.11.
12
"
!define PRODUCT_VERSION "2011.11.
26
"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define SOURCEFORGE_WEB_SITE "http://kicad.sourceforge.net/"
!define COMPANY_NAME ""
...
...
pcbnew/block.cpp
View file @
b707493f
...
...
@@ -24,7 +24,7 @@
*/
/**
* @file
pcbnew/
block.cpp
* @file block.cpp
*/
...
...
@@ -103,7 +103,10 @@ public:
private
:
void
ExecuteCommand
(
wxCommandEvent
&
event
);
void
OnCancel
(
wxCommandEvent
&
event
)
{
EndModal
(
-
1
);
}
void
OnCancel
(
wxCommandEvent
&
event
)
{
EndModal
(
wxID_CANCEL
);
}
void
checkBoxClicked
(
wxCommandEvent
&
aEvent
)
{
if
(
m_Include_Modules
->
GetValue
()
)
...
...
@@ -116,19 +119,19 @@ private:
static
bool
InstallBlockCmdFrame
(
PCB_BASE_FRAME
*
parent
,
const
wxString
&
title
)
{
int
nocmd
;
wxPoint
oldpos
=
parent
->
GetScreen
()
->
GetCrossHairPosition
();
parent
->
DrawPanel
->
m_IgnoreMouseEvents
=
true
;
DIALOG_BLOCK_OPTIONS
dlg
(
parent
,
title
);
DIALOG_BLOCK_OPTIONS
*
dlg
=
new
DIALOG_BLOCK_OPTIONS
(
parent
,
title
);
nocmd
=
dlg
.
ShowModal
();
int
cmd
=
dlg
->
ShowModal
();
dlg
->
Destroy
();
parent
->
GetScreen
()
->
SetCrossHairPosition
(
oldpos
);
parent
->
DrawPanel
->
MoveCursorToCrossHair
();
parent
->
DrawPanel
->
m_IgnoreMouseEvents
=
false
;
return
nocmd
?
false
:
true
;
return
cmd
==
wxID_OK
;
}
...
...
@@ -171,7 +174,7 @@ void DIALOG_BLOCK_OPTIONS::ExecuteCommand( wxCommandEvent& event )
blockDrawItems
=
m_DrawBlockItems
->
GetValue
();
blockIncludeItemsOnInvisibleLayers
=
m_checkBoxIncludeInvisible
->
GetValue
();
EndModal
(
0
);
EndModal
(
wxID_OK
);
}
...
...
@@ -285,7 +288,7 @@ bool PCB_EDIT_FRAME::HandleBlockEnd( wxDC* DC )
if
(
!
GetScreen
()
->
m_BlockLocate
.
GetCount
()
&&
GetScreen
()
->
m_BlockLocate
.
m_Command
!=
BLOCK_ZOOM
)
{
if
(
!
InstallBlockCmdFrame
(
this
,
_
(
"Block Operation"
)
)
)
if
(
InstallBlockCmdFrame
(
this
,
_
(
"Block Operation"
)
)
==
false
)
{
cancelCmd
=
true
;
...
...
version.txt
View file @
b707493f
release version:
2011 nov
12
2011 nov
26
files (.zip,.tgz):
kicad-2011-11-
12
kicad-2011-11-
26
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