Re: [Kicad-developers] Fedora reported bug 1742898

2019-08-17 Thread Seth Hillbrand
On 2019-08-17 09:31, Steven A. Falco wrote: I just noticed the following bug report on Kicad 5.1.2, reported for Fedora 30: https://bugzilla.redhat.com/show_bug.cgi?id=1742898 According to the report, a crash happened in poll_for_event, and the bug author added some text about what he thought

Re: [Kicad-developers] Opinions on eeschema selection highlighting?

2019-08-23 Thread Seth Hillbrand
On 2019-08-23 13:19, Jeff Young wrote: While I wasn’t too happy with it at first, the new selection highlighting has really grown on me. How do others feel about it? I find it clear and useful. No complaints -Seth ___ Mailing list: https://launch

Re: [Kicad-developers] Patch: Fixing a compile error on Power PC

2019-08-26 Thread Seth Hillbrand
Agreed. That looks like it may be have been a rebase issue as the commit was for MSVC and shouldn't affect PPC. @Tom, shout if you see an issue here. I've pushed the patch to master in the meantime. Best- Seth On 2019-08-24 18:00, Steven A. Falco wrote: I have enabled compilation for PPC6

Re: [Kicad-developers] Patch: Fixing a compile error on Power PC

2019-08-26 Thread Seth Hillbrand
On 2019-08-26 16:05, Tomasz Wlostowski wrote: On 26/08/2019 17:24, Seth Hillbrand wrote: Agreed.  That looks like it may be have been a rebase issue as the commit was for MSVC and shouldn't affect PPC. @Tom, shout if you see an issue here.  I've pushed the patch to master in the mea

Re: [Kicad-developers] Opinions on eeschema selection highlighting?

2019-08-27 Thread Seth Hillbrand
On 2019-08-23 13:19, Jeff Young wrote: While I wasn’t too happy with it at first, the new selection highlighting has really grown on me. How do others feel about it? Hi Jeff- I pushed a small patch to address configuring the highlight color along with the rest of the KiCad color themes. Let

[Kicad-developers] 5.1.5 RC?

2019-08-27 Thread Seth Hillbrand
Hi All- I know 5.1.4 is still in its infancy but I am hoping that we can plan for a 5.1.5 during September (fixing at least 2 critical bugs). We've been a bit rocky with the point updates, so I'd like to propose a sequence: 1) Sometime around September 15: Tag 5.1.5-rc1 and announce string

[Kicad-developers] MacOS ngspice version

