Re: [Kicad-developers] V5 tag in bug tracker?

2018-05-25 Thread Nick Østergaard
I created a 5.0.0-rc3 milestone.

2018-05-26 1:30 GMT+02:00 Seth Hillbrand :

> Now that RC2 is released, can we get a new target in the bug tracker for
> things that should be fixed prior to v5 release?  Currently, we only have
> v6 as a target
>
> Thanks-
> Seth
>
>
> ___
> 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] Footprint Library Wizard removal

2018-05-25 Thread Maciej Suminski
Yes, are there other issues there?

On 05/25/2018 05:24 PM, Nick Østergaard wrote:
> Is this the one from the Browse Libraries... from the fp-lib-table dialog?
> 
> 2018-05-25 11:10 GMT+02:00 Maciej Sumiński :
> 
>> Thank you for the feedback. I have fixed the reported issues (disabled
>> "Show Hidden", made the dialog resizable and ${KIRPRJMOD} substitution)
>> and pushed the changes.
>>
>> Cheers,
>> Orson
>>
>> On 05/25/2018 09:20 AM, jp charras wrote:
>>> Le 24/05/2018 à 19:49, jp charras a écrit :
 Le 24/05/2018 à 10:19, Maciej Sumiński a écrit :
> Attached a revised patch set, as the previous one looked ugly on
>> Windows
> (and fine on Linux).

 Thanks Orson.

 The look of this dialog is much better now.

 Just two remarks about the dialog itself: the dialog is not re-sizable,
>> and should be derived from
 our DIALOG_SHIM base class.

>>>
>>> Hi Orson,
>>>
>>> I noticed an other issue (a regression):
>>>
>>> When a library is added, if it is in the project folder, its path is
>> stored as an absolute path, and
>>> the ${KIPRJMOD} env var is not used to build the path.
>>>

>
> Cheers,
> Orson
>
> On 05/23/2018 12:17 PM, Maciej Sumiński wrote:
>> As it has been reported [1], the Footprint Library Wizard is
>> restricted
>> to the old Github repositories (one repo per library vs current single
>> repo for all libraries). I propose to replace it with a common file
>> browser, similar to the one in the Symbol Library Table dialog. In the
>> future we may develop a separate dialog to update the local libraries,
>> using a genuine git client letting us any repository (not only
>> Github),
>> perhaps traverse through commits and display logs.
>>
>> I could not use the standard file dialog, as wxWidgets does not
>> provide
>> one to select both files *and* directories, but it is necessary to
>> handle both .pretty libraries (directories) and foreign formats (e.g.
>> Eagle .lbr files) with a single dialog.
>>
>> Github plugin is still available, but has to be selected manually in
>> the
>> Footprint Library Table dialog. I think it is reasonable not to expose
>> it, as it brings troubles to inexperienced users.
>>
>> AFAICT, the attached patch introduces one new string ("Show Hidden" in
>> the selector dialog), breaking the string freeze rule. The string is
>> not
>> crucial, so it might be removed for the time being.
>>
>> Cheers,
>> Orson


>>>
>>>
>>
>>
>>
>> ___
>> 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] V5 tag in bug tracker?

2018-05-25 Thread Seth Hillbrand
Now that RC2 is released, can we get a new target in the bug tracker for
things that should be fixed prior to v5 release?  Currently, we only have
v6 as a target

Thanks-
Seth
___
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] Large board speed

2018-05-25 Thread Seth Hillbrand
Hi Tom-

For a particularly large board I'm working on (32 layers, 124k tracks),
current master takes 2.4s per connectivity update (clicks, moving
footprints, enable layers, etc).  With the patch, connectivity search is
10ms per click.

I did a merge with your tom-background-connectivity branch but I needed to
rebase it to master before doing that.  The conflicts were with inserting
the aWorker-CheckInterrupt() conditional in the itemList search.

-S

Am Fr., 25. Mai 2018 um 08:35 Uhr schrieb Tomasz Wlostowski <
tomasz.wlostow...@cern.ch>:

> On 25/05/18 05:16, Seth Hillbrand wrote:
> > Here's an updated patch for working with large, complex boards in v5.
> >
> Hi Seth,
>
> Thanks for the patch.
>
> How much faster is it compared to the current master branch?
>
> > Tom, I took your advice and put a light layer over an RTree for the
> > connectivity search.  Since this gets us bounding box collisions, we can
> > do commutative hits by using both items in the collision, eliminating
> > the need to iterate over the full list.
>
> Great!
> >
> > I also did a test merge with your dev tree and had only a couple minor
> > conflicts, so I think our approaches will compliment well.
>
> Did you try to merge it with tom-background-connectivity branch?
>
> 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] [PATCH] Large board speed

