Re: [Kicad-developers] [PATCH] List Boost as a dependency for kicad2step

2019-04-15 Thread John Beard
Hi Simon,

Thanks for catching. Pushed to both branches.

Cheers,

John

On Mon, Apr 15, 2019 at 11:35 PM Simon Richter  wrote:
>
>
> This is not technically correct (the Boost dependency is introduced through
> libcommon), but less invasive as it doesn't pull in libcommon on the linker
> command line.
> ---
>  utils/kicad2step/CMakeLists.txt | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] [PATCH] List Boost as a dependency for kicad2step

2019-04-15 Thread Simon Richter

This is not technically correct (the Boost dependency is introduced through
libcommon), but less invasive as it doesn't pull in libcommon on the linker
command line.
---
 utils/kicad2step/CMakeLists.txt | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/utils/kicad2step/CMakeLists.txt b/utils/kicad2step/CMakeLists.txt
index 728dcbcc56..ca1064a561 100644
--- a/utils/kicad2step/CMakeLists.txt
+++ b/utils/kicad2step/CMakeLists.txt
@@ -29,7 +29,7 @@ endif( MINGW )
 
 add_executable( kicad2step ${K2S_FILES} )
 
-target_link_libraries( kicad2step ${wxWidgets_LIBRARIES} ${OCC_LIBRARIES} )
+target_link_libraries( kicad2step ${wxWidgets_LIBRARIES} ${OCC_LIBRARIES} Boost::boost )
 
 if( APPLE )
 # puts binaries into the *.app bundle while linking
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] [PATCH 2/2] Remove two extraneous spaces from a tooltip

2019-04-15 Thread Wayne Stambaugh
John,

I fine with making string changes in 5.1.2 up to the point of the string
freeze.  I would prefer that we keep the changes to a minimum.  The two
patches that Simon submitted are fine.

Cheers,

Wayne

On 4/15/19 6:13 PM, John Beard wrote:
> Hi Wayne,
> 
> What is the policy for minor string changes going into 5.1.2?
> 
> Cheers,
> 
> John 
> 
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] [PATCH 2/2] Remove two extraneous spaces from a tooltip

2019-04-15 Thread Simon Richter
Hi John,

On 16.04.19 00:13, John Beard wrote:

> What is the policy for minor string changes going into 5.1.2?

In this case, not a problem, as chamfered pads are not in the 5.1 branch.

   Simon



signature.asc
Description: OpenPGP digital signature
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] [PATCH 2/2] Remove two extraneous spaces from a tooltip

2019-04-15 Thread John Beard
Hi Wayne,

What is the policy for minor string changes going into 5.1.2?

Cheers,

John
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] [PATCH 2/2] Remove two extraneous spaces from a tooltip

2019-04-15 Thread Simon Richter
---
 pcbnew/dialogs/dialog_pad_properties_base.cpp | 2 +-
 pcbnew/dialogs/dialog_pad_properties_base.fbp | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/pcbnew/dialogs/dialog_pad_properties_base.cpp b/pcbnew/dialogs/dialog_pad_properties_base.cpp
index 6b981b6832..b94732a3d8 100644
--- a/pcbnew/dialogs/dialog_pad_properties_base.cpp
+++ b/pcbnew/dialogs/dialog_pad_properties_base.cpp
@@ -230,7 +230,7 @@ DIALOG_PAD_PROPERTIES_BASE::DIALOG_PAD_PROPERTIES_BASE( wxWindow* parent, wxWind
 
 	m_staticTextChamferRatio = new wxStaticText( m_panelGeneral, wxID_ANY, _("Chamfer size:"), wxDefaultPosition, wxDefaultSize, 0 );
 	m_staticTextChamferRatio->Wrap( -1 );
-	m_staticTextChamferRatio->SetToolTip( _("Chamfer size  in percent  of the pad width.\nThe width is the smaller value between size X and size Y.\nThe max value is 50 percent.") );
+	m_staticTextChamferRatio->SetToolTip( _("Chamfer size in percent of the pad width.\nThe width is the smaller value between size X and size Y.\nThe max value is 50 percent.") );
 
 	fgSizerShapeType->Add( m_staticTextChamferRatio, 0, wxALIGN_CENTER_VERTICAL|wxRIGHT|wxLEFT, 5 );
 
diff --git a/pcbnew/dialogs/dialog_pad_properties_base.fbp b/pcbnew/dialogs/dialog_pad_properties_base.fbp
index 43459d80cf..bacd8df797 100644
--- a/pcbnew/dialogs/dialog_pad_properties_base.fbp
+++ b/pcbnew/dialogs/dialog_pad_properties_base.fbp
@@ -4436,7 +4436,7 @@
 
 
 0
-Chamfer size  in percent  of the pad width.
The width is the smaller value between size X and size Y.
The max value is 50 percent.
+Chamfer size in percent of the pad width.
The width is the smaller value between size X and size Y.
The max value is 50 percent.
 
 
 
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] [PATCH 1/2] Use format string for composed strings

