[Kicad-developers] clarification on kicad manual

2015-06-11 Thread Marco Ciampa
Translatin' things you usually stumble on various quirks. I wonder if this is the right place to talk about this or if it is better not to disturb devs and create an ad-hoc doc ml, anyway: This: Getting_Started_in_KiCad.adoc:319 NOTE: You can rename any default shortcut key by going to

Re: [Kicad-developers] 3D model generation.

2015-06-11 Thread ea...@katamail.com
Hi Mario, thank you for your reply... I was hoping it would be available for the stable release... (I think it is a good feature for kicad to export the 3d model for mechanical purposes) anyway I will wait for the new version of 3d-viewer :) Maurice On 6/9/15 12:15 PM, Mário Luzeiro wrote:

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
Thanks Garth. I committed your patch in the product branch r5731. Hopefully this will get the OSX users back up and running. Cheers, Wayne On 6/11/2015 4:16 AM, Garth Corral wrote: Looks like the OS X install is trying to copy the nonexistant cvpcb.app into the main bundle, killing the

Re: [Kicad-developers] clarification on kicad manual

2015-06-11 Thread Wayne Stambaugh
If you find any documentation that is incorrect, please feel free to update the documentation. No one will or should be offended. Developers often forget or don't have the time to update the docs after making a change. Yes, as developers we should do a better job of keeping documentation up to

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Garth Corral
This fixes everything I know about. I'm using a build made with these changes. Garth On Jun 11, 2015, at 1:01 PM, Wayne Stambaugh stambau...@gmail.com wrote: I've already fixed all of this in my branch. Does this resolve all of the cvpcb osx app bundle issues? If so I will commit the

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
I just committed the changes. Lets see if this gets Adam's nightly OSX builds back up. Please let me know if there are any other lingering issues and I will commit them asap. On 6/11/2015 4:38 PM, Garth Corral wrote: This fixes everything I know about. I'm using a build made with these

Re: [Kicad-developers] CvPcb change.

2015-06-11 Thread Nick Østergaard
It seems like there is still some issue with the cmp file handling. See this bug report: https://bugs.launchpad.net/kicad/+bug/1464408 2015-06-07 20:20 GMT+02:00 Wayne Stambaugh stambau...@gmail.com: I just committed a patch (r5718) from Dick that should greatly simplify the process of

[Kicad-developers] [PATCH] More invalid net ID crash fixes

2015-06-11 Thread Chris Pavlina
Recently I submitted a patch to catch an error that occurred when loading a kicad_pcb containing invalid net IDs; I missed a couple spots. Here's another patch to fix the rest of them. -- Chris commit 98126b8cfba53c52119f809b094cbae266b41b75 Author: Chris Pavlina cpavl...@binghamton.edu Date:

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Bernhard Stegmaier
osx_fixbundles.sh was the script that did the library bundling before I changed it to using builtin CMake functions for it. Maybe it is still referenced here and there in some old CMake code, but IMHO it can just be deleted with every reference to it. Regards, Bernhard On 11 Jun 2015, at

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Garth Corral
Ah, makes sense. Thanks, Bernhard. Garth On Jun 11, 2015, at 6:08 PM, Bernhard Stegmaier stegma...@sw-systems.de wrote: osx_fixbundles.sh was the script that did the library bundling before I changed it to using builtin CMake functions for it. Maybe it is still referenced here and

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Adam Wolf
Sorry sometimes I respond with the wrong email address... On Jun 11, 2015 8:33 PM, Adam Wolf adamww...@gmail.com wrote: There is also other Mac packaging stuff from a few years ago that can be removed safely. If no one objects. I can prepare a patch for those as well. Adam Wolf On Jun 11,

[Kicad-developers] OS X bundling

2015-06-11 Thread Garth Corral
Looks like the OS X install is trying to copy the nonexistant cvpcb.app into the main bundle, killing the build. Patch attached kicad_CMakeLists.txt.patch Description: Binary data smime.p7s Description: S/MIME cryptographic signature ___

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
Yep. That should be removed too. I get to it as soon as possible. Any other places that this might be lurking in the code? On 6/11/2015 11:44 AM, Adam Wolf wrote: Builds resumed on the build cluster. I need to understand the bundling a bit more--for instance, should we still be adding

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
Adam, There is also this line (521) in CMakeList.txt: add_custom_target( osx_fix_bundles ALL DEPENDS cvpcb eeschema gerbview kicad pcbnew bitmap2component pcb_calculator pl_editor) I'm guessing cvpcb can be removed from the list. Wayne On 6/11/2015 11:44 AM, Adam Wolf wrote:

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Adam Wolf
I bet it can be. I will put checking that on the top of my KiCad list. Adam Wolf On Thu, Jun 11, 2015 at 12:42 PM, Wayne Stambaugh stambau...@gmail.com wrote: Adam, There is also this line (521) in CMakeList.txt: add_custom_target( osx_fix_bundles ALL DEPENDS cvpcb eeschema

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
Thanks Adam. As soon as you let me know, I will commit the changes. On 6/11/2015 1:48 PM, Adam Wolf wrote: I bet it can be. I will put checking that on the top of my KiCad list. Adam Wolf On Thu, Jun 11, 2015 at 12:42 PM, Wayne Stambaugh stambau...@gmail.com

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Garth Corral
I think that can go. Though it looks like there’s some code in osx_fixbundles.sh that ostensibly migrates kiface modules inside the bundle, that code looks out of date and inert. Perhaps Bernhard has some insight into what that’s supposed to be doing.There are a couple of other references to

Re: [Kicad-developers] OS X bundling

2015-06-11 Thread Wayne Stambaugh
I've already fixed all of this in my branch. Does this resolve all of the cvpcb osx app bundle issues? If so I will commit the changes. On 6/11/2015 3:24 PM, Garth Corral wrote: I think that can go. Though it looks like there’s some code in osx_fixbundles.sh that ostensibly migrates kiface

Re: [Kicad-developers] clarification on kicad manual

2015-06-11 Thread jp charras
Le 11/06/2015 14:46, Wayne Stambaugh a écrit : If you find any documentation that is incorrect, please feel free to update the documentation. No one will or should be offended. Developers often forget or don't have the time to update the docs after making a change. Yes, as developers we