2018-05-25 Thread Tomasz Wlostowski
On 25/05/18 05:16, Seth Hillbrand wrote:
> Here's an updated patch for working with large, complex boards in v5.
> 
Hi Seth,

Thanks for the patch.

How much faster is it compared to the current master branch?

> Tom, I took your advice and put a light layer over an RTree for the
> connectivity search.  Since this gets us bounding box collisions, we can
> do commutative hits by using both items in the collision, eliminating
> the need to iterate over the full list.

Great!
> 
> I also did a test merge with your dev tree and had only a couple minor
> conflicts, so I think our approaches will compliment well.  

Did you try to merge it with tom-background-connectivity branch?

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] Footprint Library Wizard removal

2018-05-25 Thread Nick Østergaard
Is this the one from the Browse Libraries... from the fp-lib-table dialog?

2018-05-25 11:10 GMT+02:00 Maciej Sumiński :

> Thank you for the feedback. I have fixed the reported issues (disabled
> "Show Hidden", made the dialog resizable and ${KIRPRJMOD} substitution)
> and pushed the changes.
>
> Cheers,
> Orson
>
> On 05/25/2018 09:20 AM, jp charras wrote:
> > Le 24/05/2018 à 19:49, jp charras a écrit :
> >> Le 24/05/2018 à 10:19, Maciej Sumiński a écrit :
> >>> Attached a revised patch set, as the previous one looked ugly on
> Windows
> >>> (and fine on Linux).
> >>
> >> Thanks Orson.
> >>
> >> The look of this dialog is much better now.
> >>
> >> Just two remarks about the dialog itself: the dialog is not re-sizable,
> and should be derived from
> >> our DIALOG_SHIM base class.
> >>
> >
> > Hi Orson,
> >
> > I noticed an other issue (a regression):
> >
> > When a library is added, if it is in the project folder, its path is
> stored as an absolute path, and
> > the ${KIPRJMOD} env var is not used to build the path.
> >
> >>
> >>>
> >>> Cheers,
> >>> Orson
> >>>
> >>> On 05/23/2018 12:17 PM, Maciej Sumiński wrote:
>  As it has been reported [1], the Footprint Library Wizard is
> restricted
>  to the old Github repositories (one repo per library vs current single
>  repo for all libraries). I propose to replace it with a common file
>  browser, similar to the one in the Symbol Library Table dialog. In the
>  future we may develop a separate dialog to update the local libraries,
>  using a genuine git client letting us any repository (not only
> Github),
>  perhaps traverse through commits and display logs.
> 
>  I could not use the standard file dialog, as wxWidgets does not
> provide
>  one to select both files *and* directories, but it is necessary to
>  handle both .pretty libraries (directories) and foreign formats (e.g.
>  Eagle .lbr files) with a single dialog.
> 
>  Github plugin is still available, but has to be selected manually in
> the
>  Footprint Library Table dialog. I think it is reasonable not to expose
>  it, as it brings troubles to inexperienced users.
> 
>  AFAICT, the attached patch introduces one new string ("Show Hidden" in
>  the selector dialog), breaking the string freeze rule. The string is
> not
>  crucial, so it might be removed for the time being.
> 
>  Cheers,
>  Orson
> >>
> >>
> >
> >
>
>
>
> ___
> 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] partially untranslated strings in simulation dialog

2018-05-25 Thread Maciej Sumiński
Hi Marco,

It should be fixed now, apologies for missing these strings until now.

Cheers,
Orson

On 05/25/2018 11:15 AM, Marco Ciampa wrote:
> Hi dev,
> I am sorry for boring you all (as usual) with trivial (i18n) things.
> Launching the Spice Simulator dialog I just noted a few untranslated
> strings, see attached screenshot...
> 
> Some of these may be left untranslated, especially if they are produced
> by ngspice, so hardly translatable but, some of these seem to be just
> omissions like the ones on the right of the screenshot.
> 
> What do you think about it?
> 
> 
> 
> ___
> 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
> 




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


[Kicad-developers] partially untranslated strings in simulation dialog

2018-05-25 Thread Marco Ciampa
Hi dev,
I am sorry for boring you all (as usual) with trivial (i18n) things.
Launching the Spice Simulator dialog I just noted a few untranslated
strings, see attached screenshot...

