Re: [Kicad-developers] Fwd: Language List

2016-02-24 Thread Nick Østergaard
And BTW, we have all accepted that flags for languages are bad. 2016-02-25 7:44 GMT+01:00 Nick Østergaard : > I think it might be a good idea to make the menu only list the > languages found. But I don't think the languages menu should be > removed. I think it should either

Re: [Kicad-developers] Fwd: Language List

2016-02-24 Thread Nick Østergaard
I think it might be a good idea to make the menu only list the languages found. But I don't think the languages menu should be removed. I think it should either just show the "Default" entry, or say in the menu that now language files was found. I am not really sure why it is considered testing,

[Kicad-developers] Fwd: Language List

2016-02-24 Thread Simon Wells
any comments on this? -- Forwarded message -- From: Simon Wells Date: Mon, Jan 18, 2016 at 11:26 AM Subject: Language List To: KiCad Developers Currently the Language List throughout kicad advises it is used for testing

Re: [Kicad-developers] layer widget and changeset 6518

2016-02-24 Thread Wayne Stambaugh
On 2/24/2016 5:41 AM, Simon Wells wrote: > I noticed the layer widget behaviour was changed in 6518 to make it > double click to change colors, If you don't click on the colour button > then even with the old code then it will not open the dialog. At the > moment it seems that the button is being

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Piotr Esden-Tempski
Regarding variable width font. I ran into the issue when I was trying to generate symbols for KiCad. To solve it I have generated a table with glyph widths from the C code used in KiCad itself. You can find my python table here:

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Mário Luzeiro
Hi Cirilo, I suggest that in CBBOX.cpp instead of: void CBBOX::Union( const CBBOX ) { wxASSERT( aBBox.IsInitialized() ); you change the assert to something like: if( !aBBox.IsInitialized() ) return; That is safer and compatible with the actual source code. Mario

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Cirilo Bernardo
Hi Mario, For the initial merge would it be OK for me to remove that assert? Although it is useful for debugging, the current 3DViewer works well even with that assertion failure and the Union() function still behaves as expected, essentially ignoring the uninitialized BBox. - Cirilo On Thu,

Re: [Kicad-developers] Fwd: CMakeLists.txt order

2016-02-24 Thread Simon Richter
Hi, On 24.02.2016 15:07, Simon Wells wrote: > Any comments on this patch or?? Looks good to me. Is anyone still using the linker maps, or can that be dropped? Simon signature.asc Description: OpenPGP digital signature ___ Mailing list:

Re: [Kicad-developers] Fwd: kicad/kicad include cleanup

2016-02-24 Thread Wayne Stambaugh
Patch committed in the product branch r6587. Thanks. On 2/24/2016 9:06 AM, Simon Wells wrote: > Any comments on this patch or is it just not wanted? > > > -- Forwarded message -- > From: Simon Wells > Date: Tue, Jan 19, 2016 at 1:39 PM > Subject: kicad/kicad

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Cirilo Bernardo
Thanks Bernhard, I appreciate all your work sorting this out on OSX. - Cirilo On Thu, Feb 25, 2016 at 8:31 AM, Bernhard Stegmaier wrote: > Hi Cirilo, > > thanks for the explanation. > > I am half-way done with OS X adaptions… there were some really nasty > pitfalls,

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Bernhard Stegmaier
Hi Cirilo, thanks for the explanation. I am half-way done with OS X adaptions… there were some really nasty pitfalls, it is a little more than just putting in some correct paths. As of now, plugins are installed into correct locations and are found from plugin manager. I have to figure out

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Cirilo Bernardo
Hi Bernhard, Thanks for testing this. I don't know anything at all about OSX so I need to rely on OSX users and developers to sort out any issues. The new 3D code has 2 sets of libraries associated: 1. libkicad_3dsg is a library which both kicad and any 3D plugin must link to at runtime, so

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Cirilo Bernardo
I'll use the install package from Jenkins and see if I can work out what goes wrong. The first dialog (regarding bad alias) pops up because the current project directory (C:\Program Files\KiCad) is a parent directory of KISYS3DMOD. I need to think a little about how to handle that specific case,

Re: [Kicad-developers] VRML export

2016-02-24 Thread easyw
In any case, I believe there is no elegant way to individual save that options locally. as I suggested it is possible to associate the Virtual option to a model in pcb (Footprint Properties, Properties Tab, Attribute, Virtual) (e.g. a silk/Fab model text to which the enclosure would be

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Wayne Stambaugh
The installed windows version is crashing for me. When I launch Pcbnew from KiCad I get a warning dialog about KISYS3DMOD (3d-refactor-win64-install-1.png). When I dismiss this dialog I get a windows system warning dialog (3d-refactor-win64-install-2.png. When I dismiss the windows system

Re: [Kicad-developers] [PATCH] New Feature: Touchpad Panning

2016-02-24 Thread Wayne Stambaugh
Patch committed in r6586. Thanks! Wayne On 2/23/2016 12:25 PM, Bernhard Stegmaier wrote: > >> On 23.02.2016, at 17:44, Bernhard Stegmaier wrote: >> >>> * The touchpad panning is not implemented in the component viewer, >>> component editor, footprint viewer, and

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Nick Østergaard
See http://downloads.kicad-pcb.org/windows/testing/3d_initial_merge/ I have not tested it recently, it might have some issue, please test it. 2016-02-24 18:51 GMT+01:00 Wayne Stambaugh : > Thanks Bernhard, > > Before I committed the 3D refactor, I was going to ask our

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Nick Østergaard
Ok, I have attached the gdb backtrace if it is of any helpt. It is very reproduceable for me, but of course, it is "just" an assert for now. 2016-02-24 18:51 GMT+01:00 Mário Luzeiro : > Hi NickOe, > Thanks for trying the branch! > > Cirilo is managing that branching. He is

Re: [Kicad-developers] Fwd: CMakeLists.txt order

2016-02-24 Thread Nick Østergaard
Hi Simon I think this looks good, it simplifies the make file quite a bit and fixes an issue. I do have some minor nitpicking. +message(STATUS "Changing KICAD_SCRIPTING to ON as needed by KICAD_SCRIPTING_MODULES") wouldn't it be a better formulation to usse the word Setting insstead og

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Eldar Khayrullin
Ok, glad to help. > On Feb 24 2016, at 8:55 pm, Wayne Stambaugh stambau...@gmail.com wrote: > > If the differences are due to variable font width issues then there is not much we can do about that. Thanks for fixing this. > > On 2/24/2016 11:57 AM, Eldar Khayrullin wrote: PCAD stroke

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Wayne Stambaugh
If the differences are due to variable font width issues then there is not much we can do about that. Thanks for fixing this. On 2/24/2016 11:57 AM, Eldar Khayrullin wrote: > PCAD stroke font isn't fixed width font and KiCad font too. > I look for possible and try to solve this with more easy

Re: [Kicad-developers] [PATCH] OS X: Add Retina support to 3d-viewer

2016-02-24 Thread Wayne Stambaugh
On 2/24/2016 12:43 PM, Bernhard Stegmaier wrote: > >> On 24 Feb 2016, at 14:49, Wayne Stambaugh > > wrote: >> >> On 2/24/2016 4:39 AM, Bernhard Stegmaier wrote: >>> >>> Hi Mario, >>> >>> On 2016-02-24 10:01, Mário Luzeiro wrote: In relation

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Wayne Stambaugh
Thanks Bernhard, Before I committed the 3D refactor, I was going to ask our package devs to take a look at it due to the new 3D model plugins. I would like to get this correct before I commit it. What's the status on windows. I've built and installed from source and that works find but I'm

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Mário Luzeiro
Hi NickOe, Thanks for trying the branch! Cirilo is managing that branching. He is "cherry picking" things from my working branch on the renders to get a smooth transition between our branches and trunk I guess that is because that cbbox.cpp comes from the new branches and maybe it indicated

[Kicad-developers] PATCH: Unify mirror and copy block functions between schematic editor and library aditor

2016-02-24 Thread Mikael Arguedas
Hi guys, Here are two patches: unifyCopyBlock.patch: makes the CopyBlock function in library editor match the behaviour of the one in schematic editor addMirrorHotkeys.patch: - adds the HkMirrorX and HkMirrorY hotkeys to library editor - allor the HkRotate hotkey to rotate blocks and not only

Re: [Kicad-developers] [PATCH] OS X: Add Retina support to 3d-viewer

2016-02-24 Thread Bernhard Stegmaier
> On 24 Feb 2016, at 14:49, Wayne Stambaugh wrote: > > On 2/24/2016 4:39 AM, Bernhard Stegmaier wrote: >> >> Hi Mario, >> >> On 2016-02-24 10:01, Mário Luzeiro wrote: >>> In relation to 3D-Viewer (the actual stable and my/cirilo development) >>> the windows size comes

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Nick Østergaard
Hi Cirilo and Mario, I just built the 3d_initial_merge branch revno 6528, but I see some annoying asserts when running the 3d viewer, not the previewer in the 3d properties dialog: ASSERT INFO: /somepath/3d_initial_merge/3d-viewer/3d_rendering/3d_render_raytracing/shapes3D/cbbox.cpp(114): assert

Re: [Kicad-developers] 3D refactor

2016-02-24 Thread Bernhard Stegmaier
Hi, I just tried on OS X and plugin handling doesn’t seem to be OK. At least, “make install” does directly (try to) install them to “/Applications/…” which is completely wrong (and also maybe the case why my built binary doesn’t find them?). Also, the path itself under SharedSupport I guess

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Eldar Khayrullin
PCAD stroke font isn't fixed width font and KiCad font too. I look for possible and try to solve this with more easy way > On Feb 24 2016, at 7:51 pm, Wayne Stambaugh stambau...@gmail.com wrote: > > Eldar, > > Are you planning on actually determining the appropriate PCAD units for

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Wayne Stambaugh
Eldar, Are you planning on actually determining the appropriate PCAD units for text so that this can be converted accurately? While you patch makes things better, I would prefer that we convert boards as accurately as possible. I know we don't handle different fonts but there should be no

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread Eldar Khayrullin
Thank you. Not ideal yet, but more truely > On Feb 24 2016, at 3:00 pm, jp charras jp.char...@wanadoo.fr wrote: > > Le 23/02/2016 13:36, Eldar Khayrullin a écrit : Result On Feb 23 2016, at 3:29 pm, Eldar Khayrullin lt;eldar.khayrul...@mail.rugt; wrote: Apply Justify of text

Re: [Kicad-developers] Python functionality on Windows

2016-02-24 Thread Wayne Stambaugh
On 2/24/2016 4:15 AM, Miguel Angel Ajo Pelayo wrote: > > If it’s not hard to provide pip, IMHO one of the strengths of python is the > availability of lots libraries. I believe it’s ok to let the user know they > will > need to reinstall their libraries after an update. I'm OK with providing

Re: [Kicad-developers] VRML export

2016-02-24 Thread Mário Luzeiro
Hi Maurice, >> 2) show/hide enclosures >> Since that may need a change in/addition in the file format we didn't made >> nothing yet or advanced with any propose. > not really, that can be saved on project folder locally, no need to change > file format Maybe, but it must be saved somehow. If

Re: [Kicad-developers] VRML export

2016-02-24 Thread easyw
Hi Mario, thanks for your reply... 2) show/hide enclosures Since that may need a change in/addition in the file format we didn't made nothing yet or advanced with any propose. not really, that can be saved on project folder locally, no need to change file format hoping also material props

[Kicad-developers] Fwd: CMakeLists.txt order

2016-02-24 Thread Simon Wells
Any comments on this patch or?? -- Forwarded message -- From: Simon Wells Date: Thu, Jan 14, 2016 at 1:57 PM Subject: Re: CMakeLists.txt order To: kicad-developers@lists.launchpad.net i have made some additional changes - Make the link maps only build on

[Kicad-developers] Fwd: kicad/kicad include cleanup

2016-02-24 Thread Simon Wells
Any comments on this patch or is it just not wanted? -- Forwarded message -- From: Simon Wells Date: Tue, Jan 19, 2016 at 1:39 PM Subject: kicad/kicad include cleanup To: KiCad Developers Attached is a patch that cleans

Re: [Kicad-developers] [PATCH] OS X: Add Retina support to 3d-viewer

2016-02-24 Thread Wayne Stambaugh
On 2/24/2016 4:39 AM, Bernhard Stegmaier wrote: > > Hi Mario, > > On 2016-02-24 10:01, Mário Luzeiro wrote: >> In relation to 3D-Viewer (the actual stable and my/cirilo development) >> the windows size comes from wxWidgets... maybe in different places.. >> I don't know about the GAL, but in

Re: [Kicad-developers] Python functionality on Windows

2016-02-24 Thread Nick Østergaard
2016-02-24 1:28 GMT+01:00 Wayne Stambaugh : > On 2/23/2016 3:53 PM, Nick Østergaard wrote: >> As far as I can se, we need python2w.exe, that should be easy to add. >> But what I worry about is if we include pip, it might not work as >> expeced for the user, beacause when he

Re: [Kicad-developers] KiCad GUI Translation HOWTO error (docs.kicad-pcb.org)

2016-02-24 Thread Nick Østergaard
Remember that that menu entry is different in the 4.0 series and the latest product. legacy versus defualt. @Marco, I would like to know if the 4.0 branch on kicad-i18n is aligned with he 4.0 series of kicad, I did not check it. If it is aligned with the 4.0 series, we can safely tag it for the

Re: [Kicad-developers] KiCad GUI Translation HOWTO error (docs.kicad-pcb.org)

2016-02-24 Thread André S.
Hi, I see that the GUI of KiCad is not completely translated to German (misses some translated strings). However when I look on GitHUb into KiCad/kicad-i18n in branch 4.0 the translation looks quite complete. (for example the strings in Pcbnew view menu for switching the canvas). I see

Re: [Kicad-developers] VRML export

2016-02-24 Thread Mário Luzeiro
Hi Maurice, Thanks for your interest, > I'm still waiting for your comment about the queries I made for the new 3D > viewer > http://www.mail-archive.com/kicad-developers%40lists.launchpad.net/msg18220.html > 1) pivot center of rotation I am thinking on this and see how can I implement some

Re: [Kicad-developers] VRML export

2016-02-24 Thread easyw
Hi Cirilo, I'm happy you are interested in my approach to manage MCAD code. Consider that the native conversion code of VRML in FC is done by Coin3D, not by OCE I'm still waiting for your comment about the queries I made for the new 3D viewer

Re: [Kicad-developers] [PATCH] fix position of text and refdes from PCAD import

2016-02-24 Thread jp charras
Le 23/02/2016 13:36, Eldar Khayrullin a écrit : > Result > >> On Feb 23 2016, at 3:29 pm, Eldar Khayrullin > eldar.khayrul...@mail.ru wrote: > Apply Justify of text and flipped flag of text from import file. I committed your patches. AFAIK, they look good for me. Thanks. -- Jean-Pierre

[Kicad-developers] layer widget and changeset 6518

2016-02-24 Thread Simon Wells
I noticed the layer widget behaviour was changed in 6518 to make it double click to change colors, If you don't click on the colour button then even with the old code then it will not open the dialog. At the moment it seems that the button is being reinvented which will just confuse people who

Re: [Kicad-developers] [PATCH] OS X: Add Retina support to 3d-viewer

2016-02-24 Thread Bernhard Stegmaier
Hi Mario, On 2016-02-24 10:01, Mário Luzeiro wrote: In relation to 3D-Viewer (the actual stable and my/cirilo development) the windows size comes from wxWidgets... maybe in different places.. I don't know about the GAL, but in this case, I would suggest if you could think in some kind of

Re: [Kicad-developers] Python functionality on Windows

2016-02-24 Thread Miguel Angel Ajo Pelayo
If it’s not hard to provide pip, IMHO one of the strengths of python is the availability of lots libraries. I believe it’s ok to let the user know they will need to reinstall their libraries after an update. > On 24 Feb 2016, at 01:28, Wayne Stambaugh wrote: > > On

Re: [Kicad-developers] [PATCH] OS X: Add Retina support to 3d-viewer

2016-02-24 Thread Mário Luzeiro
Hi Bernhard, > It is on my list to try your branch in the next days. > If you can give me some hints where to best add those two snippets > (initialisation and scaling), I’ll add it and send you a patch. In relation to 3D-Viewer (the actual stable and my/cirilo development) the windows size

Re: [Kicad-developers] PATCH: added QFNFootprintWizard

2016-02-24 Thread jp charras
Le 22/02/2016 19:23, Mikael Arguedas a écrit : > Hi guys, > > Here is an updated version of the script including the thermal vias (can be > enabled/disabled using a boolean parameter). > > Regards, > Mikael I commmitted your patch with a minor change, to remove the silk screen layer from