2019-04-15 Thread Simon Richter

Some translations may need this.
---
 eeschema/netlist_object.cpp   | 2 +-
 eeschema/tools/sch_editor_control.cpp | 4 ++--
 2 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/eeschema/netlist_object.cpp b/eeschema/netlist_object.cpp
index c800401210..a077956eb8 100644
--- a/eeschema/netlist_object.cpp
+++ b/eeschema/netlist_object.cpp
@@ -256,7 +256,7 @@ void NETLIST_OBJECT::ConvertBusToNetListItems( NETLIST_OBJECT_LIST& aNetListItem
 else
 {
 wxCHECK_RET( conn.ParseBusGroup( m_Label, &group_name, bus_contents_vec ),
- _( "Failed to parse bus group " ) + m_Label );
+ wxString::Format( _( "Failed to parse bus group %s" ), m_Label ) );
 }
 
 // For named bus groups, like "USB{DP DM}"
diff --git a/eeschema/tools/sch_editor_control.cpp b/eeschema/tools/sch_editor_control.cpp
index 912fc548a8..16d342a05c 100644
--- a/eeschema/tools/sch_editor_control.cpp
+++ b/eeschema/tools/sch_editor_control.cpp
@@ -131,7 +131,7 @@ static bool highlightNet( TOOL_MANAGER* aToolMgr, const VECTOR2D& aPosition )
 if( item->Connection( *g_CurrentSheet ) )
 {
 netName = item->Connection( *g_CurrentSheet )->Name();
-editFrame->SetStatusText( _( "Highlighted net: " ) + UnescapeString( netName ) );
+editFrame->SetStatusText( wxString::Format( _( "Highlighted net: %s" ), UnescapeString( netName ) ) );
 }
 }
 }
@@ -139,7 +139,7 @@ static bool highlightNet( TOOL_MANAGER* aToolMgr, const VECTOR2D& aPosition )
 
 editFrame->SetSelectedNetName( netName );
 editFrame->SendCrossProbeNetName( netName );
-editFrame->SetStatusText( _( "Selected net: " ) + UnescapeString( netName ) );
+editFrame->SetStatusText( wxString::Format( _( "Selected net: %s" ), UnescapeString( netName ) ) );
 
 aToolMgr->RunAction( SCH_ACTIONS::highlightNetSelection, true );
 
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] 5.1.1 release reminder.

2019-04-15 Thread Jean-Samuel Reynaud
Hi all,

Most of packages are ready now on PPA. Missing packages are i18n and
docs (not tag on the repo).