2019-08-28 Thread Seth Hillbrand
Note: Changing thread to avoid hijacking. On 2019-08-28 08:05, Jonatan Liljedahl wrote: It would be great if you could roll back to ngspice-26 in 5.1.5, at least for macOS, since it seems completely broken (can't simulate op-amps, etc). Cheers /Jonatan Hi Jonatan- Please see bug tracker[1] f

Re: [Kicad-developers] Multiple delete in dialog_spice_model.cpp

2019-08-30 Thread Seth Hillbrand
On 2019-08-30 15:49, Sylwester Kocjan wrote: m_schfields->erase( std::remove_if( m_schfields->begin(), m_schfields->end(), [&]( const SCH_FIELD& f ) { return f.GetName() == spiceField; } ), m_schfields->end() ); My question is, why deletion is repeated

[Kicad-developers] Selection Highlighting

2019-08-31 Thread Seth Hillbrand
Hi Jeff (and others interested)- I pushed a proposal for blurring the eeschema selection highlighting to my personal repo at [1]. Currently, I'm only blurring the Cairo selections, so don't run this branch with OpenGL yet. I really like the new eeschema halo-for-selection paradigm but it doe

Re: [Kicad-developers] Commit c8a6878 breaks compilation on msys2

2019-09-04 Thread Seth Hillbrand
Whoops. Thanks JP. Fix incoming. -S On 2019-09-04 12:35, jp charras wrote: common.h does not compile with msys2/gcc 9.1.0 Here is the error message: In file included from D:/wxWidgets-3.1.1/include/wx/defs.h:851, from D:/wxWidgets-3.1.1/include/wx/wx.h:14, f

Re: [Kicad-developers] Selection highlighting changes.

2019-09-04 Thread Seth Hillbrand
I'm working on one (slowly) but it hasn't been pushed. GTK3 in the master branch looks normal for me. Does it look the same in OpenGL and Cairo? _Seth On 2019-09-04 15:36, Wayne Stambaugh wrote: Was there a change recently to the selection highlighting in Eeschema? I can barely see any differ

Re: [Kicad-developers] [Patch] Update common preview items

2019-09-04 Thread Seth Hillbrand
All good from what I see. I appreciate the cleanup here to drop down to base classes where possible! -Seth On 2019-09-04 15:31, Wayne Stambaugh wrote: This patch looks good to me. Anyone else have any objections? On 8/31/19 10:42 AM, Ian McInerney wrote: Some preview items were still stati

Re: [Kicad-developers] Selection highlighting changes.

2019-09-04 Thread Seth Hillbrand
ee if it’s just too washed out on your monitor. On 4 Sep 2019, at 22:35, Seth Hillbrand wrote: I'm working on one (slowly) but it hasn't been pushed. GTK3 in the master branch looks normal for me. Does it look the same in OpenGL and Cairo? _Seth On 2019-09-04 15:36, Wayne Stambaug

Re: [Kicad-developers] Selection highlighting changes.

2019-09-05 Thread Seth Hillbrand
even selected on gtk3.  Users could make it more subtle if they find it too obnoxious.  I think that would be better than a bug report about selection highlighting not working. Wayne On 9/4/19 7:24 PM, Seth Hillbrand wrote: > Oh, that's right.  We had been taking the color from syste

Re: [Kicad-developers] [Patch] Another hotkey processing fix

2019-09-05 Thread Seth Hillbrand
Wow, this bug has been a real annoyance for some time. Thank you for tracking down the origin. I've tested Ian's patch and it works correctly. Allows the 'P' hotkey to correctly trigger the Place Power action in eeschema and the Create Pin action in LibEdit. Tested with individual applicati

Re: [Kicad-developers] [PATCH 0/2] Remove useless casts

2019-09-09 Thread Seth Hillbrand
On 2019-09-06 18:36, Simon Richter wrote: Hi, I have two patches that remove useless casts. The first covers cases where it is quite obvious that the cast can be removed with no adverse effects, the second contains the cases where that is less clear. In theory, both can be applied and should

Re: [Kicad-developers] [PATCH][WIP] Polygons edititng tool

2019-09-10 Thread Seth Hillbrand
On 2019-09-09 08:21, Alexander Shuklin wrote: Hi! There's one thing I always missed - ability to change polygons coordinates. I prepared a patch for that. First of all there's the linechain editing widget and I used it for some pcbnew dialogs. But there's few points in which I'm not so sure. F

Re: [Kicad-developers] Ctrl-click to highlight in pcbnew missing?

2019-09-10 Thread Seth Hillbrand
One of our goals for v6 is to standardize the user interface to expected UX norms. There will be a number of large changes to accomplish this and it will modify some workflows. Moving the whole system to a selection-based interface (eeschema, pl editor as well as pcbnew) is good for long-term

Re: [Kicad-developers] Ctrl-click to highlight in pcbnew missing?

2019-09-10 Thread Seth Hillbrand
On 2019-09-10 14:35, Tomasz Wlostowski wrote: On 10/09/2019 18:49, Seth Hillbrand wrote: One of our goals for v6 is to standardize the user interface to expected UX norms.  There will be a number of large changes to accomplish this and it will modify some workflows.  Moving the whole system to

[Kicad-developers] KiCad Services Corporation

2019-09-18 Thread Seth Hillbrand
an open source system. Please feel free to raise any additional questions or concerns you might have and I'll do my best to address them. Regards- Seth Hillbrand Chief Technologist KiCad Services Corporation Twitter [1] LinkedIn [2] +1 5

Re: [Kicad-developers] [PATCH] Grid Control: Cells selecting fix.

2019-09-25 Thread Seth Hillbrand
Hi Konstantin- This makes sense. Can you send as a patch? -Seth On 2019-09-24 10:38, Konstantin Baranovskiy wrote: If *editable* cells had been selected by holding and dragging the mouse's left button, the previous selection were not clearing. --- common/grid_tricks.cpp | 3 +++ 1 file chan

Re: [Kicad-developers] [PATCH] Grid Control: Cells selecting fix.

2019-09-26 Thread Seth Hillbrand
Patch pushed. Thank you for your contribution to KiCad! -Seth On 2019-09-25 23:35, Константин Барановский wrote: > Hi Seth. > > The problem is illustrated on the gif bellow: > > Please notice, no modifier keys are used. > The patch is attached. > > ср, 25 сен

[Kicad-developers] KICAD_USE_FONT_REDUCED_SET question

2019-10-07 Thread Seth Hillbrand
;d like to address that. Can you provide additional information about the symptoms you are seeing and I can see about fixing this? Thanks! Seth Seth Hillbrand Chief Technologist KiCad Services Corporation Twitter [1] LinkedIn [2] +1 530 3

[Kicad-developers] Footprint keepout zone merge review

2019-10-08 Thread Seth Hillbrand
f that I'll clean up in the merge, so this request is just for functionality and/or implementation comments. Thanks- Seth [1] https://code.launchpad.net/~ross-schlaikjer/kicad/+git/kicad/+merge/361410 Seth Hillbrand Chief Technologist KiCad Services Corporation

Re: [Kicad-developers] [PATCH] Implement auto annotation on component/symbol placement.

2019-10-10 Thread Seth Hillbrand
ithub.com/Nufflee/kicad-source-mirror/tree/1335616-annotate-on-placement >> if anyone wants to take a look). Hi Zficani- I can't speak for others but I was waiting for either a patch with the revised code or a merge request on launchpad. I like the idea of your feature and look forw

