Re: [Kicad-developers] kicad version and install location

2018-07-18 Thread Adam Wolf
It's definitely technically possible for macOS--but as I'm continuing
to think about it, even if I whipped this patch up and tested it,
*and* I convinced enough people it worked, just thinking about all the
places in the docs where the macOS paths would have to change, I'm
thinking we *have* to wait.

Please let's get this in before V6...

Adam
On Wed, Jul 18, 2018 at 11:25 PM Seth Hillbrand  wrote:
>
> It's a good idea but it's coming after we've already tagged v5.  Are we 
> thinking of a patch on the packaging?  I don't quite follow the proposal for 
> how this gets implemented.  For debian, we could place a patch in the build 
> package.  I assume that there is something similar for rpms but I'd be 
> curious to know how this would be implemented for Mac/Windows.
>
> -Seth
>
> Am Mi., 18. Juli 2018 um 21:08 Uhr schrieb Adam Wolf 
> :
>>
>> On Mac, we have the advantage of users not setting environment variables.  
>> This makes me think this *could* potentially be feasible for 5.0, for MacOS.
>>
>> However, I do not know if we would want this feature on one platform and not 
>> the others. Thoughts?
>>
>> On Mon, Jul 16, 2018, 12:40 PM Andy Peters  wrote:
>>>
>>> On Jul 16, 2018, at 10:22 AM, Mark Roszko  wrote:
>>> >
>>> > Yeathats what I proposed too.
>>> >
>>> > Every program on Windows that needs side-by-side installs just
>>> > versions both the config and install locations. Thats it.
>>> >
>>> > EAGLE does it.
>>> > Visual Studio does.
>>> > Altium does it.
>>> > CLion does it.
>>> > All of Jetbrains other product do it.
>>> > Microsoft Word does it
>>> > Adobe does it.
>>> > Python does it.
>>> > MSSQL does it.
>>> > 
>>> >
>>> > No need for crazy launcher args and extreme actions such as doing
>>> > something like RVM does
>>> >
>>> > All that needs to be done, is find all instances of wxStandardPaths
>>> > being used for config location.
>>> > Replace it with a standard static function helper. In the helper, it
>>> > appends a version number to the location.
>>> >
>>> > Thats it. Done. No need to require users to understand command line to
>>> > use a program.
>>> >
>>> > It works for linux too.
>>> > /home/user/.kicad/
>>> > becomes
>>> > /home/user/.kicad/5.1/
>>>
>>> And on the Mac that would be
>>>
>>> /Users/andy/Library/Application Support/kicad
>>>
>>> becomes
>>>
>>> /Users/andy/Library/Application Support/kicad/5.1
>>>
>>> and /Users/andy/Library/Preferences/kicad
>>>
>>> becomes
>>>
>>> /Users/andy/Library/Preferences/kicad/5.1
>>>
>>> -a
>>
>> ___
>> 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 version and install location

2018-07-18 Thread Seth Hillbrand
It's a good idea but it's coming after we've already tagged v5.  Are we
thinking of a patch on the packaging?  I don't quite follow the proposal
for how this gets implemented.  For debian, we could place a patch in the
build package.  I assume that there is something similar for rpms but I'd
be curious to know how this would be implemented for Mac/Windows.

-Seth

Am Mi., 18. Juli 2018 um 21:08 Uhr schrieb Adam Wolf <
adamw...@feelslikeburning.com>:

> On Mac, we have the advantage of users not setting environment variables.
> This makes me think this *could* potentially be feasible for 5.0, for MacOS.
>
> However, I do not know if we would want this feature on one platform and
> not the others. Thoughts?
>
> On Mon, Jul 16, 2018, 12:40 PM Andy Peters  wrote:
>
>> On Jul 16, 2018, at 10:22 AM, Mark Roszko  wrote:
>> >
>> > Yeathats what I proposed too.
>> >
>> > Every program on Windows that needs side-by-side installs just
>> > versions both the config and install locations. Thats it.
>> >
>> > EAGLE does it.
>> > Visual Studio does.
>> > Altium does it.
>> > CLion does it.
>> > All of Jetbrains other product do it.
>> > Microsoft Word does it
>> > Adobe does it.
>> > Python does it.
>> > MSSQL does it.
>> > 
>> >
>> > No need for crazy launcher args and extreme actions such as doing
>> > something like RVM does
>> >
>> > All that needs to be done, is find all instances of wxStandardPaths
>> > being used for config location.
>> > Replace it with a standard static function helper. In the helper, it
>> > appends a version number to the location.
>> >
>> > Thats it. Done. No need to require users to understand command line to
>> > use a program.
>> >
>> > It works for linux too.
>> > /home/user/.kicad/
>> > becomes
>> > /home/user/.kicad/5.1/
>>
>> And on the Mac that would be
>>
>> /Users/andy/Library/Application Support/kicad
>>
>> becomes
>>
>> /Users/andy/Library/Application Support/kicad/5.1
>>
>> and /Users/andy/Library/Preferences/kicad
>>
>> becomes
>>
>> /Users/andy/Library/Preferences/kicad/5.1
>>
>> -a
>>
> ___
> 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] Tesselation Ideas

2018-07-18 Thread Seth Hillbrand
​Hi All-

Our current triangulation caching is based on the poly2tri codebase and has
a number of constraints.  Most notably, it does not allow touching holes,
holes on the boundary or duplicate vertices.  In these cases, we do not
cache the triangulation and instead use the OpenGL single-thread
triangulation routine each time we draw a complicated polygon.  This has
the side-effect of making some boards much slower in Accelerated mode than
in Fallback.​

