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
1ab68d8f
Commit
1ab68d8f
authored
Jun 19, 2010
by
jean-pierre charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed very minor things.
parent
f3d5c494
Changes
8
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
14 additions
and
1131 deletions
+14
-1131
INSTALL.txt
INSTALL.txt
+3
-3
gui_bm2cmp.cpp
bitmap2component/gui_bm2cmp.cpp
+0
-1122
build_BOM.cpp
eeschema/build_BOM.cpp
+6
-0
files-io.cpp
eeschema/files-io.cpp
+1
-1
files.cpp
gerbview/files.cpp
+1
-1
automove.cpp
pcbnew/automove.cpp
+1
-2
dialog_gendrill_base.cpp
pcbnew/dialog_gendrill_base.cpp
+1
-1
dialog_gendrill_base.fbp
pcbnew/dialog_gendrill_base.fbp
+1
-1
No files found.
INSTALL.txt
View file @
1ab68d8f
...
...
@@ -106,9 +106,9 @@ Installation from source code
Some dependencies must be satisfied for the correct installation of KiCad:
wxWidgets >= 2.
6.3.3
http://www.wxwidgets.org/
CMake >= 2.
4.6
http://www.cmake.org/
Boost C++ Libraries
http://www.boost.org/
wxWidgets >= 2.
8.11
http://www.wxwidgets.org/
CMake >= 2.
6.4
http://www.cmake.org/
Boost C++ Libraries
(files used by kicad are provided in kicad sources)
http://www.boost.org/
OpenGL
Linux: Mesa 3D Graphics Library http://www.mesa3d.org/
Windows: built-in
...
...
bitmap2component/gui_bm2cmp.cpp
deleted
100644 → 0
View file @
f3d5c494
This diff is collapsed.
Click to expand it.
eeschema/build_BOM.cpp
View file @
1ab68d8f
...
...
@@ -797,6 +797,10 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
// Store fields. Store non empty fields only.
for
(
int
jj
=
FOOTPRINT
;
jj
<
currCmp
->
GetFieldCount
();
jj
++
)
{
//Ensure fields exists in dummy component
if
(
dummyCmp
.
GetFieldCount
()
<
currCmp
->
GetFieldCount
()
)
dummyCmp
.
AddField
(
*
currCmp
->
GetField
(
jj
)
);
// store useful data
if
(
!
currCmp
->
GetField
(
jj
)
->
m_Text
.
IsEmpty
()
)
dummyCmp
.
GetField
(
jj
)
->
m_Text
=
currCmp
->
GetField
(
jj
)
->
m_Text
;
}
...
...
@@ -848,6 +852,8 @@ int DIALOG_BUILD_BOM::PrintComponentsListByPart(
// print fields, on demand
for
(
int
jj
=
FIELD1
;
jj
<=
FIELD8
;
jj
++
)
{
if
(
dummyCmp
.
GetFieldCount
()
>=
jj
)
break
;
if
(
IsFieldChecked
(
jj
)
)
fprintf
(
f
,
"%c%4s"
,
s_ExportSeparatorSymbol
,
CONV_TO_UTF8
(
dummyCmp
.
GetField
(
jj
)
->
m_Text
)
);
...
...
eeschema/files-io.cpp
View file @
1ab68d8f
...
...
@@ -194,7 +194,7 @@ bool WinEDA_SchematicFrame::LoadOneEEProject( const wxString& FileName, bool IsN
GetChars
(
fn
.
GetFullPath
()
),
GetChars
(
errMsg
)
);
DisplayError
(
this
,
prompt
);
msg
+=
wxT
(
" ->Error"
);
msg
+=
_
(
" ->Error"
);
}
PrintMsg
(
msg
);
...
...
gerbview/files.cpp
View file @
1ab68d8f
...
...
@@ -62,7 +62,7 @@ void WinEDA_GerberFrame::Files_io( wxCommandEvent& event )
else
{
wxString
msg
;
msg
.
Printf
(
_
(
"GerbView only supports a maximum of %d layers.
You must first \
msg
.
Printf
(
_
(
"GerbView only supports a maximum of %d layers. You must first \
delete an existing layer to load any new layers."
),
NB_LAYERS
);
wxMessageBox
(
msg
);
}
...
...
pcbnew/automove.cpp
View file @
1ab68d8f
...
...
@@ -204,8 +204,7 @@ void WinEDA_PcbFrame::AutoMoveModulesOnPcb( bool PlaceModulesHorsPcb )
if
(
PlaceModulesHorsPcb
&&
!
EdgeExists
)
{
DisplayError
(
this
,
_
(
"Could not automatically place modules. No board \
edges detected."
)
);
_
(
"Could not automatically place modules. No board outlines detected."
)
);
return
;
}
...
...
pcbnew/dialog_gendrill_base.cpp
View file @
1ab68d8f
...
...
@@ -58,7 +58,7 @@ DIALOG_GENDRILL_BASE::DIALOG_GENDRILL_BASE( wxWindow* parent, wxWindowID id, con
int
m_Choice_Drill_MapNChoices
=
sizeof
(
m_Choice_Drill_MapChoices
)
/
sizeof
(
wxString
);
m_Choice_Drill_Map
=
new
wxRadioBox
(
this
,
wxID_ANY
,
_
(
"Drill Sheet:"
),
wxDefaultPosition
,
wxDefaultSize
,
m_Choice_Drill_MapNChoices
,
m_Choice_Drill_MapChoices
,
1
,
wxRA_SPECIFY_COLS
);
m_Choice_Drill_Map
->
SetSelection
(
0
);
m_Choice_Drill_Map
->
SetToolTip
(
_
(
"Creates a drill map in PS
r
HPGL or others formats"
)
);
m_Choice_Drill_Map
->
SetToolTip
(
_
(
"Creates a drill map in PS
,
HPGL or others formats"
)
);
bMiddleBoxSizer
->
Add
(
m_Choice_Drill_Map
,
0
,
wxALL
|
wxEXPAND
,
5
);
...
...
pcbnew/dialog_gendrill_base.fbp
View file @
1ab68d8f
...
...
@@ -335,7 +335,7 @@
<property
name=
"size"
></property>
<property
name=
"style"
>
wxRA_SPECIFY_COLS
</property>
<property
name=
"subclass"
></property>
<property
name=
"tooltip"
>
Creates a drill map in PS
r
HPGL or others formats
</property>
<property
name=
"tooltip"
>
Creates a drill map in PS
,
HPGL or others formats
</property>
<property
name=
"window_extra_style"
></property>
<property
name=
"window_name"
></property>
<property
name=
"window_style"
></property>
...
...
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