Re: [Kicad-developers] KICAD_USE_FONT_REDUCED_SET question

2019-10-11 Thread Seth Hillbrand
On 2019-10-09 02:26, jp charras wrote: Le 07/10/2019 à 20:07, Seth Hillbrand a écrit : Hi Seth, Here is a test showing the memory used by pcbnew, with and without CJK font (I used the Windows monitor resources): Initial state: Available memory: 2280 Mb Kicad is compiled in Release version

Re: [Kicad-developers] GitLab migration

2019-10-14 Thread Seth Hillbrand
On 2019-10-14 16:09, Ian McInerney wrote: Orson, Great work so far. I was noticing as you were testing migrating the issues that our @names in the text seem to not transfer well. In one of the issues just now (the pcbnew segfault issue #228 [2]) it pulls in a different user for Seth wheneve

Re: [Kicad-developers] [PATCH] Implement auto annotation on component/symbol placement.

2019-10-15 Thread Seth Hillbrand
On 2019-10-15 11:41, Seth Hillbrand wrote: On 2019-10-14 14:42, Zficani Zficani wrote: Hi, No problem, I just wanted to make sure I sent the message properly. Here's a single squashed patch with all previous changes and these comments about copying selection. Thank you so much for

Re: [Kicad-developers] [PATCH] Implement auto annotation on component/symbol placement.

2019-10-15 Thread Seth Hillbrand
On 2019-10-15 11:57, Moses McKnight wrote: On 10/15/19 1:41 PM, Seth Hillbrand wrote: 4) Single-line statements after if/else don't get brackets {} Is that actually part of the kicad code standard?!? Every standard and recommendation I've ever seen recommends/requires the opposite

Re: [Kicad-developers] KICAD_USE_FONT_REDUCED_SET question

2019-10-18 Thread Seth Hillbrand
So, the CJK font takes roughly 900Mb at run time when runnning Eeschema + Pcbnew. It explains why I am running out of memory. There is certainly room for optimization. Hi JP- I pushed an optimization for this. Can you let me know if it helps the memory usage for you? Best- Seth Seth

Re: [Kicad-developers] 5.1.5 release status

2019-10-20 Thread Seth Hillbrand
editing changes that should be fixed before we release. I would like to tag -rc1 and start the string freeze by the end of October. Odd, I didn't see that one come through. I'll fix that this weekend. -S Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302

Re: [Kicad-developers] 5.1.5 release status

2019-10-20 Thread Seth Hillbrand
ed zone. Since we don't have a place to store the information, keeping it with the zone info doesn't make sense because it will change based on opening/closing the file. For v6, I think we add the parameter to the zone unless people object. -Seth Seth Hillbrand KiCad Services Corp

Re: [Kicad-developers] 5.1.5 release status

2019-10-20 Thread Seth Hillbrand
6028. Cheers, Wayne [1]: https://bugs.launchpad.net/kicad/+bug/1842195 [2]: https://bugs.launchpad.net/kicad/+bug/1846028 [3]: https://bugs.launchpad.net/kicad/+bug/1846029 On 10/20/19 10:13 AM, Seth Hillbrand wrote: On 2019-10-20 06:41, Wayne Stambaugh wrote: Where are we on the 5.1.5 release? 

