Re: [Kicad-developers] cvpcb alternative

2015-09-06 Thread Lorenzo Marcantonio
On Sat, 05 Sep 2015 22:34:32 +0200, Jacob Schmidt wrote: > A video response, as it were: https://youtu.be/h7DaMB7lPnA OK, got the problem :D The 'new lib' thing associated with the somewhat byzantine fp-lib dialog :P The 'new lib' was a retrofit since the main library creation tool is/was the 'a

Re: [Kicad-developers] Kicad annoyances and niggles

2015-09-06 Thread LordBlick
In response to a message written on 06.09.2015, 05:59, from timofonic timofonic: I have some suggestions and ideas after stable release. Sorry if I explain them wrong, I hope not! […] - What about remove *ALL* legacy code (in the UI stuff only?) and have GAL only? Then remove cruft, debug, add mi

[Kicad-developers] c++ CXX?

2015-09-06 Thread Mário Luzeiro
Hello all, what is the c++ standard? that kicad is building? Please make a X in one of the following options: [ ] CXX98 [ ] CXX03 [ ] CXX11 [ ] CXX14 Thanks! ;) Mario Luzeiro ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad

Re: [Kicad-developers] c++ CXX?

2015-09-06 Thread Simon Richter
Hi, On 06.09.2015 13:11, Mário Luzeiro wrote: > what is the c++ standard? that kicad is building? Please make a X in one of > the following options: Currently we appear to be using C++98, with a number of nonstandard GNU extensions. C++11 would be nice. C++14 is too new, compiler support is st

Re: [Kicad-developers] cvpcb alternative

2015-09-06 Thread Jacob Schmidt
On 09/06/2015 03:42 AM, Lorenzo Marcantonio wrote: On Sat, 05 Sep 2015 22:34:32 +0200, Jacob Schmidt wrote: A video response, as it were: https://youtu.be/h7DaMB7lPnA OK, got the problem :D The 'new lib' thing associated with the somewhat byzantine fp-lib dialog :P The 'new lib' was a retrofi

[Kicad-developers] [PATCH v2] Use CMake high-level facility for visibility

2015-09-06 Thread Simon Richter
Hi, this is an improved version of the earlier patch, using the visibility handling in CMake 3.3, and falling back to changing the global CXXFLAGS on previous versions. As CMake 3.3 attempts to be compatible with earlier versions, the new behaviour needs to be explicitly enabled until 3.3 becomes

[Kicad-developers] [PATCH] Use CMake function for position independent code

2015-09-06 Thread Simon Richter
Hi, CMake provides a simple declarative statement to enable PIC, so no compiler dependent handling is required. There is also no need to tell Boost to build with -fPIC, their build system is smart enough. Simon --- CMakeLists.txt| 13 - CMakeModules/download_b

[Kicad-developers] [PATCH v2] merge FindwxWidgets.cmake with newer version

2015-09-06 Thread Simon Richter
Hi, this updates our copy of FindwxWidgets.cmake to a state that is fairly close to what is in the CMake repository. The remaining improvements over their version are - version check - forward compatibility with 3.1 (looking for wx-config-3.1) - handling for the "webview" component These thre

[Kicad-developers] [PATCH] Move OpenMP out of gcc/clang conditional

2015-09-06 Thread Simon Richter
Hi, CMake's test for OpenMP is generic enough to work anywhere, so there is no good reason to make it conditional on gcc/clang. This moves the OpenMP handling to the CMakeLists.txt toplevel. Simon --- CMakeLists.txt | 33 +++-- 1 file changed, 19 insertions(+), 1

[Kicad-developers] [PATCH] Drop gcc optimizer bug workaround

2015-09-06 Thread Simon Richter
Hi, As boost::polygon is gone, we can drop the workaround for older gcc. Simon --- CMakeLists.txt | 15 --- 1 file changed, 15 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 6e79fc9..b76c48d 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -171,21 +171,6 @@ i

[Kicad-developers] [PATCH] Remove superfluous include in the middle of source file

2015-09-06 Thread Simon Richter
Hi, probably an oversight after removing debug code. This is not needed, and in the middle of a source file, between functions. Simon --- pcbnew/autorouter/rect_placement/rect_placement.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/pcbnew/autorouter/rect_placement/rect_placement.cpp

Re: [Kicad-developers] Boost build on gcc 5.2.1 (Ubuntu wily)

2015-09-06 Thread Wayne Stambaugh
If you are using Linux, OSX, or MSYS2/MinGW you should use the version of boost installed on your system as long as it's greater than 1.57. Boost 1.56 may also work but I'm not 100% sure. This can be done by passing -DKICAD_SKIP_BOOST=ON during CMake configuration. All of this is going to be ripp

