- 01 Nov, 2013 1 commit
-
-
jean-pierre charras authored
-
- 22 Sep, 2013 1 commit
-
-
Wayne Stambaugh authored
* Make footprint viewer work properly with library table. * Fix bug in Eagle plugin when enumerating footprints. * Add missing P-CAD plugin from footprint library table editing dialog. * Fix bug in FOOTPRINT_INFO::LoadLibraries when error occur loading footprints from libraries.
-
- 21 Sep, 2013 1 commit
-
-
Miguel Angel Ajo authored
-
- 20 Sep, 2013 1 commit
-
-
Build System authored
pcbnew.py + doxygen-xml files, and build .i files with docstrings, those .i files are included back again to build a pcbnew.py with extended documentation from C++, finally we take the final pcbnew.py to build the doxygen-python documentation
-
- 19 Jul, 2013 1 commit
-
-
jean-pierre charras authored
-
- 17 Mar, 2013 3 commits
-
-
jean-pierre charras authored
Pcbnew: fix Bug #1156193 . Fix compil issues when KICAD_SCRIPTING_WXPYTHON is not enabled and KICAD_SCRIPTING is enabled
-
Miguel Angel Ajo authored
-
Miguel Angel Ajo authored
-
- 16 Mar, 2013 1 commit
-
-
Miguel Angel Ajo authored
Allow plugins to be reloaded without closing/opening pcbnew, next step is plugin editor, just a few lines away...
-
- 15 Mar, 2013 1 commit
-
-
Miguel Angel Ajo authored
LOCALE_IO toggle implementation for locale switches on scripting; code cleanups to comply with kicad coding style policy
-
- 12 Mar, 2013 1 commit
-
-
Miguel Angel Ajo authored
Reverted back the ( i ) parameters for python, applied the PyGILState_Ensure from Dick into his PyLOCK class
-
- 11 Mar, 2013 1 commit
-
-
Dick Hollenbeck authored
improvements to python's GIL acquisition and release, but not done yet, since I think the GIL needs to be acquired even when not involving wxPython.
-
- 11 Feb, 2013 1 commit
-
-
Wayne Stambaugh authored
* Improve the stable and testing build version option logic. * Use CMake FindPythonInterp to configure the Python interpreter. * Use Python interpreter to determine the system Python module install path if not already defined on the command line. * Add header symbol checks for asinh(), acosh(), and atanh(). * Add test source to check for isinf() which can be defined as a C++template. * Replace conditional compile on windows systems for aXXXh() with CMake configuration tests. * A few minor MSVC compile fixes. * Fix incorrect python environment string in fixswigimports.py * Create a separate document for KiCad CMake build options. * Create a separate how to compile KiCad on Windows document.
-
- 14 Nov, 2012 1 commit
-
-
Dick Hollenbeck authored
This required the additional compiler command line option "-std=c++0x". 2) Switch to unique_ptr from auto_ptr which is C++ deprecated. 3) Change to new English layer names per mailing list discussion, see class_board.cpp. 4) When saving to *.kicad_pcb or *.kicad_mod, identify opportunities to use wildcard layer sets, for pads so far. 5) Switch to two std::string hashtables in pcb_parser.cpp, away from one wxString based one for layer names and layer sets mapping. One hashtable holds the mask, the other the index. Layer sets are only in the mask table. 6) Move "LOCALE_IO toggle" into PCB_IO::Format() since it is a public API function and caller should find it as convenient as possible to use. LOCALE_IO should handle nesting OK in the case where public Format() is called from one of the Footprint*() functions. 7) Drop support for "export module to new library". Creating new libraries will have to be handled in concert with library table entries, and we've talked recently about creating a better footprint library manager, one that resides in a DLL/DSO. So this kind of functionality needs to be handled in there in the near future. 8) Change name of exported PCB_IO module/footprint to *.kicad_mod and not *.emp.
-
- 02 Aug, 2012 2 commits
-
-
Miguel Angel Ajo authored
pcbnew scripting: cleanup, renamed KICAD_SCRIPTING_EXPERIMENT to KICAD_SCRIPTING_WXPYTHON, now every flavour compiles
-
Miguel Angel Ajo authored
-
- 01 Aug, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 22 Jul, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 15 Jul, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 06 Jul, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 27 Jun, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 16 May, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 10 May, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 09 May, 2012 1 commit
-
-
Miguel Angel Ajo authored
* Footprint wizard C++ generic classes * Footprint wizard C++ to python wrappers * Automatic plugin loader from ~/.kicad/plugins * Python plugin architecture: Footprint wizards
-
- 05 May, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 20 Apr, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 09 Apr, 2012 2 commits
-
-
Miguel Angel Ajo authored
-
Miguel Angel Ajo authored
detect building status of the swig .py file (on parallel make builds). Fix unit conversion returns (From_xxx) to integer, what's all the wxPoint/wxRect/wx.. expect. Extended createPcb.py example
-
- 08 Apr, 2012 2 commits
-
-
Miguel Angel Ajo authored
-
Miguel Angel Ajo authored
Fixed wxSize bug, wxPoint(double,double) support, units. Fixed GetBoard wasn't accessible at every build. Extended example for board creation (now adds pads). Also fixed the _pcbnew loading from pcbnew which should only go to the internal _pcbnew and not the _pcbnew.so/dso. Right installation path for _pcbnew.so (in linux only)
-
- 06 Apr, 2012 2 commits
-
-
Miguel Angel Ajo authored
BOARD::Add now it's wrapped in python and clears the .thisown flag on python to avoid GC from deleting the object later (BOARD will do)
-
Miguel Angel Ajo authored
-
- 05 Apr, 2012 1 commit
-
-
Miguel Angel Ajo authored
-
- 19 Mar, 2012 3 commits
-
-
Miguel Angel Ajo authored
-
Miguel Angel Ajo authored
* dlist.i empty list fixed (Segfault) * units.i: FromMM FromMils ToMM ToMils * added a little example (listPcb.py) that shows most items in a board
-
Miguel Angel Ajo authored
DLIST iterator code, now we can do: for module in pcb.m_Modules: print module.GetReference() instead of: module = pcb.m_Modules while module: print module.GetReference() module = module.Next() or even: module_list = list(pcb.m_Modules)
-
- 17 Mar, 2012 1 commit
-
-
Miguel Angel Ajo authored
* Added a first test 'testLoadSave.py'
-