Re: [Kicad-developers] GAL branch

2018-10-04 Thread Tomasz Wlostowski
On 04/10/18 20:04, Seth Hillbrand wrote: > Going forward, I think we might look at an official policy of only > supporting OSs that are actively supported by their originators.  That > would week out some older systems but reduce the testing load.  We could > still provide compatible binaries but

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Tomasz Wlostowski
On 04/10/18 19:18, Wayne Stambaugh wrote: > On 10/4/2018 1:11 PM, Seth Hillbrand wrote: >> Am Do., 4. Okt. 2018 um 09:58 Uhr schrieb Wayne Stambaugh >> mailto:stambau...@gmail.com>>: >> >> Still waiting for the macos fix to tag 5.0.1. >> >> >> The 5.0.1 bug doesn't affect 5.1 as far as I can

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Eeli Kaikkonen
to 4. lokak. 2018 klo 19.06 Seth Hillbrand (s...@hillbrand.org) kirjoitti: > > @Eeli- I cannot recreate either issue in the current build although I did > see them previously. Is there any chance you have stale files in your > build? > I have Kubuntu 17.10, i.e. KDE. In the System Settings

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Seth Hillbrand
Am Do., 4. Okt. 2018 um 10:20 Uhr schrieb Wayne Stambaugh < stambau...@gmail.com>: > On 10/4/2018 1:11 PM, Seth Hillbrand wrote: > > Am Do., 4. Okt. 2018 um 09:58 Uhr schrieb Wayne Stambaugh > > mailto:stambau...@gmail.com>>: > > > > Still waiting for the macos fix to tag 5.0.1. > > > > > >

[Kicad-developers] Jenkins build is back to normal : linux-kicad-full-gcc-head #4078

2018-10-04 Thread Miguel Angel Ajo
See ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe :

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Wayne Stambaugh
On 10/4/2018 1:11 PM, Seth Hillbrand wrote: > Am Do., 4. Okt. 2018 um 09:58 Uhr schrieb Wayne Stambaugh > mailto:stambau...@gmail.com>>: > > Still waiting for the macos fix to tag 5.0.1. > > > The 5.0.1 bug doesn't affect 5.1 as far as I can tell.   It's the delta I'm worried about. This

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Seth Hillbrand
Am Do., 4. Okt. 2018 um 09:58 Uhr schrieb Wayne Stambaugh < stambau...@gmail.com>: > Still waiting for the macos fix to tag 5.0.1. > The 5.0.1 bug doesn't affect 5.1 as far as I can tell. ___ Mailing list: https://launchpad.net/~kicad-developers Post

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Wayne Stambaugh
Still waiting for the macos fix to tag 5.0.1. On 10/4/2018 12:05 PM, Seth Hillbrand wrote: > Hi All- > > Looks like Jeff's branch rebases cleanly on the current master at the > moment.  There are a number of non-GAL bugs to address in eeschema that > would be good to start working on.  Are there

[Kicad-developers] [PATCH] Expand testing documentation

2018-10-04 Thread John Beard
Hi, Simple patch to give some more/updated details on how to use the unit tests. Cheers, John From 67dcd2b9f7d7716a31b21e5e958f664ada1eaadc Mon Sep 17 00:00:00 2001 From: John Beard Date: Thu, 4 Oct 2018 15:37:24 +0100 Subject: [PATCH 1/3] Update testing documentation ---

Re: [Kicad-developers] GAL branch

2018-10-04 Thread jp charras
Le 04/10/2018 à 18:05, Seth Hillbrand a écrit : > Hi All- > > Looks like Jeff's branch rebases cleanly on the current master at the > moment.  There are a number of non-GAL bugs to address in eeschema that > would be good to start working on.  Are there showstoppers to merging still? I don't

Re: [Kicad-developers] GAL branch

2018-10-04 Thread Seth Hillbrand
Hi All- Looks like Jeff's branch rebases cleanly on the current master at the moment. There are a number of non-GAL bugs to address in eeschema that would be good to start working on. Are there showstoppers to merging still? @Eeli- I cannot recreate either issue in the current build although I

Re: [Kicad-developers] [PATCH] Hotkey list dialog

2018-10-04 Thread Wayne Stambaugh
Hey John, I merged your patch set as is for now. We can change this in the future should we decide it makes sense. wxSizerFlags::GetDefaultBorder() looks interesting. Maybe we should be using it instead of the hard coded 5. It does make yet one more argument for coding dialogs by hand unless

Re: [Kicad-developers] [PATCH] Enable cursor and pan keys in Gerbview

2018-10-04 Thread jp charras
Le 04/10/2018 à 10:04, John Beard a écrit : > Hi, > > This patch puts the cursor and pan key actions and logic in the common > tool framework, rather than duplicating it between cvpcb and pcbnew as > current. > > This then allows Gerbview (and any other panel with COMMON_TOOLS > registered) to

[Kicad-developers] [PATCH] Enable cursor and pan keys in Gerbview

2018-10-04 Thread John Beard
Hi, This patch puts the cursor and pan key actions and logic in the common tool framework, rather than duplicating it between cvpcb and pcbnew as current. This then allows Gerbview (and any other panel with COMMON_TOOLS registered) to benefit from these keys for free. Cheers, John From

Re: [Kicad-developers] [PATCH] Hotkey list dialog

2018-10-04 Thread John Beard
Hi Wayne, In wxSizer, there is an option to use the "default border", which is preferred to hardcoding a pixel value. This is preferred apparently[1]. The WX method to do this, wxSizerFlags::GetDefaultBorder(), is here.[2] (GNOME-HIG compliant 6px on GTK, 5px on OSX, scaled otherwise). If we