Regards,
Le 14/04/2019 à 22:24, Wayne Stambaugh a écrit :
> Hi Jean-Samuel,
> 
> Sorry about, I just pushed the tag.
> 
> Wayne
> 
> On 4/14/19 4:21 PM, Jean-Samuel Reynaud wrote:
>> Dear Wayne,
>>
>> I don't see the tag yet. Did you push it ?
>> Once done I'll launch ppa builds...
>>
>> Regards,
>> Le 14/04/2019 à 22:08, Wayne Stambaugh a écrit :
>>> I just tagged the 5.1 source repo and uploaded the 5.1.1 source
>>> archive[1].  Where do we stand with the doc and translation repos?  As
>>> soon as they are tagged, we can start the package builds.  Once most of
>>> the main packages are built, I will make the release announcement.
>>>
>>> Cheers,
>>>
>>> Wayne
>>>
>>> [1]: https://launchpad.net/kicad/5.0/5.1.1/+download/kicad-5.1.1.tar.xz
>>>
>>> On 4/14/19 2:00 PM, Rene Pöschl wrote:
 Hi all,

 I just tagged the library.

 Some small design breaking changes are included in the symbol libs.
 (There was a minor miscommunication as some maintainers thought there
 will not be another version 5 release. I needed to revert one change
 because of that the other 3 where ok in my mind.)

 Everything is detailed in the github issue
 https://github.com/KiCad/kicad-symbols/issues/1724

 On 12/04/19 22:23, Wayne Stambaugh wrote:
> Just a reminder.  I will be tagging 5.1.1 Sunday afternoon so any last
> minute bug fixes should probably be in by tomorrow so I can do a build
> check and some quick testing to make sure nothing went sideways.  Also,
> please no translatable string changes until we start 5.1.2.  Hopefully
> the library, doc, and translation repos will get tagged on Sunday so we
> can get the back builders fired up.  Thanks again everyone for your
> tireless efforts.
>
> Cheers,
>
> Wayne
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp



 ___
 Mailing list: https://launchpad.net/~kicad-developers
 Post to : kicad-developers@lists.launchpad.net
 Unsubscribe : https://launchpad.net/~kicad-developers
 More help   : https://help.launchpad.net/ListHelp
>>>
>>> ___
>>> Mailing list: https://launchpad.net/~kicad-developers
>>> Post to : kicad-developers@lists.launchpad.net
>>> Unsubscribe : https://launchpad.net/~kicad-developers
>>> More help   : https://help.launchpad.net/ListHelp
>>>
>>
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>>
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
> 


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] Very slow all-most lockup, when using BS key, when add part to sch, 5.1.0-110-g3c2761778

2019-04-15 Thread Wayne Stambaugh

Lachlan,

I'm not seeing this on windows but my work computer is pretty fast so I 
may not be a good benchmark.  I do not see any lag at all when I hit the 
BS key in symbol chooser dialog.


Wayne

On 4/2/2019 1:22 AM, Lachlan Audas wrote:

Annoyance/Regression/Bug?
When you hit the 'a' in sch to add a part, and type in a filter, like 
stm8s..  etc,
It come's up with the list of parts,  with acceptable speed.  But hit 
the back space
while in the filter box, and kicad hang for very long time, with no 
indication of whats happening, the charter cursor disappears  when the  
mouse is  filter  box too..
The combine part count for all the libs i'm pulling in, is 3292 parts,  
which is not that big)


Any one else seeing this ?

Lachlan


Application: kicad
Version: (5.1.0-110-g3c2761778), release build
Libraries:
     wxWidgets 3.0.2
     libcurl/7.52.1 OpenSSL/1.0.2r zlib/1.2.8 libidn2/0.16 libpsl/0.17.0 
(+libidn2/0.16) libssh2/1.7.0 nghttp2/1.18.1 librtmp/2.3

Platform: Linux 4.9.0-8-amd64 x86_64, 64 bit, Little endian, wxGTK
Build Info:
     wxWidgets: 3.0.2 (wchar_t,wx containers,compatible with 2.8) GTK+ 2.24
     Boost: 1.62.0
     OpenCASCADE Community Edition: 6.8.0
     Curl: 7.52.1
     Compiler: GCC 6.3.0 with C++ ABI 1010

Build settings:
     USE_WX_GRAPHICS_CONTEXT=OFF
     USE_WX_OVERLAY=OFF
     KICAD_SCRIPTING=ON
     KICAD_SCRIPTING_MODULES=ON
     KICAD_SCRIPTING_PYTHON3=OFF
     KICAD_SCRIPTING_WXPYTHON=ON
     KICAD_SCRIPTING_WXPYTHON_PHOENIX=OFF
     KICAD_SCRIPTING_ACTION_MENU=ON
     BUILD_GITHUB_PLUGIN=ON
     KICAD_USE_OCE=ON
     KICAD_USE_OCC=OFF
     KICAD_SPICE=ON


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp



___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] kicad_pcb, kicad_mod format change for daily build?

2019-04-15 Thread jp charras
Le 15/04/2019 à 15:34, Jeff Young a écrit :
> Yes, this was intentional.  It allows users to put things like spaces in 
> layer names and other user-editable things.
> 
> I’ll fix up the STEP exporter….
> 
>> On 15 Apr 2019, at 13:56, easyw  wrote:
>>
>> Hi,
>> recently I have noticed that both kicad_pcb and kicad_mod seems to have 
>> changed their format.
>> It have been introduced double quotes for layers pads etc.
>> Is that necessary or intentional?
>>
>> Here two related issues links:
>> footprint
>> https://github.com/easyw/kicadStepUpMod/issues/13#issuecomment-481160108
>> pcb
>> https://forum.kicad.info/t/bad-layer-data-error-when-exporting-step/16322/11
>>
>> and a small diff example:
>>
>> (layers
>>(0 F.Cu signal)
>>(31 B.Cu signal)
>>
>> (layers
>>(0 "F.Cu" signal)
>>(31 "B.Cu" signal)
>>
>> Thanks
>> Maurice

Exactly, in these files, user strings (like fields, pad names, layer
names...) were previously quoted on request, i.e. if they contained a
space or some other special delimiter char.

Now they are always quoted, which is better: user strings are always
clearly identified.
This is not really a format change.

-- 
Jean-Pierre CHARRAS

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] new macos requirements, could use some help

2019-04-15 Thread Adam Wolf
I'm really, really not pleased with the timing of it.  They announced
it 7 days ago, and it will be in effect as soon as 10.14.5 is
released, which is in *second beta* already.

I'm certain they'll have some special place you can say "whitelist
this software" but honestly there are 2 instructions users have to
follow already to install our software already, and we get a bug
report every few weeks from someone who didn't follow one of those.
I'm not excited to add to that list (until we can follow their
process, which may not be bad at all.

Combined with the Homebrew dependency change, this means that I gotta
pick between getting nightlies working again with the homebrew issue,
the next stable out the door, or getting ready for notarization.

(My current working order of priorities is stable release,
notarization, and then nightlies.)

Adam



On Mon, Apr 15, 2019 at 8:13 AM Mark Roszko  wrote:
>
> Yes.
>
> They basically require software submission which then results in a signature 
> when it passes an anti virus check. They aren't so far planning on enforcing 
> arbitrary approval rules like the app store but we'll see.
>
> But it's basically Apple avoiding the install of local antiviruses on 
> machines. That would hurt their marketing and brand image.
>
>
>
>
> On Mon, Apr 15, 2019 at 9:08 AM Tomasz Wlostowski  
> wrote:
>>
>> On 13/04/2019 22:57, Adam Wolf wrote:
>> > Oh, that's what I get for trying to post from my phone...
>> >
>> > I forgot the link, and without it, my post seems super ominous!  Sorry
>> > about that!
>> >
>> > https://developer.apple.com/news/?id=04102019a
>>
>> So does this mean we can't distribute our software anymore without
>> Apple's cryptographical blessing?
>>
>> Tom
>>
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
>
>
>
> --
> Mark

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] kicad_pcb, kicad_mod format change for daily build?

2019-04-15 Thread Jeff Young
Yes, this was intentional.  It allows users to put things like spaces in layer 
names and other user-editable things.

I’ll fix up the STEP exporter….