I've been noodling with an idea for how to better cache our triangulation
and I think it's ready for some wider testing.  It combines the Sloan
ear-cutting algorithm with a plane division and simplication approach to
address difficult polygons.  It generally follows the approach of Lamot and
Zalik (https://www.sciencedirect.com/science/article/pii/S0097849302002819)
but implements some of the shortcuts from the mapbox earcut library (
https://github.com/mapbox/earcut)

The code is located in my GitHub (
https://github.com/sethhillbrand/kicad-source-mirror/tree/tesselation).  If
you clone the tree, be sure to check out the branch "tesselation".

Comments/feedback greatly appreciated.
-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] kicad version and install location

2018-07-18 Thread Adam Wolf
On Mac, we have the advantage of users not setting environment variables.
This makes me think this *could* potentially be feasible for 5.0, for MacOS.

However, I do not know if we would want this feature on one platform and
not the others. Thoughts?

On Mon, Jul 16, 2018, 12:40 PM Andy Peters  wrote:

> On Jul 16, 2018, at 10:22 AM, Mark Roszko  wrote:
> >
> > Yeathats what I proposed too.
> >
> > Every program on Windows that needs side-by-side installs just
> > versions both the config and install locations. Thats it.
> >
> > EAGLE does it.
> > Visual Studio does.
> > Altium does it.
> > CLion does it.
> > All of Jetbrains other product do it.
> > Microsoft Word does it
> > Adobe does it.
> > Python does it.
> > MSSQL does it.
> > 
> >
> > No need for crazy launcher args and extreme actions such as doing
> > something like RVM does
> >
> > All that needs to be done, is find all instances of wxStandardPaths
> > being used for config location.
> > Replace it with a standard static function helper. In the helper, it
> > appends a version number to the location.
> >
> > Thats it. Done. No need to require users to understand command line to
> > use a program.
> >
> > It works for linux too.
> > /home/user/.kicad/
> > becomes
> > /home/user/.kicad/5.1/
>
> And on the Mac that would be
>
> /Users/andy/Library/Application Support/kicad
>
> becomes
>
> /Users/andy/Library/Application Support/kicad/5.1
>
> and /Users/andy/Library/Preferences/kicad
>
> becomes
>
> /Users/andy/Library/Preferences/kicad/5.1
>
> -a
>
___
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] Signed Installers

2018-07-18 Thread Simon Richter
Hi,

I've just rebuilt the latest MSYS2 nightly and the rc3 package in
/windows/testing with signing enabled, so these should now install with
fewer complaints.

   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] KiCad logo author

2018-07-18 Thread Fabrizio Tappero
Hi Wayne,
How are you? I'm the author of the kicad logo and everything is of course
fine with me.

Cheers
Fabrizio


On Jul 18, 2018 7:36 PM, "Wayne Stambaugh"  wrote:

I've been getting a few requests recently about using the KiCad logo[1]
for merchandising and other uses that benefit the project.  I just want
to be sure the author of the logo (please refresh my memory who this is)
is OK with the project using the logo in this manner.  Thanks in advance
for the update.

Cheers,

Wayne

[1]:
https://github.com/KiCad/kicad-website/blob/master/static/
img/kicad_logo_paths.svg

___
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] Stable 5 release.

2018-07-18 Thread Carsten Schoenert

Am 18.07.18 um 19:55 schrieb Rene Pöschl:
>> I'm traveling the whole Saturday and Sunday to Debian DebCamp and
>> DebConf in Taiwan and working on packaging kicad-packages3d on a laptop
>> is PITA. So I'd like to this at home on a more powerful machine at home
>> latest on Friday afternoon.
>>
>> Thanks!
>>
> 
> By the way when giving deadlines stating your timezone might be 
> required. As you did not state one i choose to use CET summer time ;)

Argh, yes, a damn phone call has interrupted me while writing ...
But yes, CEST is the timezone I currently live. :-)

> But if everything goes to plan i will tag the libs in a few hours anyway 
> giving you guys ample time.

Thanks!

-- 
Regards
Carsten Schoenert

___
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] Stable 5 release.

2018-07-18 Thread Rene Pöschl

On 18/07/18 18:09, Carsten Schoenert wrote:

Hi,

Am 18.07.18 um 16:23 schrieb Nick Østergaard:

I probably didn't mention this clearly. It is also good for me if
everything is tagged on friday, I guess that is mostly about the libs,
as I will probably tag i18n and doc myself.

I'd like to see at least the packages3D repository is tagged latest on
Friday 11AM to 12PM so packagers could start here, the reason is simple ...


I am on vacation next week with no connectivity.

I'm traveling the whole Saturday and Sunday to Debian DebCamp and
DebConf in Taiwan and working on packaging kicad-packages3d on a laptop
is PITA. So I'd like to this at home on a more powerful machine at home
latest on Friday afternoon.

Thanks!



By the way when giving deadlines stating your timezone might be 
required. As you did not state one i choose to use CET summer time ;)



But if everything goes to plan i will tag the libs in a few hours anyway 
giving you guys ample time.



___
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 logo author

2018-07-18 Thread Wayne Stambaugh
I've been getting a few requests recently about using the KiCad logo[1]
for merchandising and other uses that benefit the project.  I just want
to be sure the author of the logo (please refresh my memory who this is)
is OK with the project using the logo in this manner.  Thanks in advance
for the update.

Cheers,

Wayne

[1]:
https://github.com/KiCad/kicad-website/blob/master/static/img/kicad_logo_paths.svg

___
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 UI feedback

2018-07-18 Thread Jeff Young
Changes in.  Could Kevin or Wayne please post the following dialogs one more 
time:

1) Change Footprints
2) CvPCB (with footprint selected from right column)
3) Footprint Properties
4) Edit Track & Via Properties

Thanks,
Jeff.

> On 18 Jul 2018, at 15:28, Jeff Young  wrote:
> 
> Yeah, the “Show” label of the Output Messages checkboxes is misplaced too.
> 
> I’ll have another build along shortly….
> 
> Cheers,
> Jeff.
> 
> 
>> On 18 Jul 2018, at 15:05, Kevin Cozens  wrote:
>> 
>> On 2018-07-18 08:32 AM, Wayne Stambaugh wrote:
>>> Attached are the updated screen shots.
>> 
>> One minor point. In the first screen shot the icon with the books and 
>> magnifying glass is on the right side of the dialog the first time it 
>> appears but is just after the end of the entry field the second time it 
>> appears.
>> 
>> It would look a little better if they were in the same relative horizontal 
>> position.
>> 
>> -- 
>> Cheers!
>> 
>> Kevin.
>> 
>> http://www.ve3syb.ca/   | "Nerds make the shiny things that
>> https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
>>   | that's why we're powerful"
>> Owner of Elecraft K2 #2172  |
>> #include  | --Chris Hardwick
>> 
>> ___
>> 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] Stable 5 release.

2018-07-18 Thread Carsten Schoenert
Hi,

Am 18.07.18 um 16:23 schrieb Nick Østergaard:
> I probably didn't mention this clearly. It is also good for me if
> everything is tagged on friday, I guess that is mostly about the libs,
> as I will probably tag i18n and doc myself.

I'd like to see at least the packages3D repository is tagged latest on
Friday 11AM to 12PM so packagers could start here, the reason is simple ...

> I am on vacation next week with no connectivity.

I'm traveling the whole Saturday and Sunday to Debian DebCamp and
DebConf in Taiwan and working on packaging kicad-packages3d on a laptop
is PITA. So I'd like to this at home on a more powerful machine at home
latest on Friday afternoon.

