Re: [Kicad-developers] [PATCH] - fix bug #968345.

2012-04-07 Thread Dick Hollenbeck
Alexander, This looks promising. My only concern is the name of the automatic variable aLogicalPaperSize. We normally only use the 'a' prefix for use by 'a'rguments to a function, not local automatic variables. Also, it is not evident what logical brings to the understanding. I suggest

Re: [Kicad-developers] Fatfingering with bzr...

2012-04-07 Thread lajos kamocsay
Hi Dick- Thanks for the email. Distributed revision control saved me many times, I'm really glad the kicad project is using it. I looked at the doc repository and read this thread, but couldn't really figure out which revision he wanted to go back to. But all the old revisions are there, so

Re: [Kicad-developers] Hello, I want to help with you project

2012-04-07 Thread Miguel Angel Ajo Pelayo
2012/3/27 Martijn Kuipers martijn.kuip...@gmail.com As a vision I see more of the project rewritten in a python/WxPython/Cython (not SWIG, sorry folks) Note: I don't know anything about Cython but a quick google. I think not many devs on the list share your vision. There is some

Re: [Kicad-developers] Kicad scripting progress :-)

2012-04-07 Thread Miguel Angel Ajo Pelayo
During the last two days I had some hours to spend on scripting again, I've been able to fix some memory management problems (objects added to a board or module get deleted by board/module object, but python tried to delete them too, now that condition is detected and avoided - .thisown=0 in

Re: [Kicad-developers] KICAD_PLUGIN for libraries/components (pcbnew)

2012-04-07 Thread Miguel Angel Ajo Pelayo
Woops, Dick?, I see that's in your 2nd point of your current TODO list, anyway, if you find it interesting I could work on this with your review or based on your ideas if you already spent some time working on it's design. 2012/4/7 Miguel Angel Ajo Pelayo miguelan...@nbee.es I

[Kicad-developers] New Pcbnew file format.

2012-04-07 Thread Wayne Stambaugh
It took long than I anticipated (doesn't always?) but I just committed the code to allow saving board files to the new s-expression based file format. I would like as many folks as possible to save their favorite board file using File-Save As to the new format and take a look at the result. My

Re: [Kicad-developers] New Pcbnew file format.

2012-04-07 Thread Wayne Stambaugh
Oops! To be able to save to the new file format you must add -DUSE_PCBNEW_SEXPR_FILE_FORMAT=ON and -DUSE_PCBNEW_NANOMETRES=ON when invoking CMake in order to build the new code. On 4/7/2012 2:09 PM, Wayne Stambaugh wrote: It took long than I anticipated (doesn't always?) but I just committed