> On 15 Apr 2019, at 13:56, easyw  wrote:
> 
> Hi,
> recently I have noticed that both kicad_pcb and kicad_mod seems to have 
> changed their format.
> It have been introduced double quotes for layers pads etc.
> Is that necessary or intentional?
> 
> Here two related issues links:
> footprint
> https://github.com/easyw/kicadStepUpMod/issues/13#issuecomment-481160108
> pcb
> https://forum.kicad.info/t/bad-layer-data-error-when-exporting-step/16322/11
> 
> and a small diff example:
> 
> (layers
>(0 F.Cu signal)
>(31 B.Cu signal)
> 
> (layers
>(0 "F.Cu" signal)
>(31 "B.Cu" signal)
> 
> Thanks
> Maurice
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp


___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] new macos requirements, could use some help

2019-04-15 Thread Mark Roszko
Yes.

They basically require software submission which then results in a
signature when it passes an anti virus check. They aren't so far planning
on enforcing arbitrary approval rules like the app store but we'll see.

But it's basically Apple avoiding the install of local antiviruses on
machines. That would hurt their marketing and brand image.




On Mon, Apr 15, 2019 at 9:08 AM Tomasz Wlostowski 
wrote:

> On 13/04/2019 22:57, Adam Wolf wrote:
> > Oh, that's what I get for trying to post from my phone...
> >
> > I forgot the link, and without it, my post seems super ominous!  Sorry
> > about that!
> >
> > https://developer.apple.com/news/?id=04102019a
>
> So does this mean we can't distribute our software anymore without
> Apple's cryptographical blessing?
>
> Tom
>
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp
>


-- 
Mark
___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] new macos requirements, could use some help

2019-04-15 Thread Tomasz Wlostowski
On 13/04/2019 22:57, Adam Wolf wrote:
> Oh, that's what I get for trying to post from my phone...
> 
> I forgot the link, and without it, my post seems super ominous!  Sorry
> about that!
> 
> https://developer.apple.com/news/?id=04102019a

So does this mean we can't distribute our software anymore without
Apple's cryptographical blessing?

Tom

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


Re: [Kicad-developers] new macos requirements, could use some help

2019-04-15 Thread Richard Tobias
Hi,

I would be interested as well. 


Richard

Sent from my iPhone

> On Apr 13, 2019, at 10:28 PM, Joe Rozner  wrote:
> 
> I’d be interested in helping out.
> 
>> On Apr 13, 2019, at 13:57, Adam Wolf  wrote:
>> 
>> Oh, that's what I get for trying to post from my phone...
>> 
>> I forgot the link, and without it, my post seems super ominous!  Sorry
>> about that!
>> 
>> https://developer.apple.com/news/?id=04102019a
>> 
>> Adam
>> 
>>> On Fri, Apr 12, 2019 at 8:25 AM Adam Wolf  
>>> wrote:
>>> 
>>> Hi folks!
>>> 
>>> Some interesting news... I need to dig into it to figure out what it
>>> means, but lemme know if anyone else wants to learn the ins and out of
>>> Mac packaging.
>>> 
>>> I am not planning on quitting or anything, but I am at my limit of
>>> time maintaining what we have and working towards Python 3 for v6 for
>>> macOS.  I do not think I will be able to keep up in the near future.
>>> 
>>> Adam Wolf
>> 
>> ___
>> Mailing list: https://launchpad.net/~kicad-developers
>> Post to : kicad-developers@lists.launchpad.net
>> Unsubscribe : https://launchpad.net/~kicad-developers
>> More help   : https://help.launchpad.net/ListHelp
> 
> ___
> Mailing list: https://launchpad.net/~kicad-developers
> Post to : kicad-developers@lists.launchpad.net
> Unsubscribe : https://launchpad.net/~kicad-developers
> More help   : https://help.launchpad.net/ListHelp

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp


[Kicad-developers] kicad_pcb, kicad_mod format change for daily build?

2019-04-15 Thread easyw

Hi,
recently I have noticed that both kicad_pcb and kicad_mod seems to have 
changed their format.

It have been introduced double quotes for layers pads etc.
Is that necessary or intentional?

Here two related issues links:
footprint
https://github.com/easyw/kicadStepUpMod/issues/13#issuecomment-481160108
pcb
https://forum.kicad.info/t/bad-layer-data-error-when-exporting-step/16322/11

and a small diff example:

(layers
(0 F.Cu signal)
(31 B.Cu signal)

(layers
(0 "F.Cu" signal)
(31 "B.Cu" signal)

Thanks
Maurice

___
Mailing list: https://launchpad.net/~kicad-developers
Post to : kicad-developers@lists.launchpad.net
Unsubscribe : https://launchpad.net/~kicad-developers
More help   : https://help.launchpad.net/ListHelp