Re: [Kicad-developers] [PATCH] Three new source types added to DIALOG_SPICE_MODEL

2019-10-20 Thread Seth Hillbrand
attached screenshot. I cannot apply this to test as there are a number of unknown characters at the end of lines and the end of the file. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372___

Re: [Kicad-developers] [PATCH] SPICE .option confused with .op simulation

2019-10-20 Thread Seth Hillbrand
simulation will fail. Please find the patch attached, where this issue is prevented. Best regards, Sylwester Good catch. I've pushed the patch to master and 5.1. Thank you for you for your contribution to KiCad. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +

Re: [Kicad-developers] 5.1.5 release status

2019-10-21 Thread Seth Hillbrand
milestone, so they can be addressed there. -Ian That is correct. I've already reset that bug[1]. But if you see others that relate to it, feel free to mark the dupes. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 [1]

Re: [Kicad-developers] 5.1.5 release status

2019-10-22 Thread Seth Hillbrand
have "hardening=+all" enabled? This is likely where the assertions are happening. We might consider "hardening=-all,+format,+fortify" Note, this is different from the mac builds where the debug asserts are happening in the wx code. -Seth Seth Hillbrand KiCad S

Re: [Kicad-developers] Minimum Boost version

2019-10-22 Thread Seth Hillbrand
also like to utilize the UUID library from 1.60 as many of the feature we plan will require GUID at least. This doesn't preclude using KiCad on 16.04. It just requires someone to package a boost ppa. There are a few out there that could be used as baselines for this. -Seth KiC

Re: [Kicad-developers] [PATCH] SPICE .option confused with .op simulation

2019-10-23 Thread Seth Hillbrand
On 2019-10-22 23:35, Maciej Suminski wrote: Hi Sylwester, I admit I have not checked your patch in action, but it seems that it will not accept ".op" command, unless it is followed by a space. Since ".op" does not take any parameters, I presume it is a rare case when one adds an extra space af

Re: [Kicad-developers] Python files still depending on Python2 only due used shebang

2019-10-26 Thread Seth Hillbrand
edora? Do we need to accelerate this for 5.1.6? -Seth [1] https://bugs.launchpad.net/kicad/+bug/1849961 Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.

Re: [Kicad-developers] [PATCH] Implement auto annotation on component/symbol placement.

2019-10-26 Thread Seth Hillbrand
i- I've been trying out your new patch and it mostly works. The only issue I've seen so far is that duplicating subsheets doesn't seem to annotate all of the duplicated items contained inside. Let me know if you need an example project to test this on. Best- Seth KiCa

Re: [Kicad-developers] Python files still depending on Python2 only due used shebang

2019-10-26 Thread Seth Hillbrand
than Linux. We have a number of open bugs that directly point back to this. Using MSVC translates the async calls to native threads. If we have an option to improve the user experience while keep our code open and standards-compliant, I hope we'll consider it. -Seth Seth Hillbrand

Re: [Kicad-developers] Benchmarking kicad compilation on CPUs released 6 years apart

2019-10-30 Thread Seth Hillbrand
s for you with -GNinja. Here are the results for my testing with all scripting enabled (Debian Buster) seth@cpu1 (master) % time ninja 4050.50s user 291.35s system 1137% cpu 6:21.85 total Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 |

Re: [Kicad-developers] [PATCH] eeschema: Allow hierarchy navigator to stay open

2019-11-03 Thread Seth Hillbrand
. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe : https

Re: [Kicad-developers] Who did the save-to-board icon?

2019-11-03 Thread Seth Hillbrand
so JP will have to mention whether he generated the original or not. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372___ Mailing list: https://launchpad.net/~kicad-developers Post

[Kicad-developers] Learn to Code KiCad at FOSDEM 2020

2019-11-04 Thread Seth Hillbrand
ressing) and get you all of the relevant information for the meeting. Best- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-pcb.com <mailto:i...@k

Re: [Kicad-developers] Benchmarking kicad compilation on CPUs released 6 years apart

2019-11-05 Thread Seth Hillbrand
bout 10-30 seconds on a full build.  Do you see a difference between running '-j64' and '-j ' on the POWER9? -S -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.k

Re: [Kicad-developers] Symbol library code changes