[Kicad-developers] [PATCH] pin table: Allow ungrouping

2015-09-06 Thread Simon Richter
Hi, this allows to undo the grouping in the pin table, by right clicking on the column header of the currently active grouping column -- this allows you to go back to a fully flat table. Simon --- eeschema/dialogs/dialog_lib_edit_pin_table.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 d

[Kicad-developers] CvPcb

2015-09-06 Thread Wayne Stambaugh
Since CvPcb being disabled when Eeschema in stand alone mode has been so poorly received, I am willing to enable it if no one objects. I did some testing last week and I could not find any combination of schematics (complex hierarchy or otherwise) and/or project files that causes any issues. Plea

[Kicad-developers] Reminder

2015-09-06 Thread Wayne Stambaugh
This is a reminder to *all* developers, please do not send any patches or merge requests unless it is specifically to fix an existing bug report. Also, please don't bother fixing the build scripts or any of the CMake dependency library build code as they will be removed during the next development

Re: [Kicad-developers] [PATCH] Interpret unassigned hotkey correctly

2015-09-06 Thread Chris Pavlina
Has this been seen? On Fri, Aug 28, 2015 at 10:05:32PM -0400, Chris Pavlina wrote: > If a hotkey is set to "unassigned" (typically by causing a conflict), it > is not loaded correctly. The loader interprets "unassigned" as "keep the > default assignment", which leads to a conflict later that cau

Re: [Kicad-developers] 3D refactoring news

2015-09-06 Thread Cirilo Bernardo
Thanks Adam, At the moment it's not really suitable for testers, only devs. One of the problems I have is that I need some help from OSX and MSWin devs on the plugin discovery and loading. It will be a few months yet before the refactor is at a stage where normal users can test anything. - Ciri

Re: [Kicad-developers] official web page

2015-09-06 Thread easyw
Hi Wayne, regarding kicad StepUp script, please have a look at this comment... https://forum.kicad.info/t/kicad-stepup-new-exporter-for-3d-mcad-feedbacks-are-welcome/1048/13 I've improved the script and tested it quite heavily... Please consider that the script does not touch any kicad file, it o

[Kicad-developers] hole not properly rendered in 3D viewer when pad in a copper zone

2015-09-06 Thread yann jautard
All is said in the subject : for pads in a copper zone, hole is not properly rendered in 3D viewer. Please see attachment to visualize the problem. Application: kicad Version: (2015-08-31 BZR 6138)-product release build wxWidgets: Version 3.0.2 (debug,wchar_t,compiler with C++ ABI 1002,GCC 4.9

Re: [Kicad-developers] hole not properly rendered in 3D viewer when pad in a copper zone

2015-09-06 Thread Blair Bonnett
Hi Yann, Could you file a bug at https://bugs.launchpad.net/kicad about this please. If possible, upload a sample board which exhibits this problem -- I don't see this happening on my latest PCB. Blair > All is said in the subject : for pads in a copper zone, hole is not properly rendered in 3D

Re: [Kicad-developers] hole not properly rendered in 3D viewer when pad in a copper zone

2015-09-06 Thread yann jautard
https://bugs.launchpad.net/kicad/+bug/1492862 tell me if you need more info Le 07/09/2015 01:46, Blair Bonnett a écrit : Hi Yann, Could you file a bug at https://bugs.launchpad.net/kicad about this please. If possible, upload a sample board which exhibits this problem -- I don't see this

Re: [Kicad-developers] hole not properly rendered in 3D viewer when pad in a copper zone

2015-09-06 Thread yann jautard
I tried to open all the boards I have here, even old ones that I know were rendered OK when I did them and they also present the problem. So maybe this is related to my system only ? Its a Acer netbook with Intel Atom processor with GPU embedded. Le 07/09/2015 02:01, yann jautard a écrit :

Re: [Kicad-developers] 3D refactoring news

2015-09-06 Thread Bernhard Stegmaier
Hi Cirilio, I can (hopefully) help when needed. Just tell me when you need what. Regards, Bernhard > On 06 Sep 2015, at 23:03, Cirilo Bernardo wrote: > > Thanks Adam, > > At the moment it's not really suitable for testers, only devs. One of the > problems I have is that I need some help fro

Re: [Kicad-developers] hole not properly rendered in 3D viewer when pad in a copper zone

2015-09-06 Thread LordBlick
In response to a message written on 07.09.2015, 02:22, from yann jautard: I tried to open all the boards I have here, even old ones that I know were rendered OK when I did them and they also present the problem. So maybe this is related to my system only ? Its a Acer netbook with Intel Atom proc