1. 11 Mar, 2015 1 commit
  2. 04 Mar, 2015 1 commit
  3. 27 Feb, 2015 1 commit
  4. 19 Feb, 2015 1 commit
    • Wayne Stambaugh's avatar
      wxPython configuration fixes. · 04c55f09
      Wayne Stambaugh authored
      * Add support for setting python site package path to PYTHON_SITE_PACKAGE_PATH.
      * Move configure_file() so WXPYTHON_VERSION is already initialized before creating
        config.h (Duh!).
      * Add status message to indicate the version of wxPython found.
      04c55f09
  5. 15 Feb, 2015 1 commit
    • Wayne Stambaugh's avatar
      wxPython find and version loading fixes. (fixes lp:1408060) · 69553d6f
      Wayne Stambaugh authored
      * Add test to CMakeLists.txt to verify wxPython is installed when
        KICAD_SCRIPTING_WXPYTHON=ON.
      * Add test to make sure wxPython version major and minor numbers match
        the version of wxWidgets found.
      * Add code to set the correct version of wxPython to the python scripting
        initialization code.
      * Minor code simplification in Pcbnew KIFACE main window creation.
      69553d6f
  6. 03 Feb, 2015 1 commit
  7. 30 Jan, 2015 1 commit
    • jean-pierre charras's avatar
      ModEdit: add a settings menu option(and the corresponding dialog) to set... · 8412f2ad
      jean-pierre charras authored
      ModEdit: add a settings menu option(and the corresponding dialog) to set default values used when creating a footprint or add graphic items to a footprint being edited.
      These settings are now not common to the board editor, because the footprint editor can be run outside the board editor.
      download_boost.cmake: ignore  .htm* files when installing boost. They are not used, and often have a very very long (and stupid) name which sometimes creates issues.
      8412f2ad
  8. 27 Jan, 2015 1 commit
  9. 16 Jan, 2015 1 commit
  10. 30 Dec, 2014 1 commit
  11. 22 Dec, 2014 2 commits
  12. 28 Nov, 2014 1 commit
    • Bernhard Stegmaier's avatar
      OSX build fixes. · b495ad03
      Bernhard Stegmaier authored
      * Make defintion of OSX build target a requirement.
      * Update OSX build documenation to reflect build changes.
      * Update OSX build script to reflect build changes.
      b495ad03
  13. 14 Nov, 2014 1 commit
  14. 31 Oct, 2014 1 commit
    • Wayne Stambaugh's avatar
      Change Windows install tree to match Linux install tree. · 03d50b22
      Wayne Stambaugh authored
      * Move all Windows install subfolders from ${CMAKE_INSTALL_PREFIX}/share/ to
        ${CMAKE_INSTALL_PREFIX}/share/kicad/.
      * Remove unused define DEFAULT_FP_LIB_PATH from build configuration.
      * Remove Boost target when skipping internal Boost build.
      * Update INSTALL.txt to reflect install tree changes.
      03d50b22
  15. 25 Oct, 2014 1 commit
  16. 24 Oct, 2014 2 commits
  17. 19 Oct, 2014 1 commit
  18. 11 Oct, 2014 2 commits
  19. 30 Sep, 2014 1 commit
  20. 27 Sep, 2014 2 commits
  21. 26 Sep, 2014 1 commit
    • Wayne Stambaugh's avatar
      Force wxWidgets to version 3.0.0 or later and OSX build fixes. · ed199670
      Wayne Stambaugh authored
      * Add version detection to FindwxWidgets.cmake
      * Convert commands and macro names to lower case in FindwxWidgets.cmake.
      * Use find_package_handle_standard_args() to handle version comparison.
      * Update FindPackageHandleStandardArgs.cmake from CMake 3.0.2 to get the
        latest bug fixes.
      * Add an option to ignore building every OSX dependency from source and
        use find_package() the way it is supposed to work unless the developer
        specifically requests building everything from source.
      ed199670
  22. 23 Aug, 2014 1 commit
    • Wayne Stambaugh's avatar
      Fix MinGW 64 bit build buigs. · a27845e9
      Wayne Stambaugh authored
      * Patch Boost interlocked.hpp from version 1.56.
      * Fix segfault in Eeschema when auto save event occurs before root sheet is initialized.
      * Add assertion when SCH_SHEET_PATH::BuildSheetList is called with NULL pointer.
      a27845e9
  23. 22 Aug, 2014 1 commit
  24. 27 Apr, 2014 1 commit
  25. 23 Apr, 2014 1 commit
  26. 03 Apr, 2014 1 commit
  27. 22 Mar, 2014 1 commit
  28. 20 Mar, 2014 1 commit
    • Dick Hollenbeck's avatar
      * KIWAY Milestone A): Make major modules into DLL/DSOs. · 2c67c3ff
      Dick Hollenbeck authored
      !   The initial testing of this commit should be done using a Debug build so that
          all the wxASSERT()s are enabled.  Also, be sure and keep enabled the
          USE_KIWAY_DLLs option.  The tree won't likely build without it.  Turning it
          off is senseless anyways.  If you want stable code, go back to a prior version,
          the one tagged with "stable".
      
      *   Relocate all functionality out of the wxApp derivative into more finely
          targeted purposes:
          a) DLL/DSO specific
          b) PROJECT specific
          c) EXE or process specific
          d) configuration file specific data
          e) configuration file manipulations functions.
      
          All of this functionality was blended into an extremely large wxApp derivative
          and that was incompatible with the desire to support multiple concurrently
          loaded DLL/DSO's ("KIFACE")s and multiple concurrently open projects.
          An amazing amount of organization come from simply sorting each bit of
          functionality into the proper box.
      
      *   Switch to wxConfigBase from wxConfig everywhere except instantiation.
      *   Add classes KIWAY, KIFACE, KIFACE_I, SEARCH_STACK, PGM_BASE, PGM_KICAD,
          PGM_SINGLE_TOP,
      *   Remove "Return" prefix on many function names.
      *   Remove obvious comments from CMakeLists.txt files, and from else() and endif()s.
      *   Fix building boost for use in a DSO on linux.
      *   Remove some of the assumptions in the CMakeLists.txt files that windows had
          to be the host platform when building windows binaries.
      *   Reduce the number of wxStrings being constructed at program load time via
          static construction.
      *   Pass wxConfigBase* to all SaveSettings() and LoadSettings() functions so that
          these functions are useful even when the wxConfigBase comes from another
          source, as is the case in the KICAD_MANAGER_FRAME.
      *   Move the setting of the KIPRJMOD environment variable into class PROJECT,
          so that it can be moved into a project variable soon, and out of FP_LIB_TABLE.
      *   Add the KIWAY_PLAYER which is associated with a particular PROJECT, and all
          its child wxFrames and wxDialogs now have a Kiway() member function which
          returns a KIWAY& that that window tree branch is in support of.  This is like
          wxWindows DNA in that child windows get this member with proper value at time
          of construction.
      *   Anticipate some of the needs for milestones B) and C) and make code
          adjustments now in an effort to reduce work in those milestones.
      *   No testing has been done for python scripting, since milestone C) has that
          being largely reworked and re-thought-out.
      2c67c3ff
  29. 14 Mar, 2014 1 commit
  30. 19 Feb, 2014 1 commit
  31. 08 Feb, 2014 1 commit
  32. 07 Feb, 2014 2 commits
  33. 03 Feb, 2014 2 commits
  34. 27 Jan, 2014 1 commit