Some of these may be left untranslated, especially if they are produced
by ngspice, so hardly translatable but, some of these seem to be just
omissions like the ones on the right of the screenshot.

What do you think about it?

-- 


Marco Ciampa

I know a joke about UDP, but you might not get it.



 GNU/Linux User #78271
 FSFE fellow #364



___
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] Footprint Library Wizard removal

2018-05-25 Thread Maciej Sumiński
Thank you for the feedback. I have fixed the reported issues (disabled
"Show Hidden", made the dialog resizable and ${KIRPRJMOD} substitution)
and pushed the changes.

Cheers,
Orson

On 05/25/2018 09:20 AM, jp charras wrote:
> Le 24/05/2018 à 19:49, jp charras a écrit :
>> Le 24/05/2018 à 10:19, Maciej Sumiński a écrit :
>>> Attached a revised patch set, as the previous one looked ugly on Windows
>>> (and fine on Linux).
>>
>> Thanks Orson.
>>
>> The look of this dialog is much better now.
>>
>> Just two remarks about the dialog itself: the dialog is not re-sizable, and 
>> should be derived from
>> our DIALOG_SHIM base class.
>>
> 
> Hi Orson,
> 
> I noticed an other issue (a regression):
> 
> When a library is added, if it is in the project folder, its path is stored 
> as an absolute path, and
> the ${KIPRJMOD} env var is not used to build the path.
> 
>>
>>>
>>> Cheers,
>>> Orson
>>>
>>> On 05/23/2018 12:17 PM, Maciej Sumiński wrote:
 As it has been reported [1], the Footprint Library Wizard is restricted
 to the old Github repositories (one repo per library vs current single
 repo for all libraries). I propose to replace it with a common file
 browser, similar to the one in the Symbol Library Table dialog. In the
 future we may develop a separate dialog to update the local libraries,
 using a genuine git client letting us any repository (not only Github),
 perhaps traverse through commits and display logs.

 I could not use the standard file dialog, as wxWidgets does not provide
 one to select both files *and* directories, but it is necessary to
 handle both .pretty libraries (directories) and foreign formats (e.g.
 Eagle .lbr files) with a single dialog.

 Github plugin is still available, but has to be selected manually in the
 Footprint Library Table dialog. I think it is reasonable not to expose
 it, as it brings troubles to inexperienced users.

 AFAICT, the attached patch introduces one new string ("Show Hidden" in
 the selector dialog), breaking the string freeze rule. The string is not
 crucial, so it might be removed for the time being.

 Cheers,
 Orson
>>
>>
> 
> 




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] Footprint Library Wizard removal

2018-05-25 Thread jp charras
Le 24/05/2018 à 19:49, jp charras a écrit :
> Le 24/05/2018 à 10:19, Maciej Sumiński a écrit :
>> Attached a revised patch set, as the previous one looked ugly on Windows
>> (and fine on Linux).
> 
> Thanks Orson.
> 
> The look of this dialog is much better now.
> 
> Just two remarks about the dialog itself: the dialog is not re-sizable, and 
> should be derived from
> our DIALOG_SHIM base class.
> 

Hi Orson,

I noticed an other issue (a regression):

When a library is added, if it is in the project folder, its path is stored as 
an absolute path, and
the ${KIPRJMOD} env var is not used to build the path.

> 
>>
>> Cheers,
>> Orson
>>
>> On 05/23/2018 12:17 PM, Maciej Sumiński wrote:
>>> As it has been reported [1], the Footprint Library Wizard is restricted
>>> to the old Github repositories (one repo per library vs current single
>>> repo for all libraries). I propose to replace it with a common file
>>> browser, similar to the one in the Symbol Library Table dialog. In the
>>> future we may develop a separate dialog to update the local libraries,
>>> using a genuine git client letting us any repository (not only Github),
>>> perhaps traverse through commits and display logs.
>>>
>>> I could not use the standard file dialog, as wxWidgets does not provide
>>> one to select both files *and* directories, but it is necessary to
>>> handle both .pretty libraries (directories) and foreign formats (e.g.
>>> Eagle .lbr files) with a single dialog.
>>>
>>> Github plugin is still available, but has to be selected manually in the
>>> Footprint Library Table dialog. I think it is reasonable not to expose
>>> it, as it brings troubles to inexperienced users.
>>>
>>> AFAICT, the attached patch introduces one new string ("Show Hidden" in
>>> the selector dialog), breaking the string freeze rule. The string is not
>>> crucial, so it might be removed for the time being.
>>>
>>> Cheers,
>>> Orson
> 
> 


-- 
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