2019-11-07 Thread Seth Hillbrand
ssues as people should not be building aliased libraries with the master branch at this point. We may want to clarify that in a list message. Overall, I am very excited for the new formats. Thanks again for taking on this huge job! Best- Seth Seth Hillbrand KiCad Services Corpor

Re: [Kicad-developers] New lead developer announcement

2019-11-07 Thread Seth Hillbrand
d.net/~kicad-developers More help : https://help.launchpad.net/ListHelp Congratulations, Ian!  And welcome! I'm really looking forward to working with you. Best- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA

Re: [Kicad-developers] LOCALE_IO thread-local

2019-11-08 Thread Seth Hillbrand
On 2019-11-08 03:49, jp charras wrote: Le 21/06/2019 à 23:25, Seth Hillbrand a écrit : Hi Devs- We currently have an RAII locale switch (LOCALE_IO) that swaps the global locale to allow floating point handling with decimal points instead of a commas.  Because it changes the global locale, we

Re: [Kicad-developers] GitLab migration

2019-11-09 Thread Seth Hillbrand
w system. I didn't see any stoppers with the current setup. I suppose that our next step is to mirror the repository to GitLab under the KiCad account. Did we ever resolve who controls the "KiCad" username on GitLab? Best- Seth Seth Hillbrand KiCad Services Corporation h

Re: [Kicad-developers] GitLab migration

2019-11-10 Thread Seth Hillbrand
n the "Original Report" to see the reporter information in launchpad. -Seth KiCad Services Corporation Seth Hillbrand LEAD DEVELOPER +1-530-302-5483‬ [2] Davis, CA www.kipro-pcb.com [3]i...@kipr

Re: [Kicad-developers] GitLab migration

2019-11-10 Thread Seth Hillbrand
d vs. GitLab? KiCad Services Corporation Seth Hillbrand LEAD DEVELOPER +1-530-302-5483‬ [1] Davis, CA www.kipro-pcb.com [2]i...@kipro-pcb.com https://twitter.com/KiProEDA [3]

Re: [Kicad-developers] GitLab migration

2019-11-10 Thread Seth Hillbrand
On 2019-11-10 08:43, Seth Hillbrand wrote: > On 2019-11-10 08:33, Eeli Kaikkonen wrote: > >> OK. Would it be worth re-importing everything even for this test database to >> avoid false impressions? >> >> Eeli Kaikkonen > > What false impression? Is th

Re: [Kicad-developers] Project save as

2019-11-11 Thread Seth Hillbrand
this gets harder and harder especially as we start implementing more exports (IPC-2581, D-365, XY files, etc) where we don't control the extensions. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 |

Re: [Kicad-developers] Tab handling in text rendering and bbox calculation

2019-11-11 Thread Seth Hillbrand
, > Andrew Good catch. I hadn't noticed that. The intention (in the comments) was to align to the 4th column. I pushed a fix as well as yours to the code. Thank you for your contribution to KiCad! Best- Seth KiCad Services Corporation Seth Hillbrand

Re: [Kicad-developers] Tab handling in text rendering and bbox calculation

2019-11-12 Thread Seth Hillbrand
. Cheers The characters are not monospaced. So, you shouldn't expect the line of characters to align with the tab characters. The tab character is meant to align with other tabs. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603

Re: [Kicad-developers] New border/title blocks?

2019-11-13 Thread Seth Hillbrand
a number of new templates that only work for some sizings.  Is that correct? -S -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-pcb.com <mailto:i...@kipro-

Re: [Kicad-developers] New border/title blocks?

2019-11-13 Thread Seth Hillbrand
lates per size, it would be good to add standard A/B/C sizes as well.  US KiCad users do not have easy access to either A4 paper or (harder) A4 printers. Best- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.

Re: [Kicad-developers] New border/title blocks?

2019-11-13 Thread Seth Hillbrand
x27;t exclude either European or US users in the codebase.  It would be a good idea not to do so in the templates as well. -S -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-p

Re: [Kicad-developers] [Discussion] PCB Calculator: Resistor calculator

2019-11-13 Thread Seth Hillbrand
st- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-pcb.com <mailto:i...@kipro-pcb.com> https://twitter.com/KiProEDA <https://twitter.com/KiProE

Re: [Kicad-developers] New border/title blocks?