Thanks!

-- 
Regards
Carsten Schoenert

___
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] Stable 5 release.

2018-07-18 Thread Nick Østergaard
I am away from monday, so no worries.

ons. 18. jul. 2018 16.27 skrev Wayne Stambaugh :

> Nick,
>
> Please let me know if you can't get around to tagging the i18n and doc
> repos.  I can tag them on Friday if need be.
>
> Cheers,
>
> Wayne
>
> On 7/18/2018 10:23 AM, Nick Østergaard wrote:
> > I probably didn't mention this clearly. It is also good for me if
> > everything is tagged on friday, I guess that is mostly about the libs,
> > as I will probably tag i18n and doc myself.
> >
> > I am on vacation next week with no connectivity.
> >
> > Nick
> >
> > Den ons. 18. jul. 2018 kl. 16.19 skrev Wayne Stambaugh <
> stambau...@gmail.com>:
> >>
> >> Sorry about that.  I missed the restructure info.  I think I covered
> >> most of the changes in my repo.  I will try to get my changes pushed
> >> tonight so I can get some feedback before the official release
> announcement.
> >>
> >> On 7/18/2018 10:13 AM, Nick Østergaard wrote:
> >>> Ohh, well, I wrote that. He just restructured the dir structure
> >>> recently. I have only listed features added that could remember at
> >>> some point, there are certainly missing. So I suggest any developer
> >>> who have anything to add just creates a PR ASAP.
> >>> Den ons. 18. jul. 2018 kl. 16.10 skrev Wayne Stambaugh <
> stambau...@gmail.com>:
> 
>  Nick,
> 
>  A preliminary draft is already written[1] by Mark Roszko.  I just need
>  to finish cleaning it up and remove the draft tag for the release
>  announcement.
> 
>  Cheers,
> 
>  Wayne
> 
>  [1]:
> 
> https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc
> 
>  On 7/18/2018 10:01 AM, Nick Østergaard wrote:
> > Wayne,
> >
> > If you have a draft ready for the release announcement, please create
> > a pull request with it as a draft or push it as a draft, in case we
> > would like to add more info. This to avoid anyone else in attempting
> > to write  it.
> >
> > Nick
> > Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh <
> stambau...@gmail.com>:
> >>
> >> The goal is to have everything tagged by Friday and then give the
> >> package builders a few days to get the 5.0.0 packages (or a least
> most
> >> of them) built and added to the website before making the official
> >> announcement.  I still have some changes to make to the release
> >> announcement which I should have done by Friday.  Would the person
> >> responsible for providing the website patch for the v5 package links
> >> please let me know when that is ready to go.  Is there anything else
> >> that I missed?
> >>
> >> Cheers,
> >>
> >> Wayne
> >>
> >> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> >>> Tell me if I am wrong, but I start to believe we are going to
> publish v5
> >>> this Friday. Is there anything missing I could help with? Do we
> have the
> >>> website updates ready?
> >>>
> >>> Cheers,
> >>> Orson
> >>>
> >>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>  Are there any critical bugs remaining to be fixed for the stable 5
>  release?  I didn't see any thing outstanding but I may have missed
>  something while I was on vacation.  I'm going to create a 5.0.0
>  milestone for the last few remaining bugs and shoot for a 7/20
> tag date
>  unless there are any more critical bugs lurking about.  I will
> also
>  create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to
> make the
>  release announcement on 7/27.  Does anyone see any issues with
> these dates
> 
>  How do stand with our installers?  I saw the macos installer was
> making
>  some nice progress.
> 
>  Are the doc devs, library devs, and translators (except for the
> recent
>  minor string changes) ready?
> 
>  Is there anything else I'm missing?  I really would like to make
> these
>  dates.  I have an Olimex TERES laptop kit that I've been dying to
> play
>  around with but I know once I start on that, everything else will
> get
>  pushed to the back burner so I'm not going to start until version
> 5 is
>  released. :)
> 
>  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   

Re: [Kicad-developers] 5.1 UI feedback

2018-07-18 Thread Jeff Young
Yeah, the “Show” label of the Output Messages checkboxes is misplaced too.

I’ll have another build along shortly….

Cheers,
Jeff.


> On 18 Jul 2018, at 15:05, Kevin Cozens  wrote:
> 
> On 2018-07-18 08:32 AM, Wayne Stambaugh wrote:
>> Attached are the updated screen shots.
> 
> One minor point. In the first screen shot the icon with the books and 
> magnifying glass is on the right side of the dialog the first time it appears 
> but is just after the end of the entry field the second time it appears.
> 
> It would look a little better if they were in the same relative horizontal 
> position.
> 
> -- 
> Cheers!
> 
> Kevin.
> 
> http://www.ve3syb.ca/   | "Nerds make the shiny things that
> https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
>| that's why we're powerful"
> Owner of Elecraft K2 #2172  |
> #include  | --Chris Hardwick
> 
> ___
> 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] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
Nick,

Please let me know if you can't get around to tagging the i18n and doc
repos.  I can tag them on Friday if need be.

Cheers,

Wayne

On 7/18/2018 10:23 AM, Nick Østergaard wrote:
> I probably didn't mention this clearly. It is also good for me if
> everything is tagged on friday, I guess that is mostly about the libs,
> as I will probably tag i18n and doc myself.
> 
> I am on vacation next week with no connectivity.
> 
> Nick
> 
> Den ons. 18. jul. 2018 kl. 16.19 skrev Wayne Stambaugh :
>>
>> Sorry about that.  I missed the restructure info.  I think I covered
>> most of the changes in my repo.  I will try to get my changes pushed
>> tonight so I can get some feedback before the official release announcement.
>>
>> On 7/18/2018 10:13 AM, Nick Østergaard wrote:
>>> Ohh, well, I wrote that. He just restructured the dir structure
>>> recently. I have only listed features added that could remember at
>>> some point, there are certainly missing. So I suggest any developer
>>> who have anything to add just creates a PR ASAP.
>>> Den ons. 18. jul. 2018 kl. 16.10 skrev Wayne Stambaugh 
>>> :

 Nick,

 A preliminary draft is already written[1] by Mark Roszko.  I just need
 to finish cleaning it up and remove the draft tag for the release
 announcement.

 Cheers,

 Wayne

 [1]:
 https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc

 On 7/18/2018 10:01 AM, Nick Østergaard wrote:
