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
6adf9163
Commit
6adf9163
authored
Oct 21, 2009
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removed global default clearance, track size and vias drill. Use netclasses values only.
parent
fe10a993
Changes
5
Show whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
7 deletions
+11
-7
CHANGELOG.txt
CHANGELOG.txt
+7
-0
about_kicad.cpp
common/about_kicad.cpp
+1
-1
dialog_drc.cpp
pcbnew/dialog_drc.cpp
+1
-1
dialog_drc_base.cpp
pcbnew/dialog_drc_base.cpp
+0
-3
dialog_drc_base.fbp
pcbnew/dialog_drc_base.fbp
+2
-2
No files found.
CHANGELOG.txt
View file @
6adf9163
...
...
@@ -4,6 +4,13 @@ KiCad ChangeLog 2009
Please add newer entries at the top, list the date and your name with
email address.
2009-oct-21 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
================================================================================
++pcbnew
* Work on Net Classes: tracks and vias sizes, vias drill
come from netclass netclasses values. Global values removed.
* Added for DRC drill vias and microvias min drill value
2009-oct-20 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
================================================================================
Replace component library editor draw item dialog box.
...
...
common/about_kicad.cpp
View file @
6adf9163
...
...
@@ -8,7 +8,7 @@
#include "appl_wxstruct.h"
#define BUILD_VERSION "(200910
15
-unstable)"
#define BUILD_VERSION "(200910
21
-unstable)"
#ifdef HAVE_SVN_VERSION
...
...
pcbnew/dialog_drc.cpp
View file @
6adf9163
...
...
@@ -49,7 +49,7 @@ void DIALOG_DRC_CONTROL::InitValues()
AddUnitSymbol
(
*
m_TrackMinWidthTitle
);
AddUnitSymbol
(
*
m_ViaMinTitle
);
AddUnitSymbol
(
*
m_MicroViaMinTitle
);
m_SetClearance
->
SetValue
(
_
(
"
Use n
etclasses values"
));
m_SetClearance
->
SetValue
(
_
(
"
N
etclasses values"
));
Layout
();
// adding the units above expanded Clearance text, now resize.
...
...
pcbnew/dialog_drc_base.cpp
View file @
6adf9163
...
...
@@ -38,14 +38,11 @@ DIALOG_DRC_CONTROL_BASE::DIALOG_DRC_CONTROL_BASE( wxWindow* parent, wxWindowID i
m_SetClearance
=
new
wxTextCtrl
(
this
,
wxID_ANY
,
wxEmptyString
,
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_SetClearance
->
Enable
(
false
);
m_SetClearance
->
SetToolTip
(
_
(
"In the clearance units, enter the clearance distance"
)
);
fgMinValuesSizer
->
Add
(
m_SetClearance
,
0
,
wxALL
|
wxALIGN_CENTER_VERTICAL
,
5
);
m_ViaMinTitle
=
new
wxStaticText
(
this
,
wxID_ANY
,
_
(
"Via Min Size"
),
wxDefaultPosition
,
wxDefaultSize
,
0
);
m_ViaMinTitle
->
Wrap
(
-
1
);
m_ViaMinTitle
->
Enable
(
false
);
fgMinValuesSizer
->
Add
(
m_ViaMinTitle
,
0
,
wxALIGN_CENTER_VERTICAL
|
wxTOP
|
wxBOTTOM
|
wxLEFT
|
wxALIGN_RIGHT
,
5
);
m_SetViaMinSizeCtrl
=
new
wxTextCtrl
(
this
,
wxID_ANY
,
wxEmptyString
,
wxDefaultPosition
,
wxDefaultSize
,
0
);
...
...
pcbnew/dialog_drc_base.fbp
View file @
6adf9163
...
...
@@ -193,7 +193,7 @@
<property
name=
"size"
></property>
<property
name=
"style"
></property>
<property
name=
"subclass"
></property>
<property
name=
"tooltip"
>
In the clearance units, enter the clearance distance
</property>
<property
name=
"tooltip"
></property>
<property
name=
"value"
></property>
<property
name=
"window_extra_style"
></property>
<property
name=
"window_name"
></property>
...
...
@@ -234,7 +234,7 @@
<object
class=
"wxStaticText"
expanded=
"1"
>
<property
name=
"bg"
></property>
<property
name=
"context_help"
></property>
<property
name=
"enabled"
>
0
</property>
<property
name=
"enabled"
>
1
</property>
<property
name=
"fg"
></property>
<property
name=
"font"
></property>
<property
name=
"hidden"
>
0
</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