2019-11-13 Thread Seth Hillbrand
dev list. We have a fair cross section of engineers who can help with reviews although we don't always follow the PRs at GitHub. -Seth KiCad Services Corporation Seth Hillbrand LEAD DEVELOPER +1-530-302-5483‬ [1]

Re: [Kicad-developers] [PATCH] Pcbnew drill sizes statistics & Project manager multiple selection options

2019-11-16 Thread Seth Hillbrand
ode review. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscribe : http

Re: [Kicad-developers] OCE vs OCC

2019-11-16 Thread Seth Hillbrand
r that Fedora is switching. I pushed a fix for the issue you've identified. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-develo

Re: [Kicad-developers] OCE vs OCC

2019-11-16 Thread Seth Hillbrand
On 2019-11-16 11:03, Steven A. Falco wrote: On 11/16/19 1:14 PM, Seth Hillbrand wrote: On 2019-11-16 08:42, Steven A. Falco wrote: It looks like Fedora may be switching from OCE to OCC, so I'm doing a trial build with OCC. How would folks recommend testing the build?  I'm not sure

Re: [Kicad-developers] eeschema selection appearance

2019-11-20 Thread Seth Hillbrand
;ll end up bike shedding on this which would be nice to avoid. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-developers Post to : k

Re: [Kicad-developers] eeschema selection appearance

2019-11-20 Thread Seth Hillbrand
is at what granularity all this should be configurable? Perhaps: - selection draw child-items: bool - selection thickness: float - selection color (already there) Those options make sense to me. -Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530

Re: [Kicad-developers] [PATCH] Selection appearance options

2019-11-22 Thread Seth Hillbrand
p Hi Jonatan- Thanks for this patch.  I'll give this a test run this weekend.  I know that the Mac display of highlight was always a bit different than Linux, so it would be good if one of our Mac devs also tested for issues. Best- Seth -- KiCad Services Corporation KiCad Services Corporation

[Kicad-developers] Who controls gitlab.com/kicad?

2019-11-24 Thread Seth Hillbrand
name. Does anyone on the list control the "kicad" name at GitLab? In the interim, we've registered https://www.gitlab.com/kicad_pcb but it would be much better if we could use the shorter name. Thanks- Seth KiCad Services Corporation Seth Hillbrand

Re: [Kicad-developers] Using OPT types

2019-11-24 Thread Seth Hillbrand
sometimes Eclipse) shows me the underlying type when I mouse hover over the auto variable. Same thing with type aliases. If I needed to dig for them or remember, I would definitely come down in the other camp. -Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 53

Re: [Kicad-developers] GitLab migration

2019-11-24 Thread Seth Hillbrand
case other issues arise from it. Best- Seth [1] https://gitlab.com/kicad_pcb/kicad_migration Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-develope

[Kicad-developers] Librarians, Doc Devs and Code Devs

2019-11-24 Thread Seth Hillbrand
, but the import process leaves a lot of dangling issue reports and PRs if the user e-mail does not exist in the GitLab system at the time the import is first run. Thanks and we're looking forward to seeing everyone at GitLab. -Seth Seth Hillbrand KiCad Services Corporation https:/

Re: [Kicad-developers] GitLab migration

2019-11-25 Thread Seth Hillbrand
d be using something like Google Authenticator on your phone, a YubiKey or SMS message code to verify your login on a computer in addition to the password. The worry is that SSH keys can be added to a compromised account that would allow an attacker to change the code/website/packages/etc. -S Seth

Re: [Kicad-developers] Who controls gitlab.com/kicad?

2019-11-25 Thread Seth Hillbrand
g the name.  I don't think renaming does it, so let's see what the GitLab support folks say about it. I'll ping you off-line to work out the details. Best- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis,

Re: [Kicad-developers] Plugin/3rd party content manager

2019-11-25 Thread Seth Hillbrand
cuments or markdown document on GitLab/GitHub. Thanks! -Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-pcb.com <mailto:i...@kipro-pcb.com> https:

Re: [Kicad-developers] Who controls gitlab.com/kicad?

2019-11-25 Thread Seth Hillbrand
On 2019-11-25 13:28, Seth Hillbrand wrote: > On 11/25/19 1:01 PM, Michael Geselbracht wrote: > >> That's me. Someone from Gitlab just contacted me. I totally missed this >> mailing. >> >> I have replied that I was not aware that my private group names may a

Re: [Kicad-developers] Plugin/3rd party content manager