> Wayne,
>
> If you have a draft ready for the release announcement, please create
> a pull request with it as a draft or push it as a draft, in case we
> would like to add more info. This to avoid anyone else in attempting
> to write  it.
>
> Nick
> Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh 
> :
>>
>> The goal is to have everything tagged by Friday and then give the
>> package builders a few days to get the 5.0.0 packages (or a least most
>> of them) built and added to the website before making the official
>> announcement.  I still have some changes to make to the release
>> announcement which I should have done by Friday.  Would the person
>> responsible for providing the website patch for the v5 package links
>> please let me know when that is ready to go.  Is there anything else
>> that I missed?
>>
>> Cheers,
>>
>> Wayne
>>
>> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
>>> Tell me if I am wrong, but I start to believe we are going to publish v5
>>> this Friday. Is there anything missing I could help with? Do we have the
>>> website updates ready?
>>>
>>> Cheers,
>>> Orson
>>>
>>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
 Are there any critical bugs remaining to be fixed for the stable 5
 release?  I didn't see any thing outstanding but I may have missed
 something while I was on vacation.  I'm going to create a 5.0.0
 milestone for the last few remaining bugs and shoot for a 7/20 tag date
 unless there are any more critical bugs lurking about.  I will also
 create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make 
 the
 release announcement on 7/27.  Does anyone see any issues with these 
 dates

 How do stand with our installers?  I saw the macos installer was making
 some nice progress.

 Are the doc devs, library devs, and translators (except for the recent
 minor string changes) ready?

 Is there anything else I'm missing?  I really would like to make these
 dates.  I have an Olimex TERES laptop kit that I've been dying to play
 around with but I know once I start on that, everything else will get
 pushed to the back burner so I'm not going to start until version 5 is
 released. :)

 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Nick Østergaard
I probably didn't mention this clearly. It is also good for me if
everything is tagged on friday, I guess that is mostly about the libs,
as I will probably tag i18n and doc myself.

I am on vacation next week with no connectivity.

Nick

Den ons. 18. jul. 2018 kl. 16.19 skrev Wayne Stambaugh :
>
> Sorry about that.  I missed the restructure info.  I think I covered
> most of the changes in my repo.  I will try to get my changes pushed
> tonight so I can get some feedback before the official release announcement.
>
> On 7/18/2018 10:13 AM, Nick Østergaard wrote:
> > Ohh, well, I wrote that. He just restructured the dir structure
> > recently. I have only listed features added that could remember at
> > some point, there are certainly missing. So I suggest any developer
> > who have anything to add just creates a PR ASAP.
> > Den ons. 18. jul. 2018 kl. 16.10 skrev Wayne Stambaugh 
> > :
> >>
> >> Nick,
> >>
> >> A preliminary draft is already written[1] by Mark Roszko.  I just need
> >> to finish cleaning it up and remove the draft tag for the release
> >> announcement.
> >>
> >> Cheers,
> >>
> >> Wayne
> >>
> >> [1]:
> >> https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc
> >>
> >> On 7/18/2018 10:01 AM, Nick Østergaard wrote:
> >>> Wayne,
> >>>
> >>> If you have a draft ready for the release announcement, please create
> >>> a pull request with it as a draft or push it as a draft, in case we
> >>> would like to add more info. This to avoid anyone else in attempting
> >>> to write  it.
> >>>
> >>> Nick
> >>> Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh 
> >>> :
> 
>  The goal is to have everything tagged by Friday and then give the
>  package builders a few days to get the 5.0.0 packages (or a least most
>  of them) built and added to the website before making the official
>  announcement.  I still have some changes to make to the release
>  announcement which I should have done by Friday.  Would the person
>  responsible for providing the website patch for the v5 package links
>  please let me know when that is ready to go.  Is there anything else
>  that I missed?
> 
>  Cheers,
> 
>  Wayne
> 
>  On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> > Tell me if I am wrong, but I start to believe we are going to publish v5
> > this Friday. Is there anything missing I could help with? Do we have the
> > website updates ready?
> >
> > Cheers,
> > Orson
> >
> > On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
> >> Are there any critical bugs remaining to be fixed for the stable 5
> >> release?  I didn't see any thing outstanding but I may have missed
> >> something while I was on vacation.  I'm going to create a 5.0.0
> >> milestone for the last few remaining bugs and shoot for a 7/20 tag date
> >> unless there are any more critical bugs lurking about.  I will also
> >> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make 
> >> the
> >> release announcement on 7/27.  Does anyone see any issues with these 
> >> dates
> >>
> >> How do stand with our installers?  I saw the macos installer was making
> >> some nice progress.
> >>
> >> Are the doc devs, library devs, and translators (except for the recent
> >> minor string changes) ready?
> >>
> >> Is there anything else I'm missing?  I really would like to make these
> >> dates.  I have an Olimex TERES laptop kit that I've been dying to play
> >> around with but I know once I start on that, everything else will get
> >> pushed to the back burner so I'm not going to start until version 5 is
> >> released. :)
> >>
> >> 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   : 

Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
Sorry about that.  I missed the restructure info.  I think I covered
most of the changes in my repo.  I will try to get my changes pushed
tonight so I can get some feedback before the official release announcement.

On 7/18/2018 10:13 AM, Nick Østergaard wrote:
> Ohh, well, I wrote that. He just restructured the dir structure
> recently. I have only listed features added that could remember at
> some point, there are certainly missing. So I suggest any developer
> who have anything to add just creates a PR ASAP.
> Den ons. 18. jul. 2018 kl. 16.10 skrev Wayne Stambaugh :
>>
>> Nick,
>>
>> A preliminary draft is already written[1] by Mark Roszko.  I just need
>> to finish cleaning it up and remove the draft tag for the release
>> announcement.
>>
>> Cheers,
>>
>> Wayne
>>
>> [1]:
>> https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc
>>
>> On 7/18/2018 10:01 AM, Nick Østergaard wrote:
>>> Wayne,
>>>
>>> If you have a draft ready for the release announcement, please create
>>> a pull request with it as a draft or push it as a draft, in case we
>>> would like to add more info. This to avoid anyone else in attempting
>>> to write  it.
>>>
>>> Nick
>>> Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh 
>>> :

 The goal is to have everything tagged by Friday and then give the
 package builders a few days to get the 5.0.0 packages (or a least most
 of them) built and added to the website before making the official
 announcement.  I still have some changes to make to the release
 announcement which I should have done by Friday.  Would the person
 responsible for providing the website patch for the v5 package links
 please let me know when that is ready to go.  Is there anything else
 that I missed?

 Cheers,

 Wayne

 On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> Tell me if I am wrong, but I start to believe we are going to publish v5
