You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

530 lines
26 KiB

18 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
16 years ago
  1. KiCad ChangeLog 2010
  2. ====================
  3. Please add newer entries at the top, list the date and your name with
  4. email address.
  5. 2010-jul-27, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  6. ================================================================================
  7. ++all:
  8. Updated boost to version 1.43
  9. Added boost::polygon (experimental)
  10. ++pcbnew:
  11. Added experimental zone fill calculations with boost::polygon
  12. old file zones_convert_brd_items_to_polygons.cpp has now 2 versions:
  13. zones_convert_brd_items_to_polygons_with_Boost.cpp use boost::polygon to calculate filled areas
  14. zones_convert_brd_items_to_polygons_with_BKbool.cpp use kbool (code cleaned).
  15. >>> to use boost polygon version:
  16. call cmake with option: -DUSE_BOOST_POLYGON_LIBRARY=ON
  17. 2010-jul-12, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  18. ================================================================================
  19. ++pcbnew:
  20. Added grid origin patch from Lorenzo Marcantonio.
  21. Converted set grid dialog from DialogBlocks to wxFormBuilder,
  22. and added in this dialog the grid origin parameters settings.
  23. 2010-jun-24 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
  24. ================================================================================
  25. ++EESchema component library and hierarchical sheet label object improvements.
  26. * Continue component library class clean up and encapsulation work.
  27. * Change hierarchical sheet label container to boost::vector_ptr.
  28. * Encapsulate hierarchical label handling in hierarchical sheet class.
  29. * Convert some missed occurrences of wxString::GetData() to GetChars( wxString ).
  30. * Fix some minor code formatting issues.
  31. 2010-jun-23, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  32. ================================================================================
  33. ++eeschema:
  34. In netlist generation, changed the rule to calculate netnames of nets with labels:
  35. Previously, named nets (i.e. nets with local, hierarchical or global labels) have their name
  36. defined by the first label found in list.
  37. So net names could be changed without really changing the schematic.
  38. Now the names are calculated from the rules (by priority order) :
  39. 1 - use the most top level labels in hierarchies.
  40. 2 - use global labels first, local labels next (hidden power pins names are global labels).
  41. 3 - use alphabetic sort (so, if GND and AGND are connected, the net will be always named AGND,
  42. and adding a VSS connection cannot change the net name)
  43. So power nets and nets that have more than one label cannot have their netname changed
  44. if there is no actual change relative to these nets names in schematic
  45. 2010-Jun-17 UPDATE Dick Hollenbeck <dick@softplc.com>
  46. ================================================================================
  47. ++eeschema:
  48. Added "template fieldnames" to eeschema. Thanks to
  49. Brian Sidebotham <brian.sidebotham@gmail.com> for the origins of this patch.
  50. https://lists.launchpad.net/kicad-developers/msg04828.html
  51. A template fieldnames are a list of template elements
  52. consisting of {name, value, visibility} which you want shown in the eeschema
  53. component fieldname (property) editors (both schematic and library versions
  54. of the editors). Template fieldnames are forced into the editors'
  55. presentation of the fields even though those fields may not exist in the
  56. component. Entering a non-blank value while in a field editor will cause the
  57. field & value to be retained in the component. Therefore it is unusual to
  58. provide a non-blank '.value' in a template, because a trip through the field
  59. editor will invariably add that field to the component since the template
  60. being applied has initially a non blank 'value'. The current template editor
  61. is only going to last about a week and it does not support adding non-blank
  62. template values yet, nor visibility control, only field '.name'. But the
  63. template fieldnames configuration storage and component field editors do
  64. know how to handle template.visible and template.value already, in addition
  65. to template.name. See the file .eeschema in your home directory for the
  66. configuration storage, keyword: FieldNames. e.g. only field Manufacturer has
  67. a '.value':
  68. FieldNames=(templatefields (field (name "Manufacturer")(value "IBM 12")) (field (name "Vendor")) (field (name "Installed")) (field (name "Ralphy") visible))
  69. DSNLEXER is used to parse the FieldNames record, & OUTPUTFORMATTER to generate it.
  70. 2010-jun-15, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  71. ================================================================================
  72. bitmap2component:
  73. Use wxWidgets.
  74. Better user interface
  75. More bitmaps file format import (from wxWidgets)
  76. This tool does not use Kicad classes. So it can be hacked by guys who do not know kicad sources.
  77. 2010-jun-10, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  78. ================================================================================
  79. Added an experimental tool (bitmap2component) to create logos from .bmp bitmaps. Added Potrace library to convert bitmaps to polygons
  80. This tool uses potarce library that converts a bitmap picture (.bmp or .pgm format) to a set of polygons.
  81. bitmap2component converts a bitmap to a .emp footprint (that can be imported by modedit) or a .lib component that can be
  82. imported by libedit.
  83. Note: imported bitmaps logos are vectored by potrace, so there is no pixelation effect.
  84. Scale is 1:1 for 300ppi pictures.
  85. bitmap2component currently runs only is command line mode
  86. run
  87. bitmap2component bitmapfile.bmp bitmapfile.lib 1 to create a schematic component logo
  88. (import this file using libedit)
  89. or
  90. bitmap2component bitmapfile.bmp bitmapfile.emp 1 to create a footprint logo
  91. (import this file using modedit)
  92. 2010-may-18, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  93. ================================================================================
  94. ++All:
  95. Set minimum cmake version requirement to 2.6.4
  96. (does not works with 2.6.1)
  97. ++Pcbnew, Module Editor:
  98. Added footprint name edition in the module properties dialog.
  99. Until now, the footprint name used to retrieve a footprint in lib was
  100. set only when saving the footprint in lib, and could not be edited without saving
  101. the footprint in lib.
  102. 2010-may-01, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  103. ================================================================================
  104. ++Pcbnew:
  105. Board and footprint editors:
  106. Auto update 3D display after footprint or board edition.
  107. (board or footprint is reloaded only when the 3D frame is reactivated, so
  108. no extra time is needed during edition)
  109. 2010-apr-29, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  110. ================================================================================
  111. ++Pcbnew:
  112. Fixed a crash that happens sometimes when opening the design rule dialog.
  113. (due to the sorting function by netclass then by netname)
  114. The sorting by netclass then by netname is now working well.
  115. 2010-apr-23, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  116. ================================================================================
  117. ++Pcbnew:
  118. Fixed minor problems.
  119. Changed French word COTATION to DIMENSION in class COTATION (now class DIMENSION)
  120. 2010-apr-22, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  121. ================================================================================
  122. ++Pcbnew+Gerbview:
  123. Fixed minor problems in printing.
  124. 2010-apr-19, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  125. ================================================================================
  126. ++Pcbnew:
  127. * Added VRML export, from the patch sent by Lorenzo Marcantonio ( october 2009, 11)
  128. * Fixed :
  129. options to control vrml export.
  130. flipped footprints
  131. * Tested using Cortona and Blender.
  132. Needs more testing and refinements
  133. 2010-apr-16, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  134. ================================================================================
  135. ++Cvpcb:
  136. Fixed a bug in footprint display frame (coordinates not displayed). Windows only.
  137. Added right toolbar to select display options
  138. Can now read netlists using UTF8 encoding.
  139. Convert dialog_display_option from DialogBlocks to wxFormBuilder
  140. ++Pcbnew:
  141. Fixed a very minor bug.
  142. Cvpcb+Pcbnew:
  143. Code cleanup in read netlist functions: use now FILE_LINE_READER.
  144. 2010-Apr-12 UPDATE Dick Hollenbeck <dick@softplc.com>
  145. ================================================================================
  146. ++all:
  147. Switched the source code repository from subversion at sourceforge.net to
  148. launchpad using bazaar.
  149. 2010-apr-08, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  150. ================================================================================
  151. ++Pcbnew:
  152. Drc: take in account the clearance "local parameters" for pads that have local parameters.
  153. Until now, only NETCLASS clearance values were used.
  154. (local parameters are used in zone filling)
  155. But because a pad (or a footprint) can have a specific clearance value
  156. Drc used now this value, and NETCLASS value only if no local value specified.
  157. 2010-mar-31, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  158. ================================================================================
  159. ++Pcbnew
  160. Fixed an issue in GERBER file creation, under Vista and W7 only for non administrator users
  161. Plot files were 0 byte length.
  162. This was due to use of function tmpfile() in a GERBER function
  163. to create a temporary file that seems not working using mingw.
  164. Replaced by more usual files functions.
  165. 2010-mar-29, UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  166. ================================================================================
  167. ++Pcbnew
  168. enhancements in printing or plot in SVG format:
  169. When printing technical layers, pads on solder mask or solder paste layers
  170. where printed in sketch mode.
  171. Now they are printed as solid shapes, with dimensions according to
  172. solder paste or solder mask clearances.
  173. 2010-mar-18 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  174. ================================================================================
  175. ++Eeschema
  176. Some bugs fixed
  177. Starting enhancements in Libedit: menubar and commands to "plot"
  178. current component in PNG or SVF file (SVG file not fully working, must be refined)
  179. 2010-mar-13 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  180. ================================================================================
  181. ++ All:
  182. Stable verion for kicad release
  183. 2010-mar-10 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  184. ================================================================================
  185. ++Pcbnew:
  186. Added (see dialog_layers_setup.cpp) compilation options to
  187. -hide non active copper layers
  188. -show inner layers in same order than the layer manager
  189. Currently these options are 2 define
  190. HIDE_INACTIVE_LAYERS
  191. // if defined, displays only active copper layers
  192. // if not displays always 1=the full set (16 layers)
  193. USE_LAYER_MANAGER_COPPER_LAYERS_ORDER
  194. //if defined, used the layer manager copper layers order
  195. // (from FRONT to BACK) to display inner layers.
  196. // if not, use the default order (from BACK to FRONT)
  197. Currently not active, can be changed if the correponding lines are uncommented in dialog_layers_setup.cpp
  198. 2010-Mar-3 UPDATE Dick Hollenbeck <dick@softplc.com>
  199. ================================================================================
  200. ++common
  201. * DSNLEXER now owns an abstract LINE_READER by pointer so that polymorphism
  202. can be used in alternative LINE_READERS.
  203. * Write FILE_LINE_READER and STRING_LINE_READER. The latter can be used
  204. to parse text coming from the clipboard or other string source.
  205. 2010-Feb-20 UPDATE Dick Hollenbeck <dick@softplc.com>
  206. ================================================================================
  207. ++common
  208. DSNLEXER now supports:
  209. 1) nested quotes. This is in anticipation of broader usage of the
  210. file type/syntax. A string like this in the file:
  211. "my ""favorate"" string"
  212. can be returned as
  213. my "favorite" string
  214. 2) CommentsAsTokens is implemented, so you can ask the lexer to return
  215. comments as tokens, so they can be preserved. The default is to ignore
  216. them. A comment is defined as any line that has # as its first
  217. non-blank character. (This means comments cannot follow anything else
  218. on a line.)
  219. 2010-Feb-19 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  220. ================================================================================
  221. kicad: fixing an annoying problem:
  222. * Building the tree project can be *very* long if there are a lot of subdirectories
  223. * in the working directory.
  224. * Unfornately, this happens easily if the project file *.pro is in the home directory
  225. * So the tree project is built "on demand":
  226. * First the tree is built from the current directory and shows files and subdirs.
  227. * > First level subdirs trees are built (i.e subdirs contents are not read)
  228. * > When expanding a subdir, each subdir content is read,
  229. * and the corresponding sub tree is populated on the fly.
  230. 2010-Feb-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  231. ================================================================================
  232. kicad:
  233. * Building the tree project can be *very* long if there are a lot of
  234. * subdirectories in the working directory.
  235. * Unfornately, this happens easily if the project file *.pro
  236. * is in the home directory
  237. * when subdirs are not loaded, double click on a directory to load its files and subdirs
  238. * #define ADD_FILES_IN_SUBDIRS was used until now.
  239. * It is now commented, so one must double click on a subdir name to load its files
  240. * See treeprj_frme.cpp for more info
  241. 2010-Feb-17 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  242. ================================================================================
  243. Eeschema, libedit: fixed last problems when editing alias info.
  244. Now alias changes can be undone, and are correctly updated in lib
  245. when updating the current edited component in memory
  246. New code could be a good starting point to store all aliases info in the
  247. root component,
  248. and also easily store it to the *.lib files and remove the .dcm associated files
  249. (most of code is done)
  250. 2010-Feb-14 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  251. ================================================================================
  252. Eeschema, libedit: fixed add/remove alias functions, broken
  253. All: added in popup menus hotkeys info for zoom commands
  254. 2010-Feb-14 UPDATE Jerry Jacobs <xor.gate.engineering[at]gmail[dot]com>
  255. ================================================================================
  256. ++ KiCad
  257. Check if project is noname.pro so we don't get a error if kicad is first run.
  258. Removed double separator in file menu.
  259. Moved recent project to submenu in Open recent.
  260. ++ Common
  261. Added CTest/CDash support file
  262. Moved helper tool to helper subdirectory
  263. ++ OSX
  264. Update compiling doc
  265. 2010-Feb-07 UPDATE Vesa Solonen <vesa.solonen@hut.fi>
  266. ================================================================================
  267. ++ all:
  268. Finnish translation, take one.
  269. 2010-Feb-04 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  270. ================================================================================
  271. ++ gerbview:
  272. Use layer_widget to manage gerber layers colors and visibility.
  273. 2010-Jan-31 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  274. ================================================================================
  275. ++ pcbnew:
  276. More about work on color selection and items visibility:
  277. removed global variables and a lot of redundancies
  278. Now Modedit does not uses the visiblity options of the board editor
  279. (That can create a problem if hide modules is activated)
  280. work in progress but almost finished
  281. 2010-Jan-30 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  282. ================================================================================
  283. ++ pcbnew:
  284. More about work on color selection and items visibility
  285. work in progress
  286. 2010-Jan-29 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  287. ================================================================================
  288. ++ All:
  289. added a test to solve a problem when cross compiling Kicad under Linux for Windows
  290. Specific to countries that use a comma as separators in floating point numbers notation:
  291. Depending on wxWideget version:
  292. printed as 0,5 and read as 0.5
  293. or
  294. printed as 0.5 and read as 0,5
  295. So float values are always broken in dialogs (many are seen as 0)
  296. Now a test is made, and if there are problems relative to floats
  297. (write/read conversion error),
  298. use the C convention (always a point as separator)
  299. ++ eeschema:
  300. Removed metrics grid values, that cannot be handled in schematic.
  301. (because 2 items are seen as connected if they have the same coordinates
  302. mixing mm and mils with internal units = 1 mil break netlist
  303. and ERC calculations
  304. So grid value *must* be an integer (in 1/1000 inch).
  305. And metric grid is not very useful in schematic.
  306. (Also 1 mil and 0.025 mm can be seen as the same value for a schematic that do not
  307. needs precision in dimensions, so no need to have mils and mm in grid values)
  308. ++ pcbnew:
  309. Starting work on color selection and items visibility
  310. * code cleaning and removing global values.
  311. * Separe visibility options for board editor and module editor
  312. (work in progress, just starting)
  313. 2010-Jan-28 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  314. ================================================================================
  315. *fixed eeschema crash when using the hotkey m (move) command.
  316. * Pcbnew :added option to show/hide footprints values and/or references
  317. See if show/hide footprints texts option is now always useful.
  318. 2010-Jan-27 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  319. ================================================================================
  320. ++ Pcbnew:
  321. Code cleaning about visibility variables (duplicates) in draw functions.
  322. Removed old color and visiblity dialog
  323. work in progress
  324. 2010-Jan-24 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  325. ================================================================================
  326. ++ Pcbnew:
  327. in variable names, change non existent word Hight to High
  328. Remove redundant tool in left toolbar (option toolbar)
  329. (this option is now in layers manager)
  330. Show layers in horizontal combo box in same order as in layer manager.
  331. ++all:
  332. minor code cleaning.
  333. 2010-Jan-23 UPDATE Dick Hollenbeck <dick@softplc.com>
  334. ================================================================================
  335. ++pcbnew's PCB_LAYER_WIDGET
  336. Removed wxformbuilder dependency from LAYER_WIDGET, thus killing off
  337. layer_widget_base.* and panel_layer_select.fbp.
  338. Added aPointSize to LAYER_WIDGET constructor so it uses that font size.
  339. Removed layer_widget.h from wxPcbStruct.h for faster compiles with less
  340. dependencies, and this meant moving the class LYRS out of
  341. class WinEDA_PcbFrame. While doing that I renamed it to PCB_LAYER_WIDGET.
  342. Integration of PCB_LAYER_WIDGET into WinEDA_PcbFrame to fully support
  343. the layer change logic. Added syncLayerWidget(),
  344. * WinEDA_PcbFrame:
  345. Added syncLayerWidget(), syncLayerBox() (via a rename), setActiveLayer(),
  346. and getActiveLayer().
  347. Use a font size in PCB_LAYER_WIDGET 80% of the system font size for systems
  348. with screen resolution height <= 900, or 100% if not. See WinEDA_PcbFrame
  349. constructor.
  350. * See TODO.txt for more things that need to be done.
  351. 2010-Jan-23 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  352. ================================================================================
  353. ++ Pcbnew:
  354. Update Layer manager display when changing active layer (from hotkey or menus)
  355. fixed minor problems and fixed Layer Alignment Target bug.
  356. 2010-Jan-22 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
  357. ================================================================================
  358. Minor fixes and code cleaning.
  359. * Remove redundant background redrawing RedrawActiveWindow.
  360. * Remove redundant managed cursor callback in RedrawActiveWindow.
  361. * Use refresh to redraw instead of directly calling RedrawActiveWindow.
  362. * Remove unused SetDrawBgColor for drawframe.cpp.
  363. * Fix compiler warning in cvpcb/cvframe.cpp.
  364. * Fix menu spelling and syntax errors in pcbnew.
  365. * Rename Trace_Curseur to DrawCursor in common/drawpanel.cpp.
  366. 2010-Jan-21 UPDATE Dick Hollenbeck <dick@softplc.com>
  367. ================================================================================
  368. ++pcbnew
  369. Integration of LAYER_WIDGET into WinEDA_PcbFrame. See
  370. TODO.txt for more things that need to be done.
  371. 2010-Jan-17 UPDATE Jerry Jacobs <xor.gate.engineering[at]gmail[dot]com>
  372. ================================================================================
  373. More work to make kicad more Mac OS X compliant.
  374. * Workaround for wxAboutDialog bug.
  375. * WXMAC needs wxID_EXIT to make closing the application function properly.
  376. * Workaround for hotkeys, on Mac OS X we can't use Fx keys.
  377. This needs to be further implemented and is a work in progress.
  378. We need to modify the hotkey code to display Mac OS X the
  379. special modifier keys in the hotkey list.
  380. 2010-Jan-18 UPDATE Dick Hollenbeck <dick@softplc.com>
  381. ================================================================================
  382. ++any
  383. Finished up complete implementation of class LAYER_WIDGET and am now ready to
  384. integrate it into PCBNEW. This class was kept as general as possible by
  385. omitting as many Kicad document structures as possible, and so can be used
  386. in GERBVIEW. For GERBVIEW it could benefit from some minor additional
  387. work such as a "move up" function for layer order changes. This is a matter
  388. of rearranging wxWindows within the m_LayersFlexGridSizer.
  389. Integration into PCBNEW should be done in just a few days.
  390. 2010-Jan-17 UPDATE Jerry Jacobs <xor.gate.engineering[at]gmail[dot]com>
  391. ================================================================================
  392. + EESchema
  393. + Added Torsten Huter's patch for hotkeys
  394. + Moved recent opened documents to submenu
  395. + Pcbnew
  396. + Big (re)organisation of pcbframe menubar and cleanup
  397. 2010-Jan-13 UPDATE Wayne Stambaugh <stambaughw@verizon.net>
  398. ================================================================================
  399. Minor bug fixes, compiler warning fixes and code cleaning.
  400. * Fix debug asserts when passing NULL pointers to wxAuiPaneInfo.
  401. * Fix Kicad main window sash sizer bug when using wxAui.
  402. * Remove specctra_test from Visual Studio builds to prevent build errors.
  403. * Add WIN32 to layer widget test so it will build properly on Visual Studio.
  404. * Fixed compiler conversion warnings in PCBNew.
  405. * Fixed worksheet print scaling in PCBNew.
  406. * Minor code renaming.
  407. 2010-Jan-12 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  408. ================================================================================
  409. ++All
  410. Use wxAutoBufferedPaintDC in OnPaint event
  411. Seems solves slow grid redraw on some PC (tested under Window 7)
  412. and is faster than use wxPaintDC, not buffered
  413. (note MACOSX has natively a double buffer, so no change for MACOSX)
  414. 2010-Jan-08 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  415. ================================================================================
  416. ++Gerbview
  417. Added support of arcs in polygons outlines.
  418. Needed to show copper areas in some gerber files
  419. Not fully tested but works better than without this support...
  420. 2010-Jan-03 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  421. ================================================================================
  422. ++pcbnew
  423. - fixed a potential bug in a fill zone function: AddClearanceAreasPolygonsToPolysList()
  424. - Try to fix a problem with AddClearanceAreasPolygonsToPolysList() under Window Vista and Window 7
  425. This is perhaps a problem in kbool library
  426. (a bug in Bool_Engine destructor ?)
  427. It happens when:
  428. - a lot of polygon corners are added in group A
  429. - nothing in group B
  430. - No operation asked in kbool engine ( that also has a bug if an operation is asked
  431. with no polygon in group B)
  432. - and call the Bool_Engine destructor.
  433. Could be a stack error or overflow, very hard to locate and debug.
  434. - Under Vista seems create always a crash.
  435. - Under Window 7 sometimes create a crash.
  436. - No problem under XP and Linux.
  437. -Workaround:
  438. Leave the group A void if group B is void.
  439. I am not sure this change fix the problem.
  440. Just it solves this problem with 2 samples boards that crash Pcbnew without this change.
  441. 2010-Jan-01 UPDATE Jean-Pierre Charras <jean-pierre.charras@gipsa-lab.inpg.fr>
  442. ================================================================================
  443. ++pcbnew
  444. Rewrite plot dialog using wxDialogBlocks.
  445. Display layers list according to the Setup layers dialog order.
  446. ++Gerbview
  447. Write Gerbview plot dialog using wxDialogBlocks.
  448. Do not use anymore the Pcbnew one.