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
b827c29b
Commit
b827c29b
authored
Jun 04, 2008
by
charras
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
solved: eeschema, small problem with fields selections in BOM generation
parent
9131e2a1
Changes
4
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
238 additions
and
237 deletions
+238
-237
annotate.cpp
eeschema/annotate.cpp
+2
-13
build_BOM.cpp
eeschema/build_BOM.cpp
+51
-42
install.nsi
nsis_win_installer/install.nsi
+7
-7
pcbframe.cpp
pcbnew/pcbframe.cpp
+178
-175
No files found.
eeschema/annotate.cpp
View file @
b827c29b
...
...
@@ -94,17 +94,6 @@ void ReAnnotatePowerSymbolsOnly( void )
}
CmpListStruct
*
AllocateCmpListStrct
(
int
numcomponents
)
{
int
ii
=
numcomponents
*
sizeof
(
CmpListStruct
);
//allocate memory and fill this memory with zeros.
CmpListStruct
*
list
=
(
CmpListStruct
*
)
MyZMalloc
(
ii
);
return
list
;
}
/* qsort function to annotate items by their position.
* Components are sorted
* by reference
...
...
@@ -296,7 +285,7 @@ void AnnotateComponents( WinEDA_SchematicFrame* parent,
if
(
NbOfCmp
==
0
)
return
;
BaseListeCmp
=
AllocateCmpListStrct
(
NbOfCmp
);
BaseListeCmp
=
(
CmpListStruct
*
)
MyZMalloc
(
NbOfCmp
*
sizeof
(
CmpListStruct
)
);
/* Second pass : Init data tables */
if
(
annotateSchematic
)
...
...
@@ -712,7 +701,7 @@ int CheckAnnotate( WinEDA_SchematicFrame* frame, bool oneSheetOnly )
/* Second pass : create the list of components */
ListeCmp
=
AllocateCmpListStrct
(
NbOfCmp
);
ListeCmp
=
(
CmpListStruct
*
)
MyZMalloc
(
NbOfCmp
*
sizeof
(
CmpListStruct
)
);
if
(
!
oneSheetOnly
)
{
...
...
eeschema/build_BOM.cpp
View file @
b827c29b
This diff is collapsed.
Click to expand it.
nsis_win_installer/install.nsi
View file @
b827c29b
...
...
@@ -17,7 +17,7 @@
; General Product Description Definitions
!define PRODUCT_NAME "KiCad"
!define PRODUCT_VERSION "2008.0
1.2
5"
!define PRODUCT_VERSION "2008.0
6.1
5"
!define PRODUCT_WEB_SITE "http://iut-tice.ujf-grenoble.fr/kicad/"
!define COMPANY_NAME ""
!define TRADE_MARKS ""
...
...
@@ -118,8 +118,8 @@ Section $(TITLE_SEC01) SEC01
File /nonfatal "..\doc_conv_orcad_to_kicad_spanish.txt"
SetOutPath "$INSTDIR\template"
File /nonfatal /r "..\template\*"
SetOutPath "$INSTDIR\
winexe
"
File /r "..\
winexe
\*"
SetOutPath "$INSTDIR\
bin
"
File /r "..\
bin
\*"
SetOutPath "$INSTDIR\internat"
File /r "..\internat\*"
SectionEnd
...
...
@@ -156,9 +156,9 @@ Section -CreateShortcuts
CreateShortCut "$SMPROGRAMS\KiCad\Home Page.lnk" "$INSTDIR\HomePage.url"
CreateShortCut "$SMPROGRAMS\KiCad\User Group.lnk" "$INSTDIR\UserGroup.url"
CreateShortCut "$SMPROGRAMS\KiCad\Uninstall.lnk" "$INSTDIR\uninstaller.exe"
CreateShortCut "$SMPROGRAMS\KiCad\KiCad.lnk" "$INSTDIR\
winexe
\kicad.exe"
CreateShortCut "$SMPROGRAMS\KiCad\KiCad.lnk" "$INSTDIR\
bin
\kicad.exe"
CreateShortCut "$SMPROGRAMS\KiCad\Wings3D.lnk" "$INSTDIR\Wings3D.url"
CreateShortCut "$DESKTOP\KiCad.lnk" "$INSTDIR\
winexe
\kicad.exe"
CreateShortCut "$DESKTOP\KiCad.lnk" "$INSTDIR\
bin
\kicad.exe"
SectionEnd
Section -CreateAddRemoveEntry
...
...
@@ -167,7 +167,7 @@ Section -CreateAddRemoveEntry
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "Publisher" "${COMPANY_NAME}"
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "UninstallString" "$INSTDIR\uninstaller.exe"
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "URLInfoAbout" "${PRODUCT_WEB_SITE}"
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\
winexe
\kicad.exe"
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "DisplayIcon" "$INSTDIR\
bin
\kicad.exe"
WriteRegDWORD ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "NoModify" "1"
WriteRegDWORD ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "NoRepair" "1"
WriteRegStr ${UNINST_ROOT} "${PRODUCT_UNINST_KEY}" "Comments" "${COMMENTS}"
...
...
@@ -221,7 +221,7 @@ Section Uninstall
RMDir /r "$INSTDIR\library"
RMDir /r "$INSTDIR\modules"
RMDir /r "$INSTDIR\template"
RMDir /r "$INSTDIR\
winexe
"
RMDir /r "$INSTDIR\
bin
"
RMDir /r "$INSTDIR\internat"
RMDir /r "$INSTDIR\demos"
RMDir /r "$INSTDIR\tutorial"
...
...
pcbnew/pcbframe.cpp
View file @
b827c29b
This diff is collapsed.
Click to expand it.
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