> this Friday. Is there anything missing I could help with? Do we have the
> website updates ready?
>
> Cheers,
> Orson
>
> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>> Are there any critical bugs remaining to be fixed for the stable 5
>> release?  I didn't see any thing outstanding but I may have missed
>> something while I was on vacation.  I'm going to create a 5.0.0
>> milestone for the last few remaining bugs and shoot for a 7/20 tag date
>> unless there are any more critical bugs lurking about.  I will also
>> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
>> release announcement on 7/27.  Does anyone see any issues with these 
>> dates
>>
>> How do stand with our installers?  I saw the macos installer was making
>> some nice progress.
>>
>> Are the doc devs, library devs, and translators (except for the recent
>> minor string changes) ready?
>>
>> Is there anything else I'm missing?  I really would like to make these
>> dates.  I have an Olimex TERES laptop kit that I've been dying to play
>> around with but I know once I start on that, everything else will get
>> pushed to the back burner so I'm not going to start until version 5 is
>> released. :)
>>
>> 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Nick Østergaard
Ohh, well, I wrote that. He just restructured the dir structure
recently. I have only listed features added that could remember at
some point, there are certainly missing. So I suggest any developer
who have anything to add just creates a PR ASAP.
Den ons. 18. jul. 2018 kl. 16.10 skrev Wayne Stambaugh :
>
> Nick,
>
> A preliminary draft is already written[1] by Mark Roszko.  I just need
> to finish cleaning it up and remove the draft tag for the release
> announcement.
>
> Cheers,
>
> Wayne
>
> [1]:
> https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc
>
> On 7/18/2018 10:01 AM, Nick Østergaard wrote:
> > Wayne,
> >
> > If you have a draft ready for the release announcement, please create
> > a pull request with it as a draft or push it as a draft, in case we
> > would like to add more info. This to avoid anyone else in attempting
> > to write  it.
> >
> > Nick
> > Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh 
> > :
> >>
> >> The goal is to have everything tagged by Friday and then give the
> >> package builders a few days to get the 5.0.0 packages (or a least most
> >> of them) built and added to the website before making the official
> >> announcement.  I still have some changes to make to the release
> >> announcement which I should have done by Friday.  Would the person
> >> responsible for providing the website patch for the v5 package links
> >> please let me know when that is ready to go.  Is there anything else
> >> that I missed?
> >>
> >> Cheers,
> >>
> >> Wayne
> >>
> >> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> >>> Tell me if I am wrong, but I start to believe we are going to publish v5
> >>> this Friday. Is there anything missing I could help with? Do we have the
> >>> website updates ready?
> >>>
> >>> Cheers,
> >>> Orson
> >>>
> >>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>  Are there any critical bugs remaining to be fixed for the stable 5
>  release?  I didn't see any thing outstanding but I may have missed
>  something while I was on vacation.  I'm going to create a 5.0.0
>  milestone for the last few remaining bugs and shoot for a 7/20 tag date
>  unless there are any more critical bugs lurking about.  I will also
>  create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
>  release announcement on 7/27.  Does anyone see any issues with these 
>  dates
> 
>  How do stand with our installers?  I saw the macos installer was making
>  some nice progress.
> 
>  Are the doc devs, library devs, and translators (except for the recent
>  minor string changes) ready?
> 
>  Is there anything else I'm missing?  I really would like to make these
>  dates.  I have an Olimex TERES laptop kit that I've been dying to play
>  around with but I know once I start on that, everything else will get
>  pushed to the back burner so I'm not going to start until version 5 is
>  released. :)
> 
>  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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
Nick,

A preliminary draft is already written[1] by Mark Roszko.  I just need
to finish cleaning it up and remove the draft tag for the release
announcement.

Cheers,

Wayne

[1]:
https://github.com/KiCad/kicad-website/blob/master/content/blog/release-5.0.0.adoc

On 7/18/2018 10:01 AM, Nick Østergaard wrote:
> Wayne,
> 
> If you have a draft ready for the release announcement, please create
> a pull request with it as a draft or push it as a draft, in case we
> would like to add more info. This to avoid anyone else in attempting
> to write  it.
> 
> Nick
> Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh :
>>
>> The goal is to have everything tagged by Friday and then give the
>> package builders a few days to get the 5.0.0 packages (or a least most
>> of them) built and added to the website before making the official
>> announcement.  I still have some changes to make to the release
>> announcement which I should have done by Friday.  Would the person
>> responsible for providing the website patch for the v5 package links
>> please let me know when that is ready to go.  Is there anything else
>> that I missed?
>>
>> Cheers,
>>
>> Wayne
>>
>> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
>>> Tell me if I am wrong, but I start to believe we are going to publish v5
>>> this Friday. Is there anything missing I could help with? Do we have the
>>> website updates ready?
>>>
>>> Cheers,
>>> Orson
>>>
>>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
 Are there any critical bugs remaining to be fixed for the stable 5
 release?  I didn't see any thing outstanding but I may have missed
 something while I was on vacation.  I'm going to create a 5.0.0
 milestone for the last few remaining bugs and shoot for a 7/20 tag date
 unless there are any more critical bugs lurking about.  I will also
 create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
 release announcement on 7/27.  Does anyone see any issues with these dates

 How do stand with our installers?  I saw the macos installer was making
 some nice progress.

 Are the doc devs, library devs, and translators (except for the recent
 minor string changes) ready?

 Is there anything else I'm missing?  I really would like to make these
 dates.  I have an Olimex TERES laptop kit that I've been dying to play
 around with but I know once I start on that, everything else will get
 pushed to the back burner so I'm not going to start until version 5 is
 released. :)

 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


Re: [Kicad-developers] 5.1 UI feedback

2018-07-18 Thread Kevin Cozens

On 2018-07-18 08:32 AM, Wayne Stambaugh wrote:

Attached are the updated screen shots.


One minor point. In the first screen shot the icon with the books and 
magnifying glass is on the right side of the dialog the first time it 
appears but is just after the end of the entry field the second time it appears.


It would look a little better if they were in the same relative horizontal 
position.


--
Cheers!

Kevin.

http://www.ve3syb.ca/   | "Nerds make the shiny things that
https://www.patreon.com/KevinCozens | distract the mouth-breathers, and
| that's why we're powerful"
Owner of Elecraft K2 #2172  |
#include  | --Chris Hardwick

___
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] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
AFAIK, old stable was any stable release prior to the v4 release.  From
v4 on we should make any required migration paths version specific.