2019-11-26 Thread Seth Hillbrand
anager. We can include an option for additional servers that return the API calls, but this needs to be centralized to fit into the KiCad roadmap. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372

Re: [Kicad-developers] What does "when in doubt do it opposite than certain other pcb tool" stand for?

2019-11-26 Thread Seth Hillbrand
opers@lists.launchpad.net Unsubscribe : https://launchpad.net/~kicad-developers More help : https://help.launchpad.net/ListHelp Which website are we talking about? I followed Rene's link but it just went to the Doxygen site and I don't see that statement there. -S Seth Hillbrand KiCad Services Co

Re: [Kicad-developers] 5.1.5 release tag

2019-11-26 Thread Seth Hillbrand
7;t like that. I got a (broken) message box saying, So the home-directory shortcut doesn't work. I honestly don't remember if it ever worked, or was meant to work. Hi Andy- Thank you for testing. Please report all bugs to the bug tracker. In thread here will be lost and not track

Re: [Kicad-developers] What does "when in doubt do it opposite than certain other pcb tool" stand for?

2019-11-26 Thread Seth Hillbrand
On 2019-11-26 09:43, Andy Peters wrote: On Nov 26, 2019, at 10:41 AM, Seth Hillbrand wrote: On 2019-11-26 09:05, Tomasz Wlostowski wrote: On 22/11/2019 17:42, Rene Pöschl wrote: I would assume this is referencing version 6 of eagle. The current versions of eagle are actually something that

Re: [Kicad-developers] GitLab migration

2019-11-26 Thread Seth Hillbrand
ill be managing the website section (someone fill me in). I'll also need to know who to assign to managing the documentation section (Nick also?). Once I get the packaging section set up, we'll have folks in charge of their relative builds that we can run through the GitLab CI runner

Re: [Kicad-developers] Plugin/3rd party content manager

2019-11-26 Thread Seth Hillbrand
On 2019-11-26 14:40, Eeli Kaikkonen wrote: ti 26. marrask. 2019 klo 22.23 Seth Hillbrand (s...@kipro-pcb.com) kirjoitti: We need to start with the API definition and file format changes. The API definition should include end points and returns. The file format changes should include the

Re: [Kicad-developers] Fix lp:1849376

2019-11-26 Thread Seth Hillbrand
se has time first. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.launchpad.net Unsubscrib

Re: [Kicad-developers] [PATCH] Selection appearance options

2019-11-26 Thread Seth Hillbrand
dering the #ifdef MAC around default selection-highlight color), but even in that case I strongly suspect this is rather about the monitor rather than operating system! Cheers On Fri, Nov 22, 2019 at 6:25 PM Seth Hillbrand wrote: On 11/21/19 8:01 AM, Jonatan Liljedahl wrote: Hi, Here comes t

Re: [Kicad-developers] ***UNCHECKED*** Re: GitLab migration

2019-11-27 Thread Seth Hillbrand
On 2019-11-27 03:28, Simon Richter wrote: Hi Seth, On Tue, Nov 26, 2019 at 12:54:31PM -0800, Seth Hillbrand wrote: Wayne and the bot have permissions for the entire project. I'm there while sorting out the transition work. Coding permissions are specific to https://gitlab.com/kicad

Re: [Kicad-developers] ***UNCHECKED*** Re: Re: GitLab migration

2019-11-27 Thread Seth Hillbrand
On 2019-11-27 06:48, Simon Richter wrote: Hi Seth, On Wed, Nov 27, 2019 at 06:29:11AM -0800, Seth Hillbrand wrote: >Ah, so that's why my application was ignored. :) Sorry about that Simon. My inbox got flooding with permission applications for folks and I haven't been able

Re: [Kicad-developers] ***UNCHECKED*** Re: GitLab migration

2019-11-27 Thread Seth Hillbrand
On 11/27/19 6:14 AM, Wayne Stambaugh wrote: On 11/27/19 6:28 AM, Simon Richter wrote: Hi Seth, On Tue, Nov 26, 2019 at 12:54:31PM -0800, Seth Hillbrand wrote: Wayne and the bot have permissions for the entire project. I'm there while sorting out the transition work. Coding permission

Re: [Kicad-developers] Plugin/3rd party content manager

2019-11-27 Thread Seth Hillbrand
explicitly encouraging Python contributions in the future. Thanks again and I'll be in touch shortly! -Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-p

Re: [Kicad-developers] Plugin/3rd party content manager

