[Kicad-developers] [PATCH] correct some snprintf usage

2015-02-21 Thread Mark Roszko
Fixes some cases where n-1 bytes was used as a size but snprintf protects against that internally. Also some hardcoded constant sizes changed to sizeof() And made a case where sprintf was used into snprintf as the path input as aUserPluginsPath could in theory be very stupid long if someone has a

Re: [Kicad-developers] OS X File Open Dialog

2015-02-21 Thread Paulo Henrique Silva
Thanks Bernhard, wxWidgets issue tracker did not send any notification to me about it, thanks for the catch. The fix is marked for inclusion on wxWidgets 3.0.3 whenever it goes out. Cheers, 2015-02-21 16:37 GMT-02:00 Bernhard Stegmaier : > Hi Wayne, > > I have seen that a fix for the second iss

Re: [Kicad-developers] OS X File Open Dialog

2015-02-21 Thread Bernhard Stegmaier
Hi Wayne,I have seen that a fix for the second issue with the filters enabled in KiCad is on its way for wxWidgets… [1].So, original patch/fix should be included so that it will work again as soon as somebody uses an appropriate wxWidgets.Attached is a patch based on the original proposal just sett

Re: [Kicad-developers] Mac OS X nightlies are up!

2015-02-21 Thread Wayne Stambaugh
Great job Adam! OSX users rejoice! On 2/21/2015 12:29 PM, Adam Wolf wrote: > Hi folks, > > You can find the latest OS X nightlies > at http://downloads.kicad-pcb.org/osx/, and Nick linked it > from http://downloads.kicad-pcb.org/osx/. > > There's plenty of work still left to do for me on Kicad,

Re: [Kicad-developers] Mac OS X nightlies are up!

2015-02-21 Thread Adam Wolf
Yup, good eye! Adam Wolf On Sat, Feb 21, 2015 at 11:38 AM, Nick Østergaard wrote: > 2015-02-21 18:29 GMT+01:00 Adam Wolf : > > Hi folks, > > > > You can find the latest OS X nightlies at > > http://downloads.kicad-pcb.org/osx/, and Nick linked it from > > http://downloads.kicad-pcb.org/osx/. >

Re: [Kicad-developers] Mac OS X nightlies are up!

2015-02-21 Thread Nick Østergaard
2015-02-21 18:29 GMT+01:00 Adam Wolf : > Hi folks, > > You can find the latest OS X nightlies at > http://downloads.kicad-pcb.org/osx/, and Nick linked it from > http://downloads.kicad-pcb.org/osx/. I think the last link should be: http://www.kicad-pcb.org/display/KICAD/Installing+KiCad#Installing

[Kicad-developers] Mac OS X nightlies are up!

2015-02-21 Thread Adam Wolf
Hi folks, You can find the latest OS X nightlies at http://downloads.kicad-pcb.org/osx/, and Nick linked it from http://downloads.kicad-pcb.org/osx/. There's plenty of work still left to do for me on Kicad, but I am excited to cross this one off the list. I'll be idling on the IRC channel more a

Re: [Kicad-developers] Coverity scan.

2015-02-21 Thread Wayne Stambaugh
I don't feel too bad about it. There were more defects fixed than added. I've been using Coverity to fix and push the uncaught exceptions up the stack. I'm too lazy to grep through the code and follow the exception chain. I'll let Coverity do it for me. It will take a few iterations but eventu

Re: [Kicad-developers] Rendering issues with line drawing

2015-02-21 Thread Nick Østergaard
2015-02-20 23:14 GMT+01:00 Rick Walker : > > Hi Miguel, > >> But you say need at least fc20 I saw >> you're running f19. Btw f21 works quite well. > > Thanks for the suggestion. I used fedup to upgrade from 19 to 21 this > morning. I still have the same rendering problem with version 5041. > > S

Re: [Kicad-developers] [PATCH] coverity: silence floating point constant errors and SCH_TEXT::IsSelectStateChanged

2015-02-21 Thread jp charras
Le 21/02/2015 06:16, Mark Roszko a écrit : > Add the missing floating point specifier on three constants coverity notes. > > > SCH_TEXT::IsSelectStateChanged was doing SetFlags in both > cases.change to ClearFlags in the else > Committed. Thanks. -- Jean-Pierre CHARRAS _

Re: [Kicad-developers] [PATCH] two eeschema cleanups

2015-02-21 Thread jp charras
Le 21/02/2015 06:00, Mark Roszko a écrit : > Just some patches as cleanup > > > 1. Delete .cpp file that literally has no code in it, just #includes. > > 2. Second patch cleans up netlist.cpp. classes sch_reference and > sch_reference_list are moved to to "sch_reference_list.h" file as > mul