On 7/18/2018 9:58 AM, Adam Wolf wrote:
> Oof! I hadn't even thought of that.  I was just concerned about folks
> not understanding that "old stable" means a specific nameless release,
> rather than the phrase "a stable release that is older than the
> current release".
> 
> Adam
> On Wed, Jul 18, 2018 at 8:56 AM Wayne Stambaugh  wrote:
>>
>> Migrating is definitely a version to version issue so v4 to v5 migration
>> would make the upgrade path clear.  I would hope no one is upgrading
>> from old stable to v5.  That would really be ugly.
>>
>> On 7/18/2018 9:50 AM, Adam Wolf wrote:
>>> I am talking with Nick about if we want the "migration from old
>>> stable" still in the sidebar, or if we should replace it with V4 to V5
>>> migration, or if we should make a new generic migration page.  I think
>>> we could discuss it here, rather than a Github issue on the website
>>> repo.
>>>
>>> I think "migration from old stable" will be confusing for folks once
>>> V5 is out.  Thoughts?
>>>
>>> Adam
>>> On Wed, Jul 18, 2018 at 7:41 AM Wayne Stambaugh  
>>> wrote:

 The goal is to have everything tagged by Friday and then give the
 package builders a few days to get the 5.0.0 packages (or a least most
 of them) built and added to the website before making the official
 announcement.  I still have some changes to make to the release
 announcement which I should have done by Friday.  Would the person
 responsible for providing the website patch for the v5 package links
 please let me know when that is ready to go.  Is there anything else
 that I missed?

 Cheers,

 Wayne

 On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> Tell me if I am wrong, but I start to believe we are going to publish v5
> this Friday. Is there anything missing I could help with? Do we have the
> website updates ready?
>
> Cheers,
> Orson
>
> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>> Are there any critical bugs remaining to be fixed for the stable 5
>> release?  I didn't see any thing outstanding but I may have missed
>> something while I was on vacation.  I'm going to create a 5.0.0
>> milestone for the last few remaining bugs and shoot for a 7/20 tag date
>> unless there are any more critical bugs lurking about.  I will also
>> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
>> release announcement on 7/27.  Does anyone see any issues with these 
>> dates
>>
>> How do stand with our installers?  I saw the macos installer was making
>> some nice progress.
>>
>> Are the doc devs, library devs, and translators (except for the recent
>> minor string changes) ready?
>>
>> Is there anything else I'm missing?  I really would like to make these
>> dates.  I have an Olimex TERES laptop kit that I've been dying to play
>> around with but I know once I start on that, everything else will get
>> pushed to the back burner so I'm not going to start until version 5 is
>> released. :)
>>
>> 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Nick Østergaard
Wayne,

If you have a draft ready for the release announcement, please create
a pull request with it as a draft or push it as a draft, in case we
would like to add more info. This to avoid anyone else in attempting
to write  it.

Nick
Den ons. 18. jul. 2018 kl. 14.41 skrev Wayne Stambaugh :
>
> The goal is to have everything tagged by Friday and then give the
> package builders a few days to get the 5.0.0 packages (or a least most
> of them) built and added to the website before making the official
> announcement.  I still have some changes to make to the release
> announcement which I should have done by Friday.  Would the person
> responsible for providing the website patch for the v5 package links
> please let me know when that is ready to go.  Is there anything else
> that I missed?
>
> Cheers,
>
> Wayne
>
> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> > Tell me if I am wrong, but I start to believe we are going to publish v5
> > this Friday. Is there anything missing I could help with? Do we have the
> > website updates ready?
> >
> > Cheers,
> > Orson
> >
> > On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
> >> Are there any critical bugs remaining to be fixed for the stable 5
> >> release?  I didn't see any thing outstanding but I may have missed
> >> something while I was on vacation.  I'm going to create a 5.0.0
> >> milestone for the last few remaining bugs and shoot for a 7/20 tag date
> >> unless there are any more critical bugs lurking about.  I will also
> >> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
> >> release announcement on 7/27.  Does anyone see any issues with these dates
> >>
> >> How do stand with our installers?  I saw the macos installer was making
> >> some nice progress.
> >>
> >> Are the doc devs, library devs, and translators (except for the recent
> >> minor string changes) ready?
> >>
> >> Is there anything else I'm missing?  I really would like to make these
> >> dates.  I have an Olimex TERES laptop kit that I've been dying to play
> >> around with but I know once I start on that, everything else will get
> >> pushed to the back burner so I'm not going to start until version 5 is
> >> released. :)
> >>
> >> 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Adam Wolf
Oof! I hadn't even thought of that.  I was just concerned about folks
not understanding that "old stable" means a specific nameless release,
rather than the phrase "a stable release that is older than the
current release".

Adam
On Wed, Jul 18, 2018 at 8:56 AM Wayne Stambaugh  wrote:
>
> Migrating is definitely a version to version issue so v4 to v5 migration
> would make the upgrade path clear.  I would hope no one is upgrading
> from old stable to v5.  That would really be ugly.
>
> On 7/18/2018 9:50 AM, Adam Wolf wrote:
> > I am talking with Nick about if we want the "migration from old
> > stable" still in the sidebar, or if we should replace it with V4 to V5
> > migration, or if we should make a new generic migration page.  I think
> > we could discuss it here, rather than a Github issue on the website
> > repo.
> >
> > I think "migration from old stable" will be confusing for folks once
> > V5 is out.  Thoughts?
> >
> > Adam
> > On Wed, Jul 18, 2018 at 7:41 AM Wayne Stambaugh  
> > wrote:
> >>
> >> The goal is to have everything tagged by Friday and then give the
> >> package builders a few days to get the 5.0.0 packages (or a least most
> >> of them) built and added to the website before making the official
> >> announcement.  I still have some changes to make to the release
> >> announcement which I should have done by Friday.  Would the person
> >> responsible for providing the website patch for the v5 package links
> >> please let me know when that is ready to go.  Is there anything else
> >> that I missed?
> >>
> >> Cheers,
> >>
> >> Wayne
> >>
> >> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> >>> Tell me if I am wrong, but I start to believe we are going to publish v5
> >>> this Friday. Is there anything missing I could help with? Do we have the
> >>> website updates ready?
> >>>
> >>> Cheers,
> >>> Orson
> >>>
> >>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>  Are there any critical bugs remaining to be fixed for the stable 5
>  release?  I didn't see any thing outstanding but I may have missed
>  something while I was on vacation.  I'm going to create a 5.0.0
>  milestone for the last few remaining bugs and shoot for a 7/20 tag date
>  unless there are any more critical bugs lurking about.  I will also
>  create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
>  release announcement on 7/27.  Does anyone see any issues with these 
>  dates
> 
>  How do stand with our installers?  I saw the macos installer was making
>  some nice progress.
> 
>  Are the doc devs, library devs, and translators (except for the recent
>  minor string changes) ready?
> 
>  Is there anything else I'm missing?  I really would like to make these
>  dates.  I have an Olimex TERES laptop kit that I've been dying to play
>  around with but I know once I start on that, everything else will get
>  pushed to the back burner so I'm not going to start until version 5 is
>  released. :)
> 
>  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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
Migrating is definitely a version to version issue so v4 to v5 migration
would make the upgrade path clear.  I would hope no one is upgrading
from old stable to v5.  That would really be ugly.