2019-11-27 Thread Seth Hillbrand
KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb.com <https://www.kipro-pcb.com/> i...@kipro-pcb.com <mailto:i...@kipro-pcb.com> https://twitter.com/KiProEDA <https://twitter.com/KiProEDA> https

Re: [Kicad-developers] GitLab migration

2019-11-27 Thread Seth Hillbrand
On 11/27/19 11:42 AM, Rene Pöschl wrote: On 26/11/2019 21:54, Seth Hillbrand wrote: On 2019-11-26 12:41, Jeff Young wrote: OK, I’ve enabled 2FA.  Do I need to do something to get added back to the project?  (When I go to members, all I see are the bot, Seth and Wayne.) Cheers, Jeff. Hi Jeff

[Kicad-developers] Packaging for GitLab migration

2019-11-27 Thread Seth Hillbrand
ory will not be updated. The new git URL is https://gitlab.com/kicad/code/kicad.git I don't see a method for submitting a patch to the Ubuntu nightly build.  @Jean-Samuel, will you be able to update the source location? Best- Seth -- KiCad Services Corporation KiCad Services Corporation

Re: [Kicad-developers] KiCad joins the Linux Foundation

2019-11-27 Thread Seth Hillbrand
Added a mobile-friendly version that complies with TLF trademark guidelines.Thanks Nick for the quick review.  Let me know if this works for everyone.-SOn Nov 27, 2019 11:07 AM, Wayne Stambaugh wrote:I see that now, at least when your phone is in portrait mode.  I'm guessing we don't support mobil

Re: [Kicad-developers] GitLab migration

2019-11-29 Thread Seth Hillbrand
ies from the mailing list to a specific group wiki. Creating/editing wiki pages requires developer permissions to a group. So this would require granting a specific group of users that permission for a specific purpose. -Seth Seth Hillbrand KiCad Services Corporation https://w

Re: [Kicad-developers] STEP and v6 roadmap

2019-11-30 Thread Seth Hillbrand
Hi Cirilo-Integration here means using the internal parsers and routines.  I envision writing this as a routine that accepts input over KiMail and takes parameters as RPC as well as error handling in KiCad.  I'm thinking of doing the same with ngspice integration for the same reasons you cite below

Re: [Kicad-developers] STEP and v6 roadmap

2019-11-30 Thread Seth Hillbrand
On a side note, I do plan on implementing the standard .stpz, or compressed STEP[1], format during v6. But this will be in the context of OpenCascade. Best- Seth [1] https://www.cax-if.org/documents/rec_prac_file_compression_v11.pdf KiCad Services Corporation

Re: [Kicad-developers] kicad-i18n on gitlab

2019-12-01 Thread Seth Hillbrand
nking here was that it was not code and there is a different group of committers generally responsible for it. I'm happy to take other suggestions. I'm removing the one under code (again) as it has me tagged for missing individuals rather than KiCad Bot. Best- Seth Seth Hill

Re: [Kicad-developers] [PATCH] Eeschema: Add option for selection highlight thickness

2019-12-02 Thread Seth Hillbrand
people who are not yet members of the lead development team. Would you mind submitting this as a merge request on GitLab and let me know how the process goes for you? Thanks- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372

Re: [Kicad-developers] Altium 20 new interactive routing features

2019-12-02 Thread Seth Hillbrand
https://en.wikipedia.org/wiki/Topology The cow morphing into a sphere made me smile :) Our dev list never disappoints. :)  This is top-notch Monday content. -S -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.kipro-pcb

Re: [Kicad-developers] Strokefont change from std::deque to std::vector

2019-12-02 Thread Seth Hillbrand
lements and the size of the deque is dominated by the structure overhead.  There was so much that JP's machine was crashing with the extra CJK fonts. Best- Seth -- KiCad Services Corporation KiCad Services Corporation Logo Seth Hillbrand *Lead Developer* +1-530-302-5483‬ Davis, CA www.

Re: [Kicad-developers] New border/title blocks?

2019-12-02 Thread Seth Hillbrand
u a few options for good starting issues. Best- Seth Seth Hillbrand KiCad Services Corporation https://www.kipro-pcb.com +1 530 302 5483 | +1 212 603 9372 ___ Mailing list: https://launchpad.net/~kicad-developers Post to : kicad-developers@lists.

  1   2   3   4   5   6   7   8   9   10   >