On 7/18/2018 9:50 AM, Adam Wolf wrote:
> I am talking with Nick about if we want the "migration from old
> stable" still in the sidebar, or if we should replace it with V4 to V5
> migration, or if we should make a new generic migration page.  I think
> we could discuss it here, rather than a Github issue on the website
> repo.
> 
> I think "migration from old stable" will be confusing for folks once
> V5 is out.  Thoughts?
> 
> Adam
> On Wed, Jul 18, 2018 at 7:41 AM Wayne Stambaugh  wrote:
>>
>> The goal is to have everything tagged by Friday and then give the
>> package builders a few days to get the 5.0.0 packages (or a least most
>> of them) built and added to the website before making the official
>> announcement.  I still have some changes to make to the release
>> announcement which I should have done by Friday.  Would the person
>> responsible for providing the website patch for the v5 package links
>> please let me know when that is ready to go.  Is there anything else
>> that I missed?
>>
>> Cheers,
>>
>> Wayne
>>
>> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
>>> Tell me if I am wrong, but I start to believe we are going to publish v5
>>> this Friday. Is there anything missing I could help with? Do we have the
>>> website updates ready?
>>>
>>> Cheers,
>>> Orson
>>>
>>> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
 Are there any critical bugs remaining to be fixed for the stable 5
 release?  I didn't see any thing outstanding but I may have missed
 something while I was on vacation.  I'm going to create a 5.0.0
 milestone for the last few remaining bugs and shoot for a 7/20 tag date
 unless there are any more critical bugs lurking about.  I will also
 create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
 release announcement on 7/27.  Does anyone see any issues with these dates

 How do stand with our installers?  I saw the macos installer was making
 some nice progress.

 Are the doc devs, library devs, and translators (except for the recent
 minor string changes) ready?

 Is there anything else I'm missing?  I really would like to make these
 dates.  I have an Olimex TERES laptop kit that I've been dying to play
 around with but I know once I start on that, everything else will get
 pushed to the back burner so I'm not going to start until version 5 is
 released. :)

 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Adam Wolf
I am talking with Nick about if we want the "migration from old
stable" still in the sidebar, or if we should replace it with V4 to V5
migration, or if we should make a new generic migration page.  I think
we could discuss it here, rather than a Github issue on the website
repo.

I think "migration from old stable" will be confusing for folks once
V5 is out.  Thoughts?

Adam
On Wed, Jul 18, 2018 at 7:41 AM Wayne Stambaugh  wrote:
>
> The goal is to have everything tagged by Friday and then give the
> package builders a few days to get the 5.0.0 packages (or a least most
> of them) built and added to the website before making the official
> announcement.  I still have some changes to make to the release
> announcement which I should have done by Friday.  Would the person
> responsible for providing the website patch for the v5 package links
> please let me know when that is ready to go.  Is there anything else
> that I missed?
>
> Cheers,
>
> Wayne
>
> On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> > Tell me if I am wrong, but I start to believe we are going to publish v5
> > this Friday. Is there anything missing I could help with? Do we have the
> > website updates ready?
> >
> > Cheers,
> > Orson
> >
> > On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
> >> Are there any critical bugs remaining to be fixed for the stable 5
> >> release?  I didn't see any thing outstanding but I may have missed
> >> something while I was on vacation.  I'm going to create a 5.0.0
> >> milestone for the last few remaining bugs and shoot for a 7/20 tag date
> >> unless there are any more critical bugs lurking about.  I will also
> >> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
> >> release announcement on 7/27.  Does anyone see any issues with these dates
> >>
> >> How do stand with our installers?  I saw the macos installer was making
> >> some nice progress.
> >>
> >> Are the doc devs, library devs, and translators (except for the recent
> >> minor string changes) ready?
> >>
> >> Is there anything else I'm missing?  I really would like to make these
> >> dates.  I have an Olimex TERES laptop kit that I've been dying to play
> >> around with but I know once I start on that, everything else will get
> >> pushed to the back burner so I'm not going to start until version 5 is
> >> released. :)
> >>
> >> 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Wayne Stambaugh
The goal is to have everything tagged by Friday and then give the
package builders a few days to get the 5.0.0 packages (or a least most
of them) built and added to the website before making the official
announcement.  I still have some changes to make to the release
announcement which I should have done by Friday.  Would the person
responsible for providing the website patch for the v5 package links
please let me know when that is ready to go.  Is there anything else
that I missed?

Cheers,

Wayne

On 7/18/2018 8:22 AM, Maciej Sumiński wrote:
> Tell me if I am wrong, but I start to believe we are going to publish v5
> this Friday. Is there anything missing I could help with? Do we have the
> website updates ready?
> 
> Cheers,
> Orson
> 
> On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
>> Are there any critical bugs remaining to be fixed for the stable 5
>> release?  I didn't see any thing outstanding but I may have missed
>> something while I was on vacation.  I'm going to create a 5.0.0
>> milestone for the last few remaining bugs and shoot for a 7/20 tag date
>> unless there are any more critical bugs lurking about.  I will also
>> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
>> release announcement on 7/27.  Does anyone see any issues with these dates
>>
>> How do stand with our installers?  I saw the macos installer was making
>> some nice progress.
>>
>> Are the doc devs, library devs, and translators (except for the recent
>> minor string changes) ready?
>>
>> Is there anything else I'm missing?  I really would like to make these
>> dates.  I have an Olimex TERES laptop kit that I've been dying to play
>> around with but I know once I start on that, everything else will get
>> pushed to the back burner so I'm not going to start until version 5 is
>> released. :)
>>
>> 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


Re: [Kicad-developers] Stable 5 release.

2018-07-18 Thread Maciej Sumiński
Tell me if I am wrong, but I start to believe we are going to publish v5
this Friday. Is there anything missing I could help with? Do we have the
website updates ready?

Cheers,
Orson

On 07/11/2018 08:49 PM, Wayne Stambaugh wrote:
> Are there any critical bugs remaining to be fixed for the stable 5
> release?  I didn't see any thing outstanding but I may have missed
> something while I was on vacation.  I'm going to create a 5.0.0
> milestone for the last few remaining bugs and shoot for a 7/20 tag date
> unless there are any more critical bugs lurking about.  I will also
> create 5.0 and 5.1 branches.  If I tag on 7/20, I would like to make the
> release announcement on 7/27.  Does anyone see any issues with these dates
> 
> How do stand with our installers?  I saw the macos installer was making
> some nice progress.
> 
> Are the doc devs, library devs, and translators (except for the recent
> minor string changes) ready?
> 
> Is there anything else I'm missing?  I really would like to make these
> dates.  I have an Olimex TERES laptop kit that I've been dying to play
> around with but I know once I start on that, everything else will get
> pushed to the back burner so I'm not going to start until version 5 is
> released. :)
> 
> 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
> 




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] 5.1 branch

2018-07-18 Thread Jeff Young
Hi Tom, et al,

I assume we just need to drop wxDC for the canvas, but that UI constructs (such 
as colour swatches, etc.) would continue to use wxDC?

Thanks,
Jeff.


> On 17 Jul 2018, at 15:44, Tomasz Wlostowski  wrote:
> 
> On 16/07/18 17:54, Wayne Stambaugh wrote:
>> I was really hoping just to fix the wxDC issues with GTK3 rather than
>> implement GAL unless Tom implemented a wxDC GAL and that is all we
>> expose for 5.1.  The primary goal here is to fix the GTK3 rendering
>> issues so we can enable wxPython support again.  We need to limit our
>> risk exposure for 5.1.
>> 
> Hi Wayne,
> 
> The sooner we drop wxDC, the better for Kicad. I wouldn't do it because
> of the GTK3/Python issues (since it's a neverending Linux problem of
> changing APIs and libraries), but for performance reasons - on OSX for
> instance, eeschema is sometimes barely usable because of slow drawing.
> 
> I hope I'll be able to devote some time to cleaning up the eeschema-gal
> code in the coming weeks. So far, the main canvas and the library editor
> are implemented, with the symbol preview widgets & library browser
> remaining.
> 
> 
>> I'm assuming the printing is a v6 goal.
> 
> Orson made quite a lot of progress with Cairo printing. IIRC it can make
> it to the 5.1.
> 
> Cheers,
> Tom
> 
>> 
>> On 7/16/2018 11:15 AM, Maciej Sumiński wrote:
>>> Tom has already prepared a proof-of-concept eeschema with GAL rendering,
>>> which still uses the legacy tools. I have some promising results
>>> switching the printing system to Cairo GAL. Obviously we will face some
>>> unexpected obstacles, but I have high hopes.
>>> 
>>> Cheers,
>>> Orson
>>> 
>>> On 07/16/2018 03:40 PM, Wayne Stambaugh wrote:
 Yes, assuming we can get that to work without dragging in Phoenix.
 
 On 7/16/2018 9:27 AM, Jeff Young wrote:
> 5.1 is also for the GTK3 fixes, right?
> 
>> On 16 Jul 2018, at 14:23, Wayne Stambaugh  wrote:
>> 
>> On 7/16/2018 9:19 AM, Simon Richter wrote:
>>> Hi,
>>> 
>>> On 15.07.2018 13:39, Jeff Young wrote:
>>> 
 I renamed my 6.0 branch to 5.1, since most of what it contains goes 
 there.
>>> 
>>> What is the difference between 5.1 and 6.0? What goes into which branch?
>>> 
>>>  Simon
>>> 
>> 
>> 5.1 is only for the UI refactoring Jeff is working on along with any bug
>> fixes that get merged into the 5.0 branch.  Any new features such as the
>> new schematic file formats or GALification of eeschema are v6 only.
>> 
>> ___
>> 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


[Kicad-developers] created branches for kicad i18n 5.0 and 5.1

2018-07-18 Thread Marco Ciampa
Hello devs and translators,
I just created the branches 5.0 and 5.1 of the i18n repo for allowing the
translators and translations to follow the recent (and future) ui changes.
When there will be a 6.0 branch different from master, please let me know.

Best regards

PS: I'm currently on a vacation at a south Italian seaside.
Please be patient that the connection (and family :-) do not allow frequent
updates...

PPS: we should probably create such a branch for docs too or we can
better handle it with some notes inside the docs? Please have a say on
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] Janitor commits missing

2018-07-18 Thread Maciej Sumiński
It should work fine now. After I had ran the clean-up script, the
credentials file was overwritten by another user, depriving the web
server access rights. Fortunately there is no ban for massive bug status
update.

Cheers,
Orson

On 07/18/2018 08:51 AM, Maciej Sumiński wrote:
> Hi Seth,
> 
> I have noticed it too. There is no special treatment for cherry-pick
> commits, the only thing Janitor cares about is 'Fixes' line.
> 
> I checked the logs and apparently Janitor is unable to log in to
> Launchpad. I hope that the recent bug statuses clean up has not granted
> him a ban for sending too many requests. I will investigate it.
> 
> Cheers,
> Orson
> 
> On 07/17/2018 07:10 PM, Seth Hillbrand wrote:
>> ​Hi Orson-
>>
>> I'm seeing Jeff's cherry-picked commits being processed by Janitor but they
>> seem to be missing the reference to the commit that previous Janitor log
>> messages had.
>>
>> Is this intentional in how Janitor handles cherry-picks?
>>
>> -S​
>>
>>
>>
>> ___
>> 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
> 




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] Janitor commits missing

2018-07-18 Thread Maciej Sumiński
Hi Seth,

I have noticed it too. There is no special treatment for cherry-pick
commits, the only thing Janitor cares about is 'Fixes' line.

I checked the logs and apparently Janitor is unable to log in to
Launchpad. I hope that the recent bug statuses clean up has not granted
him a ban for sending too many requests. I will investigate it.

Cheers,
Orson

On 07/17/2018 07:10 PM, Seth Hillbrand wrote:
> ​Hi Orson-
> 
> I'm seeing Jeff's cherry-picked commits being processed by Janitor but they
> seem to be missing the reference to the commit that previous Janitor log
> messages had.
> 
> Is this intentional in how Janitor handles cherry-picks?
> 
> -S​
> 
> 
> 
> ___
> 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